    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

    

        /* Top announcement bar */
        #top-navbar {
            background-color: #dbbc0b;
            padding: 8px 0;
            text-align: center;
            font-size: 14px;
            position: relative;
            overflow: hidden;
            height: 40px;
        }

        #slider {
            height: 100%;
            position: relative;
        }

        #slider ul {
            list-style: none;
            position: absolute;
            width: 300%;
            height: 100%;
            animation: slide 15s infinite ease-in-out;
        }

        #slider li {
            width: 33.333%;
            float: left;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }

        .slider-container p {
            margin: 0;
            font-weight: 500;
        }

        @keyframes slide {
            0%, 25% { left: 0; }
            33%, 58% { left: -100%; }
            66%, 91% { left: -200%; }
            100% { left: 0; }
        }

        /* Main navbar */
        #main-navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

    

        #navbar-options {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .dropdown {
            position: relative;
        }

        .dropbtn {
            background: none;
            border: none;
            font-size: 16px;
            color: #555;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropbtn:hover {
            background-color: #f5f5f5;
            color: #333;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 800px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            z-index: 1001;
            padding: 20px;
        }

        .dropdown-content table {
            width: 100%;
            border-collapse: collapse;
        }

        .dropdown-content th {
            text-align: left;
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
            color: #666;
            font-weight: 600;
        }

        .dropdown-content td {
            padding: 10px 15px;
            vertical-align: top;
        }

        .dropdown-content p {
            margin: 8px 0;
            cursor: pointer;
            transition: color 0.2s;
        }

        .dropdown-content p:hover {
            color: #e91e63;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        #navbar-icons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        #navbar-icons i {
            font-size: 20px;
           padding-right: 10px;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }

        .navbar-link {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 4px 0;
    text-decoration: none;
    transition: color 0.2s;
}

