@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Poppins", sans-serif !important;

}
html, body {
  overflow-x: hidden;   /* hide horizontal scroll */
  overflow-y: auto;     /* enable vertical scroll */
}
.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff; /* White background */
  color: #000; /* Black icon color */
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #000;
  color: #fff;
}
.footer-link {
color: #ccc;
text-decoration: none;
display: block;
margin-bottom: 8px;
}

.footer-link:hover {
color: #fff;
text-decoration: underline;
}

/* Section Title */
.nail-title {
    font-size: 32px;
    font-weight: bold;
    color: #3f0458;  /* Dark brown for elegance */
    margin-bottom: 20px;
}

/* Banner Image */
.nail-banner img {
    width: 100%;
    height: auto;
    border-radius: 15px; /* Smooth rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nail-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .nail-title {
        font-size: 24px;
    }
}



  /* Product Count */
  .product-count {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Sort Label */
.sort-label {
    font-size: 16px;
    font-weight: bold;
    color: #3f0458;
    margin-right: 10px;
}

/* Sort Dropdown */
.sort-dropdown {
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #3f0458;
    background: transparent;
    cursor: pointer;
}

.sort-dropdown:focus {
    outline: none;
}

/* Divider Line */
.divider {
    border-top: 1px solid #3f0458; /* Light brown shade */
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sort-label {
        font-size: 14px;
    }

    .sort-dropdown {
        font-size: 14px;
    }

    .product-count {
        text-align: center;
        margin-bottom: 5px;
    }

    .text-end {
        text-align: center !important;
    }
}


.filter-sidebar {
    background: #e7cf91;  /* Light peach background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Filter Title */
.filter-title {
    font-size: 20px;
    font-weight: bold;
    color: #4d2c1d;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Filter Section Styling */
.filter-section {
    margin-top: 15px;
}

.filter-toggle {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #3f0458;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    font-size: 14px;
    transition: transform 0.3s ease-in-out;
}

.filter-toggle[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

.filter-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.filter-list li {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

/* Checkbox Styling */
.filter-list input[type="checkbox"] {
    margin-right: 8px;
}

/* Color Box */
.color-box {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-sidebar {
        padding: 15px;
    }

    .filter-title {
        font-size: 18px;
    }

    .filter-toggle {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .filter-sidebar {
        width: 100%;
        margin-bottom: 10px;
    }
}


.product-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff, #f7f7f7);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    height: 100% !important;
    min-height: 220px;
}


.product-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(163,134,61,0.3) 0%, transparent 60%);
    animation: rotate 10s linear infinite;
    z-index: -1; /* Push this behind the actual card */
}


@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #A3863D;
} */

/* Product Image */
.product-image {
    object-fit: cover;
    width: 100%;
}

/* Title */
.title {
    font-size: 16px;
    font-weight: bold;
    color: #3f0458;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

/* Price Section */
.price {
    margin-top: 8px;

    font-weight: 600;
    z-index: 1;
    position: relative;
}

.original-price {
    font-size: 14px;
    color: #555;
}

.discount-price {
    font-size: 14px;
    color: #A3863D;
    font-weight: 700;
    margin-left: 8px;
}

/* Add to Cart Button */
.add-to-carts {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: linear-gradient(90deg, #A3863D, #8C7230);
    color: #fff !important;
    border: none;
    transition: all 0.3s ease;
}

.add-to-carts:hover {
    background: linear-gradient(90deg, #8C7230, #A3863D);
    color: #fff;
}

/* Stars (Rating Section) */
.average-rating i {
    color: #FFD700; /* Golden Stars */
}
/* Existing (Desktop) style */


/* Mobile view adjustments */
@media (max-width: 576px) {
    .add-to-carts {
        font-size: 12px !important;   /* Smaller font */
        padding: 6px 10px !important; /* Smaller padding */
        border-radius: 4px !important; /* Tighter button */
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* .product-image {
        height: 180px;
    } */
    .title {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    /* .product-card {
        padding: 15px;
    } */
    /* .product-image {
        height: 150px;
    } */
    .add-to-carts {
        font-size: 12px;
        padding: 10px;
    }
    .average-rating i {
        font-size: 12px;
    }
    .price .original-price,
    .price .discount-price {
        font-size: 12px;
    }
}

a{
    text-decoration: none;
}