.navbar-link:hover {
    color: #b98f4b; /* golden hover color */
}


        #navbar-icons i:hover {
            color: #e91e63;
        }

        .hamburger {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #555;
            padding: 5px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .hamburger:hover {
            background-color: #f5f5f5;
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: white;
            z-index: 1002;
            overflow-y: auto;
            padding: 20px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
            display: block;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }

        .mobile-menu-close {
            font-size: 24px;
            cursor: pointer;
            color: #555;
            padding: 5px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .mobile-menu-close:hover {
            background-color: #f5f5f5;
        }

        .mobile-dropdown {
            margin-bottom: 15px;
        }

        .mobile-dropbtn {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            font-size: 18px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }

        .mobile-dropbtn:hover {
            color: #e91e63;
        }

        .mobile-dropdown-content {
            display: none;
            padding: 10px 0 10px 15px;
        }

        .mobile-dropdown-content p {
            padding: 10px 0;
            border-bottom: 1px solid #f5f5f5;
            cursor: pointer;
            transition: color 0.2s;
        }

        .mobile-dropdown-content p:hover {
            color: #e91e63;
        }

        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }

        /* Content section */
        .content {
            padding: 40px 0;
            text-align: center;
        }

        .content h1 {
            margin-bottom: 20px;
            color: #333;
        }

        .content p {
            max-width: 800px;
            margin: 0 auto 20px;
            color: #666;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .dropdown-content {
                min-width: 700px;
            }
        }

        @media (max-width: 768px) {
            #navbar-options {
                display: none;
            }

            .hamburger {
                display: block;
            }

            #navbar-icons {
                gap: 15px;
            }

            #navbar-icons .fa-magnifying-glass,
            #navbar-icons .fa-heart {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .navbar-content {
                padding: 10px 0;
            }

            #navbar-logo img {
                height: 35px;
            }

            #navbar-icons {
                gap: 12px;
            }

            #navbar-icons i {
                font-size: 18px;
            }

            .hamburger {
                font-size: 22px;
            }

            #top-navbar {
                font-size: 12px;
                height: 35px;
            }
        }






        header {
            text-align: center;
            padding: 40px 0;
            background: linear-gradient(135deg, #f9f5eb 0%, #fefefe 100%);
            color: #8c6d3f;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(140, 109, 63, 0.1);
            border: 1px solid #f0e6d3;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f9e076, #d4af37);
        }

        h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            font-style: italic;
        }


        .offer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }

        .collage-display {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(140, 109, 63, 0.08);
            position: relative;
            overflow: hidden;
            border: 1px solid #f0e6d3;
        }

        .collage-display::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f9e076, #d4af37);
        }

        .collage-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #8c6d3f;
            text-align: center;
            font-weight: 600;
        }

        .collage-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 10px;
            height: 300px;
            margin-bottom: 20px;
        }

        .collage-item {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #f9f5eb;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #f0e6d3;
        }

        .collage-item:hover {
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(140, 109, 63, 0.15);
            z-index: 10;
        }

        .collage-item:nth-child(1) {
            grid-column: 1;
            grid-row: 1 / span 2;
            background: linear-gradient(45deg, #f9f5eb, #fefefe);
        }

        .collage-item:nth-child(2) {
            grid-column: 2;
            grid-row: 1;
            background: linear-gradient(45deg, #f9f5eb, #fefefe);
        }

        .collage-item:nth-child(3) {
            grid-column: 2;
            grid-row: 2;
            background: linear-gradient(45deg, #f9f5eb, #fefefe);
        }

        .item-icon {
            font-size: 3rem;
            color: #d4af37;
            opacity: 0.7;
        }

        .item-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(140, 109, 63, 0.85);
            color: white;
            padding: 8px;
            font-size: 0.9rem;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .collage-item:hover .item-label {
            transform: translateY(0);
        }

        .offer-details {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(140, 109, 63, 0.08);
            border: 1px solid #f0e6d3;
            position: relative;
        }

        .offer-details::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f9e076, #d4af37);
        }

        .offer-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #8c6d3f;
        }

        .price-comparison {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .original-price {
            font-size: 1.3rem;
            text-decoration: line-through;
            color: #aaa;
            margin-right: 15px;
        }

        .discount-price {
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4af37;
        }

        .discount-badge {
            background: #d4af37;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-left: 15px;
            font-weight: bold;
        }

        .savings {
            background: #f9f5eb;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #d4af37;
        }

        .savings strong {
            color: #8c6d3f;
        }

        .product-list {
            margin-bottom: 25px;
        }

        .product-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f0e6d3;
        }

        .product-name {
            font-weight: 500;
            color: #8c6d3f;
        }

        .product-price {
            color: #8c6d3f;
        }

        .cta-button {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #d4af37 0%, #f9e076 100%);
            color: #5a4a2a;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
            background: linear-gradient(135deg, #c19d2e 0%, #e8d069 100%);
        }

        .benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }

        .benefit {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 15px;
            background: #f9f5eb;
            border-radius: 8px;
            transition: transform 0.3s ease;
            border: 1px solid #f0e6d3;
        }

        .benefit:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(140, 109, 63, 0.1);
        }

        .benefit-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: #d4af37;
        }

        .benefit-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: #8c6d3f;
        }

        .testimonials {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(140, 109, 63, 0.08);
            margin-top: 40px;
            border: 1px solid #f0e6d3;
            position: relative;
        }

        .testimonials::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f9e076, #d4af37);
        }

        .testimonials-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #8c6d3f;
        }

        .testimonial-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .testimonial-card {
            flex: 1;
            min-width: 250px;
            padding: 20px;
            background: #f9f5eb;
            border-radius: 8px;
            border-left: 4px solid #d4af37;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
            color: #5a4a2a;
        }

        .testimonial-author {
            font-weight: bold;
            color: #8c6d3f;
        }

        footer {
            text-align: center;
            padding: 30px 0;
            margin-top: 40px;
            color: #8c6d3f;
            border-top: 1px solid #f0e6d3;
        }

        .limited-time {
            text-align: center;
            background: linear-gradient(135deg, #f9f5eb 0%, #fefefe 100%);
            padding: 10px;
            border-radius: 8px;
            margin: 20px 0;
            border: 1px dashed #d4af37;
            color: #8c6d3f;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .offer-container {
                flex-direction: column;
            }
            
            .collage-grid {
                height: 250px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
        }
/* Banner Section */
.banner-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000; /* fallback background */
}

/* Banner Container */
.banner-container {
  position: relative;
  width: 100%;
}

/* Banner Image */
.banner-container img {
  width: 100%;
  height: auto;      /* ✅ no fixed height */
  object-fit: cover; /* fills horizontally */
  filter: brightness(1.05);
  display: block;
}

/* Overlay */
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

/* Banner Text */
.banner-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  max-width: 500px;
  z-index: 2;
}

.banner-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.banner-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.banner-text button {
  background: linear-gradient(135deg, #ff8fc0, #ff5a9e);
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 90, 158, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.banner-text button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 90, 158, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
  .banner-text {
    top: 30%;
    left: 5%;
    transform: none;
    max-width: 90%;
  }
  .banner-text h2 {
    font-size: 2rem;
  }
  .banner-text p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .banner-text {
    top: 20%;
    max-width: 95%;
  }
  .banner-text h2 {
    font-size: 1.5rem;
  }
  .banner-text p {
    font-size: 0.9rem;
  }
  .banner-text button {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}

.under-budget-section {
  padding: 50px 20px;
  text-align: center;
  background: #fff5f8;
}

.under-budget-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #d6336c;
}

.budget-wrapper {
  display: flex;
  justify-content: center;
}

.budget-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.budget-card {
  flex: 0 0 220px;
  height: 200px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.budget-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.budget-card .icon {
  font-size: 3rem;
  margin-top: 15px;
}

/* Responsive */
@media(max-width: 768px) {
  .budget-card {
    flex: 0 0 180px;
    height: 180px;
  }
  .budget-card .icon {
    font-size: 2.5rem;
  }
}

@media(max-width: 480px) {
  .budget-card {
    flex: 0 0 150px;
    height: 150px;
    font-size: 1rem;
  }
  .budget-card .icon {
    font-size: 2rem;
  }
}

/* Products NEW SECTION OF Home PAGE */
.products-section {
  padding: 60px 20px;
  background: #fffaf0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #b8860b;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.product-slider::-webkit-scrollbar {
  display: none; /* Chrome */
}
/* Cards: reduced height, premium feel */
.product-card {
  flex: 0 0 300px; /* 4 fully visible + 5th partial */
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.product-card img {
  width: 100%;
  height: 280px; /* reduced height for slimmer cards */
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-info {
  padding: 15px 12px;
  text-align: center;
}

.product-category {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin: 6px 0;
  text-decoration: none;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #D4AF37;
  margin-bottom: 12px;
}

.product-actions .btn {
  display: inline-block;       /* ensures proper button layout */
  text-decoration: none;       /* removes underline from link */
  padding: 10px 16px;
  border: none;
  background: #D4AF37;         /* golden default */
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
  width: 60%;
  transition: background 0.3s ease, color 0.3s ease; /* smooth fade */
}

.product-actions .btn:hover {
  background: #a67500;         /* darker golden on hover */
  color: #fff;                 /* keep text color same, optional */
}


/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.slider-arrow.left { left: 10px; }
.slider-arrow.right { right: 10px; }

.view-more-wrapper {
  margin-top: 25px;
}

.btn-view-more {
  background: #D4AF37;
  color: #fff;
  padding: 12px 28px;
  font-size: 1.1rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
}

.btn-view-more:hover {
  background: #8e6d03;
}

.all-products-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.hidden { display: none; }


/* CATGORIES */
/* Page container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Main heading */
.page-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 20px;
}

/* Category title */
.category-title {
    font-size: 22px;
    font-weight: 600;
    color: #b98f4b; /* golden accent */
    margin-bottom: 30px;
}

/* Products container - flex grid */
.products-container {
    display: flex;
    justify-content: center; /* center horizontally */
    gap: 25px; /* spacing between cards */
    flex-wrap: wrap; /* responsive wrapping */
}

/* Product card */.product-card {
  flex: 0 0 280px;
  border-radius: 15px;
  background: #fff;            /* same background for image + details */
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  overflow: hidden;            /* removes any gap/line */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;              /* removes inline gap */
  border-radius: 0;            /* remove radius from image */
}

.product-info {
  padding: 15px;
  margin: 0;                   /* reset */
  background: #fff;            /* same as card */
}


.product-card:hover .product-img {
    transform: scale(1.03);
}

/* Product info */
.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Category label */
.product-category {
    font-size: 12px;
    font-weight: 600;
    color: #b98f4b;
    text-transform: uppercase;
}

/* Product title */
.product-title {
    font-size: 16px;
    font-weight: 700;
    color: #3a3a3a;
    margin: 0;
    min-height: 45px; /* keep card heights uniform */
}

/* Product price */
.product-price {
    font-size: 14px;
    font-weight: 700;
    color: #c18e3c;
}

/* Button */
.btn-primary {
    display: inline-block;
    text-align: center;
    background: #cfa14b;
    color: #fff;
    padding: 10px 14px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0; /* no curve */
    margin-top: auto;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #b78b38;
    transform: translateY(-2px);
}

/* No products / error message */
.no-products, .error-loading {
    text-align: center;
    padding: 40px 20px;
    background: #fff3e6;
    border: 1px solid #e0c77a;
    width: 100%;
    grid-column: 1 / -1;
}

.no-products h3, .error-loading h3 {
    font-size: 18px;
    font-weight: 600;
    color: #8b6a33;
    margin-bottom: 10px;
}

.no-products p {
    font-size: 14px;
    color: #5c4a2f;
}

/* Responsive adjustments */
@media (max-width: 950px) {
    .products-container {
        gap: 20px;
    }
}

@media (max-width: 750px) {
    .products-container {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .product-card {
        width: 100%;
    }
}


.cart-icon {
  position: relative;
  display: inline-block;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: red;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.2s;
}

.cart-count.animate {
  transform: scale(1.3);
}
