
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Google Fonts - Import moved to HTML head */
body {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
  color: #131211;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Enhanced Light Mode Text Visibility - No Shadows, High Contrast */
h1, h2, h3, h4, h5, h6 {
  color: #000000;
  text-shadow: none;
}

p, span, li {
  color: #0a0a0a;
}

a {
  color: #4a3c2e;
}

a:hover {
  color: #6B5D4D;
}

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #6B5D4D;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #6B5D4D;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        
        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 30px rgba(0,0,0,0.15);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            transition: padding 0.3s ease;
        }

        .logo {
            font-size: 2.2rem;
            font-weight: 600;
            color: #6B5D4D;
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #6B5D4D, #6B5D4D);
            transition: width 0.3s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #131211;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #9A9082;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-links a:hover {
            color: #9A9082;
            transform: translateY(-2px);
        }

        /* Dropdown Navigation */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            min-width: 300px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            border-radius: 15px;
            padding: 1rem;
            z-index: 1001;
            border: 1px solid rgba(139, 69, 19, 0.1);
        }

        .dropdown:hover .dropdown-content,
        .dropdown-content.show {
            display: block;
        }

        .dropdown-section {
            margin-bottom: 1rem;
        }

        .dropdown-section:last-child {
            margin-bottom: 0;
        }

        .dropdown-section h4 {
            color: #6B5D4D;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            padding: 0.5rem;
            background: rgba(139, 69, 19, 0.05);
            border-radius: 8px;
        }

        .dropdown-content a {
            display: block;
            padding: 0.5rem 1rem;
            color: #131211;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            margin: 0.2rem 0;
        }

        .dropdown-content a:hover {
            background: rgba(139, 69, 19, 0.1);
            color: #6B5D4D;
            transform: translateX(5px);
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            font-weight: 500;
            position: relative;
            overflow: hidden;
            transform: translateY(0);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(45deg, #9A9082, #9A9082);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, #9A9082);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
        }

        .btn-outline {
            border: 2px solid #9A9082;
            color: #9A9082;
            background: transparent;
            position: relative;
            z-index: 1;
        }

        .btn-outline::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(45deg, #9A9082, #9A9082);
            transition: width 0.4s ease;
            z-index: -1;
        }

        .btn-outline:hover::after {
            width: 100%;
        }

        .btn-outline:hover {
            color: #9A9082;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
        }

        /* Main Content */
        main {
            margin-top: 70px;
        }

        .page {
            display: none;
            min-height: calc(100vh - 160px);
        }

        .page.active {
            display: block;
        }

        /* Collections Section */
        .collections {
            padding: 4rem 0;
            position: relative;
        }

        .collections::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 49%, rgba(139, 69, 19, 0.05) 50%, transparent 51%);
            pointer-events: none;
        }

        .collections h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #000000;
  position: relative;
  font-weight: 700;
}

        /* .collections h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #131211, #131211);
            border-radius: 2px;
        } */

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        /* Ensure 2-card layout for candle studio section */
        #candle-studio .collection-grid {
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            max-width: 800px;
            margin: 0 auto 4rem auto;
        }

        .collection-card {
            background: #ffffff;
            padding: 2rem 1.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .collection-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .collection-card:hover::before {
            left: 100%;
        }

        .collection-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(139, 69, 19, 0.2);
        }

        .collection-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #000000;
  font-weight: 600;
}

.collection-card p {
  margin-bottom: 2rem;
  color: #0a0a0a;
  line-height: 1.7;
}

        /* About Section */
        .about-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 50%, #f8f6f0 100%);
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle at 20% 20%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
                              radial-gradient(circle at 80% 80%, rgba(210, 105, 30, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-text h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #000000;
  font-weight: 700;
  position: relative;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #0a0a0a;
  animation: fadeInLeft 1s ease-out;
}
       
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .ingredients-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .ingredient-item {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(139, 69, 19, 0.1);
        }

        .ingredient-item:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
            background: rgba(255, 255, 255, 0.95);
        }

/* 🌟 New Arrivals Section Styles */
#new-arrivals {
  background-color: #fff;
  padding: 3rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  color: #131211;
}

#new-arrivals .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #000000;
  font-weight: 700;
}

/* 🔲 Product Grid Layout */
.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* 🧺 Product Card Styling */
.product-card {
  background-color: #f4f0e6;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}

/* 📜 Product Info */
.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #000000;
  font-weight: 600;
}

.product-info p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #0a0a0a;
}

.product-price {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* 💕 Wishlist and Cart Buttons */
.wishlist-btn,
.product-info button {
  background-color: #9A9082;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  margin: 0.3rem;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.wishlist-btn:hover,
.product-info button:hover {
  background-color: #9A9082;
}

        /* ✅ Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Wider cards */
  gap: 2rem;
  padding: 1.5rem 0;
}

/* ✅ Product Card */
/* ✨ Tighter, blog-style product card layout */
.product-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 1rem;
  scroll-snap-align: start;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 80%; /* reduced from 100% */
  margin: 0 auto; /* center the image container */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}


.product-image img {
  max-width: 400px;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}


/* 🛍️ Product info styled like blog card */
.product-info {
  padding: 1rem 1.2rem 1.5rem;
}

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.3rem;
}

.product-info p {
  font-size: 0.95rem;
  color: #0a0a0a;
  margin-bottom: 0.8rem;
}

.product-price {
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.8rem;
}

/* 🧡 Wishlist & Cart buttons alignment */
  .product-info button {
    background: #9A9082;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .product-info button:active {
    transform: scale(0.95);
    background: #8a7f72;
  }

  .product-info button.clicked {
    animation: buttonPop 0.3s ease;
  }

  @keyframes buttonPop {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
  }

.wishlist-btn {
  background: transparent;
  border: 1px solid #9A9082;
  color: #9A9082;
  margin-right: 0.5rem;
  padding: 0.4rem 0.6rem;
}



        /* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Ensure all blog cards have consistent height */
.blog-card,
.blog-card-centered {
  min-height: 450px;
}

/* Center the Gift Sets card below the grid */
.blog-card-centered {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
  justify-self: center;
}

.blog-card,
.blog-card-centered {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card-centered {
  background: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Ensure blog card text has high contrast */
.blog-card h3,
.blog-card-centered h3 {
  color: #000000;
  font-weight: 600;
}

.blog-card p,
.blog-card-centered p {
  color: #0a0a0a;
}

.blog-card:hover,
.blog-card-centered:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.blog-card img,
.blog-card-centered img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.partner-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  align-items: center;
  padding: 1rem 0;
}
.partner-slider img {
  height: 60px;
  scroll-snap-align: center;
  opacity: 1;
}
.placeholder-logo {
  height: 60px;
  width: 120px;
  border: 2px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: #aaa;
  border-radius: 6px;
}


        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #B6A77D;
        }
        /* Contact Page Submit Button */
#contact .btn.btn-primary {
  font-size: 18px;         /* Bigger text */
  padding: 14px 28px;      /* Bigger button */
  border-radius: 8px;      /* Rounded edges */
  width: 70%;             /* Full width on mobile */
  max-width: 150px;        /* Limit size on larger screens */
  display: block;
}

/* Hover effect */
#contact .btn.btn-primary:hover {
  background: #5A4C3E;     /* Darker shade */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


        /* Footer */
        footer {
            background: #131211;
            color: white;
            padding: 2.5rem 0 1rem;
            margin-top: 3rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #6B5D4D;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #6B5D4D;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #555;
            color: #999;
        }
        .footer-links a {
        color: #ffffff;
        text-decoration: none;
       }

       .footer-links a:hover {
        color: #ffffff; /* Optional hover color */
       text-decoration: underline;
      }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
        }

        .close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
        }

        /* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #6B5D4D;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hamburger Animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease forwards;
  }
  
  .nav-links li:nth-child(1) { animation-delay: 0.1s; }
  .nav-links li:nth-child(2) { animation-delay: 0.2s; }
  .nav-links li:nth-child(3) { animation-delay: 0.3s; }
  .nav-links li:nth-child(4) { animation-delay: 0.4s; }
  .nav-links li:nth-child(5) { animation-delay: 0.5s; }
  .nav-links li:nth-child(6) { animation-delay: 0.6s; }
  
  .nav-links a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    background: rgba(107, 93, 77, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover {
    background: rgba(107, 93, 77, 0.2);
    transform: scale(1.05);
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
  }
  
  /* Hide nav-extra on mobile */
  .nav-extra {
    display: none;
  }

  /* Mobile dropdown adjustments */
  .dropdown-content {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    min-width: auto;
    border-radius: 0;
    max-height: 80vh;
    overflow-y: auto;
  }

  .dropdown-section {
    margin-bottom: 1.5rem;
  }

  .dropdown-content a {
    padding: 0.8rem 1rem;
    font-size: 1.1rem;
  }
  
  /* Adjust theme toggle position */
  .theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1002;
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

        /* Cart Badge */
        .btn {
        display: inline-flex;         /* Enable flexbox */
       align-items: center;          /* Vertically center */
       justify-content: center;      /* Horizontally center */
       gap: 0.4rem;                  /* Optional spacing between icon/text */
       padding: 0.7rem 1.5rem;
       border-radius: 30px;
       font-weight: 500;
       cursor: pointer;
       transition: all 0.4s ease;
       position: relative;
       overflow: hidden;
       text-decoration: none;
       }

      .cart-btn {
       position: relative;
       display: inline-flex;         /* Add this */
       align-items: center;          /* Center icon */
       justify-content: center;
        }


        /* Wishlist heart */
        .wishlist-btn {
            background: #9A9082;
            border:  #9A9082;
            font-size: 1.5rem;
            cursor: pointer;
            color: #ddd;
            transition: color 0.3s;
        }

        .wishlist-btn.active {
            color: #ff6b6b;
        }

        .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #000000;
  font-weight: 700;
}
      
        :root {
  --bg-color: #ffffff;
  --text-color: #131211;
  --accent-color: #9A9082;     /* Gilded Dune */
  --accent-dark: #6B5D4D;      /* Champagne Suede */
}

body.dark-mode {
  --bg-color: #1e1e1e;
  --text-color: #f0e6d6;
  --accent-color: #9A9082;     /* Gilded Dune */
  --accent-dark: #6B5D4D;      /* Champagne Suede */
}


  body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
  }

  /* Buttons */
  .btn {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .btn:hover {
    background-color: var(--accent-dark);
  }

  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
  }

  /* Section Titles */
  .section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
  }

  /* Dark Mode Buttons */
  body.dark-mode .btn,
  body.dark-mode .wishlist-btn,
  body.dark-mode .btn-outline {
    background-color: var(--accent-color) !important;
    color: white !important;
  }

  body.dark-mode .btn-outline {
    background-color: transparent !important;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
  }

  body.dark-mode .btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
  }

  /* Product Cards */
  .product-card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #ddd;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-price {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 1rem;
  }

  body.dark-mode .product-card {
    background-color: #1e1e1e;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
  }

  /* 🔧 Image dark mode fix */
  .product-card img,
  .new-arrival img,
  .cart-card img,
  .wishlist-card img {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
  }

  .product-card .product-image,
  .new-arrival .product-image {
    background-color: transparent !important;
    border-bottom: none !important;
  }

  .product-card,
  .new-arrival {
    border-bottom: none !important;
  }

  
  /* Section backgrounds in dark mode */
  body.dark-mode .section-title,
  body.dark-mode h2,
  body.dark-mode h3,
  body.dark-mode p {
    color: var(--text-color);
  }

  body.dark-mode .collection-card,
  body.dark-mode .ingredient-item,
  body.dark-mode .testimonial-box,
  body.dark-mode .about-section {
    background-color: #1e1e1e !important;
    color: var(--text-color);
    border: 1px solid var(--accent-color);
  }

  body.dark-mode footer {
    background-color: var(--bg-color) !important;
    color: var(--text-color);
    border-top: 1px solid var(--accent-color);
  }

  /* Additional structure styles if needed */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
  }

  .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Stack all slides */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  animation: fadeCarousel 15s infinite;
}

.carousel-slide:nth-child(1) { animation-delay: 0s; }
.carousel-slide:nth-child(2) { animation-delay: 5s; }
.carousel-slide:nth-child(3) { animation-delay: 10s; }

/* Images fill the entire screen */
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fade in/out smoothly without revealing background */
@keyframes fadeCarousel {
  0% { opacity: 0; z-index: 0; }
  5% { opacity: 1; z-index: 1; }
  30% { opacity: 1; z-index: 1; }
  35% { opacity: 0; z-index: 0; }
  100% { opacity: 0; z-index: 0; }
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.carousel-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block; /* covers full line width behind text */
}

.carousel-overlay p {
  font-size: 1.5rem;         /* Increased from default ~1rem */
  line-height: 1.8;
  margin: 1rem 0;
  color: white;
  background: rgba(0, 0, 0, 0.1);
  display: inline-block; /* covers full line width behind text */
  
}

/* Resin Collections Carousel */
.resin-collections-carousel {
  position: relative;
  height: 60vh;
  overflow: hidden;
  border-radius: 12px;
  margin: 2rem 0;
}

.resin-collections-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  animation: fadeResinCarousel 18s infinite;
}

.resin-collections-carousel .carousel-slide:nth-child(1) { animation-delay: 0s; }
.resin-collections-carousel .carousel-slide:nth-child(2) { animation-delay: 6s; }
.resin-collections-carousel .carousel-slide:nth-child(3) { animation-delay: 12s; }

.resin-collections-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes fadeResinCarousel {
  0% { opacity: 0; z-index: 0; }
  5% { opacity: 1; z-index: 1; }
  30% { opacity: 1; z-index: 1; }
  35% { opacity: 0; z-index: 0; }
  100% { opacity: 0; z-index: 0; }
}

.resin-collections-carousel .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
  backdrop-filter: blur(2px);
}

.resin-collections-carousel .carousel-overlay h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.resin-collections-carousel .carousel-overlay p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  font-weight: 500;
  color: white;
}

/* Responsive styles for resin collections carousel */
@media (max-width: 768px) {
  .resin-collections-carousel {
    height: 40vh;
  }
  
  .resin-collections-carousel .carousel-overlay h2 {
    font-size: 2.5rem;
    color: white;
  }
  
  .resin-collections-carousel .carousel-overlay p {
    font-size: 1.2rem;
  }
}

/* Responsive styles for blog layout */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-card-centered {
    max-width: 100%;
    padding: 1.5rem;
    margin: 0 1rem;
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .blog-card img,
  .blog-card-centered img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .blog-card-centered {
    margin: 0 0.5rem;
    padding: 1rem;
    grid-column: 1 / -1;
    justify-self: center;
  }
  
  .blog-card img,
  .blog-card-centered img {
    height: 200px;
  }
  
  /* Additional mobile improvements */
  .container {
    padding: 0 15px;
  }
  
  .hero-carousel {
    height: 70vh;
  }
  
  .carousel-overlay h1 {
    font-size: 2rem;
  }
  
  .carousel-overlay p {
    font-size: 1.2rem;
  }
  
  .collection-card {
    padding: 1.5rem 1rem;
  }
  
  .collection-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .resin-collections-carousel {
    height: 35vh;
  }
  
  .resin-collections-carousel .carousel-overlay h2 {
    font-size: 1.5rem;
  }
  
  .resin-collections-carousel .carousel-overlay p {
    font-size: 0.9rem;
  }
}

/* 🌸 Wishlist Layout */
.wishlist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding-top: 2rem;
}

.wishlist-card {
  width: 280px;
  border: 1px solid #e0dccc;
  border-radius: 12px;
  background-color: #fefcf9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  position: relative;
  transition: 0.3s ease;
}

.wishlist-card:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.wishlist-card h3 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--champagne, #6B5D4D);
}

.wishlist-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #5c5443;
}

.wishlist-card button {
  background-color: var(--gilded, #9A9082);
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.wishlist-card button:hover {
  background-color: var( #9A9082);
}

.wishlist-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 1rem;
  background-color: #f3f3f3;
}

.remove-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.2rem;
  cursor: pointer;
}

.remove-btn:hover {
  color: var( #9A9082);
}

.empty-message {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #999;
}

body.dark-mode .wishlist-card {
  background-color: #1e1e1e;
  border: 1px solid #444;
}

body.dark-mode .wishlist-card h3,
body.dark-mode .wishlist-card p {
  color: #f3f3f3;
}

body.dark-mode .wishlist-card button {
  background-color: var(#9A9082);
  color: white;
}

body.dark-mode .wishlist-card button:hover {
  background-color: var(--gilded, #9A9082);
}

body.dark-mode .remove-btn {
  color: #888;
}

body.dark-mode .remove-btn:hover {
  color: #f3f3f3;
}

body.dark-mode .empty-message {
  color: #ccc;
}


.cart-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.cart-card {
  border: 1px solid #e0dccc;
  border-radius: 12px;
  padding: 1.5rem;
  width: 280px;
  text-align: center;
  background-color: #fefcf9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

.cart-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 1rem;
  background-color: #f3f3f3;
}

.cart-card h4 {
  font-size: 1.3rem;
  color: #6B5D4D; /* Champagne */
  margin-bottom: 0.4rem;
}

.cart-card p {
  font-size: 1rem;
  color: #5c5443;
  margin-bottom: 1rem;
}

.cart-card .button-group {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cart-card .btn-action {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cart-card .btn-primary {
  background-color: #9A9082; /* Gilded */
  color: white;
}

.cart-card .btn-primary:hover {
  background-color: #a3956e;
}

.cart-card .btn-secondary {
  background-color: #ccc;
  color: #333;
}

.cart-card .btn-secondary:hover {
  background-color: #999;
}

.cart-actions {
  text-align: right;
  margin-top: 2rem;
}

.total {
  text-align: right;
  font-weight: bold;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #6B5D4D;
}

body.dark-mode .cart-card {
  background-color: #1f1f1f;
  border: 1px solid #444;
}

body.dark-mode .cart-card h4,
body.dark-mode .cart-card p {
  color: #f3f3f3;
}

body.dark-mode .cart-card .btn-primary {
  background-color: #6B5D4D;
  color: #1a1a1a;
}

body.dark-mode .cart-card .btn-primary:hover {
  background-color: #d2c6a3;
}

body.dark-mode .cart-card .btn-secondary {
  background-color: #555;
  color: #f3f3f3;
}

body.dark-mode .cart-card .btn-secondary:hover {
  background-color: #999;
}

body.dark-mode .total {
  color: #f3f3f3;
}

.checkout-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.checkout-modal.show {
  display: flex;
}

  .checkout-modal-content {
    background: #fff;
    padding: 2rem;
    width: 90%;
    max-width: 550px;
    border-radius: 10px;
    overflow-y: auto;
    max-height: 90vh;
    color: #413E21;
  }

  /* Fragrance Selection Modal */
  .fragrance-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }

  .fragrance-modal.show {
    display: flex;
  }

  .fragrance-modal-content {
    background: #fff;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    overflow-y: auto;
    max-height: 90vh;
    color: #413E21;
  }

  .fragrance-modal-content h2 {
    color: #6B5D4D;
    margin-bottom: 1rem;
    text-align: center;
  }

  .fragrance-modal-content p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
  }

  .fragrance-selection {
    margin-bottom: 2rem;
  }

  .fragrance-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .fragrance-item h4 {
    color: #6B5D4D;
    margin-bottom: 0.5rem;
  }

  .fragrance-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .fragrance-option {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .fragrance-option:hover {
    border-color: #9A9082;
    background: #f5f5f5;
  }

  .fragrance-option.selected {
    border-color: #6B5D4D;
    background: #6B5D4D;
    color: white;
  }

  .fragrance-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  .fragrance-modal-buttons button {
    min-width: 120px;
  }

  /* Product Details Modal */
  .product-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .product-details-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }

  .product-details-content h2 {
    color: #6B5D4D;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.8rem;
  }

  .product-details-content p {
    color: #666;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.6;
  }

  .product-details-image img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .product-details-image img:hover {
    transform: scale(1.05);
  }

.checkout-modal-content h2 {
  text-align: center;
  color: #413E21;
}

.checkout-modal-content input,
.checkout-modal-content textarea,
.checkout-modal-content select {
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  padding: 0.6rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  width: 100%;
  font-family: inherit;
}

.checkout-buttons {
  text-align: center;
  margin-top: 1rem;
}

.checkout-buttons button {
  padding: 0.6rem 1.4rem;
  margin: 0.5rem;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* ✅ Dark Mode Support */
body.dark-mode .checkout-modal-content {
  background: #1f1f1f;
  color: #f3f3f3;
}

body.dark-mode .checkout-modal-content h2 {
  color: #f3f3f3;
}

body.dark-mode .checkout-modal-content input,
body.dark-mode .checkout-modal-content textarea,
body.dark-mode .checkout-modal-content select {
  background: #2b2b2b;
  color: #f3f3f3;
  border: 1px solid #444;
}

body.dark-mode .checkout-buttons .btn-primary {
  background: #9A9082;
  color: #1f1f1f;
}

body.dark-mode .checkout-buttons .btn-primary:hover {
  background: #d2c6a3;
}

body.dark-mode .checkout-buttons .btn-secondary {
  background: #555;
  color: #f3f3f3;
}

body.dark-mode .checkout-buttons .btn-secondary:hover {
  background: #999;
}


/* And update the rest: */
body.dark-mode .bulk-title {
  color: #ffffff;
}

body.dark-mode .bulk-form input,
body.dark-mode .bulk-form textarea {
  background: #2a2a2a;
  color: #f3f3f3;
  border: 1px solid #555;
}

body.dark-mode .bulk-form button {
  background: #6B5D4D;
  color: #1a1a1a;
}

body.dark-mode .bulk-form button:hover {
  background: #d2c6a3;
}


/* 🌟 FAQ Section Styling - Light Mode (Default Theme) */

/* 🌞 Light Mode FAQ Styles */
.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid #6B5D4D;         /* Champagne Suede */
  border-radius: 10px;
  background: #fffaf3;              /* Light beige */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  background: #000000;              /* High contrast black */
  color: #ffffff;
  border: none;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background: #9A9082;              /* Gilded Dune */
  color: #131211;
}

.faq-answer {
  display: none;
  padding: 1rem;
  background: #fefcf9;
  color: #000000;
  font-size: 1.05rem;
  border-top: 1px solid #ddd;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* 🌙 Dark Mode Styling */
@media (prefers-color-scheme: dark) {
  .faq-item {
    background: #3D3833; /* Velveteen Truffle */
    border: 1px solid #9A9082; /* Gilded Dune */
  }

  .faq-question {
    background: #9A9082;
    color: #131211;
  }

  .faq-question:hover {
    background: #6B5D4D; /* Champagne Suede */
    color: #fffaf3;
  }

  .faq-answer {
    background: #1a1a1a;
    color: #f3f3f3;
    border-top: 1px solid #444;
  }
}



  .theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 999;
  }

  .toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background-color: var(--accent-color);
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .toggle-switch::before {
    content: '🌙';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background-color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  body.dark-mode .toggle-switch::before {
    content: '☀️';
    transform: translateX(30px);
  }

 /* 🔄 GLOBAL DARK MODE RESET */
body.dark-mode {
  background-color: #121212 !important;
  color: #f3f3f3 !important;
}

/* 🔠 Typography - Enhanced Visibility */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

body.dark-mode p,
body.dark-mode span,
body.dark-mode li {
  color: #f0f0f0 !important;
}

body.dark-mode a {
  color: #9A9082 !important;
}

body.dark-mode a:hover {
  color: #ffffff !important;
}

/* ✅ NAVBAR + HEADER */
body.dark-mode header,
body.dark-mode nav {
  background-color: #1c1c1c !important;
  border-bottom: 1px solid #333;
}

/* Dark Mode Mobile Navigation */
body.dark-mode .mobile-menu-btn span {
  background-color: #9A9082;
}

body.dark-mode .nav-links {
  background: rgba(28, 28, 28, 0.98) !important;
}

body.dark-mode .nav-links a {
  background: rgba(154, 144, 130, 0.1);
  color: #f0f0f0 !important;
}

body.dark-mode .nav-links a:hover {
  background: rgba(154, 144, 130, 0.2);
}

/* ✅ FOOTER */
body.dark-mode footer,
body.dark-mode .footer,
body.dark-mode .footer-section,
body.dark-mode .footer-container {
  background-color: #1c1c1c !important;
  color: #ccc !important;
}
body.dark-mode .footer a {
  color: #ddd !important;
}
body.dark-mode .footer a:hover {
  color: #fff !important;
}

/* ✅ BUTTONS */
body.dark-mode .btn {
  background-color: #B6A77D !important;
  color: #fff !important;
}
body.dark-mode .btn-outline {
  border: 1px solid #B6A77D !important;
  color: #f3f3f3 !important;
  background-color: transparent !important;
}

/* ✅ CARDS & SECTIONS (Products, Wishlist, Collections, Blog) */
body.dark-mode .product-card,
body.dark-mode .collection-card,
body.dark-mode .wishlist-card,
body.dark-mode .testimonial-box,
body.dark-mode .ingredient-item,
body.dark-mode .blog-card,
body.dark-mode .blog-card-centered {
  background-color: #1e1e1e !important;
  color: #f3f3f3 !important;
  border: 1px solid #333 !important;
}

/* ✅ GRID BACKGROUNDS */
body.dark-mode .products-grid,
body.dark-mode .collection-grid,
body.dark-mode .blog-slider,
body.dark-mode .partner-slider,
body.dark-mode .page {
  background-color: #121212 !important;
}

/* ✅ Fix product card lines in dark mode */
body.dark-mode .product-card .product-info h3,
body.dark-mode .product-card .product-info p,
body.dark-mode .product-card .product-price {
  background-color: transparent !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  color: #f3f3f3 !important;
}


/* ✅ SECTIONS */
body.dark-mode section,
body.dark-mode .section,
body.dark-mode .section-title,
body.dark-mode .product-info h3,
body.dark-mode .product-info p,
body.dark-mode .product-price {
  background-color: #121212 !important;
  color: #f3f3f3 !important;
}

/* ✅ Improved Dark Mode for “What Sets Us Apart” */
body.dark-mode .what-sets-us-apart,
body.dark-mode .about-features,
body.dark-mode .ingredient-blocks,
body.dark-mode .features-grid {
  background-color: #1a1a1a !important;
  background-image: none !important;    /* 💥 THIS removes any gradient/image */
  color: #f3f3f3 !important;
}

body.dark-mode .what-sets-us-apart h2,
body.dark-mode .what-sets-us-apart h3,
body.dark-mode .what-sets-us-apart p {
  color: #f3f3f3 !important;
}

body.dark-mode .ingredient-item {
  background-color: #2c2c2c !important;
  color: #f3f3f3 !important;
  border: 1px solid #3a3a3a;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: transform 0.3s ease;
}

body.dark-mode .ingredient-item:hover {
  transform: translateY(-3px) scale(1.03);
  background-color: #333333 !important;
}

/* 💡 Full Dark Mode Override for About Section */
body.dark-mode .about-section {
  background-color: #1a1a1a !important;
  background-image: none !important;         /* 🔥 Override light gradient */
}

body.dark-mode .about-section::before {
  display: none !important;                  /* 🔥 Hide decorative radial gradient */
}

body.dark-mode .about-section .container,
body.dark-mode .about-content,
body.dark-mode .about-text,
body.dark-mode .ingredient-item {
  background-color: transparent !important;
  color: #f3f3f3 !important;
}


/* ✅ Testimonials */
body.dark-mode .testimonial-section,
body.dark-mode .testimonial-box {
  background-color: #1e1e1e !important;
  color: #f3f3f3 !important;
}

/* ✅ Checkout Modal, Cart, Wishlist Modals */
body.dark-mode #checkoutModal,
body.dark-mode .modal,
body.dark-mode .cart-modal,
body.dark-mode .wishlist-modal {
  background-color: #1a1a1a !important;
  color: #f3f3f3 !important;
}

/* ✅ Forms & Inputs */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background-color: #222 !important;
  color: #f3f3f3 !important;
  border: 1px solid #444 !important;
}
body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: #aaa !important;
}

/* ✅ Border Fixes */
body.dark-mode hr {
  border-color: #444 !important;
}


.toast {
  position: fixed;
  top: 2rem;
  left: 50%;
  background-color: #9A9082;
  color: white;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s, visibility 0.5s;
  z-index: 9999;
}
.toast.show {
  opacity: 1;
  pointer-events: auto;
}

.studio-section .collection-card {
    background: #ffffff;
    height: auto;
    min-height: 500px;
    padding: 2rem;
    color: #131211;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .studio-section .collection-card h3,
  .studio-section .collection-card p,
  .studio-section .collection-card a {
    position: relative;
    z-index: 2;
  }

  /* Removed ::before pseudo-element since we're using image sliders instead of background images */

  /* Image Slider Styles */
  .image-slider {
    margin: 1rem 0 1.5rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .slider-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .slider-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
  }

  .slider-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }

  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #6B5D4D;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }

  .slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dot.active,
  .dot:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
  }

  /* Zoom-out hover effect for collection cards */
  .studio-section .collection-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }

  .studio-section .collection-card:hover {
    transform: scale(0.98) !important;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.25) !important;
  }

  /* Responsive adjustments for image sliders */
  @media (max-width: 768px) {
    .slider-container {
      height: 150px;
    }
    
    .slider-nav {
      width: 30px;
      height: 30px;
      font-size: 16px;
    }
    
    .dot {
      width: 8px;
      height: 8px;
    }
  }

  /* Touch device detection - disable hover effects on touch devices */
  @media (hover: none) and (pointer: coarse) {
    .studio-section .collection-card:hover {
      transform: none !important;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }
  }

.product-image {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

  .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease, scale 0.3s ease;
  }

  .product-image img:hover {
    transform: scale(1.05);
    z-index: 10;
    position: relative;
    object-fit: contain;
  }

  /* Global product card zoom-out hover effect */
  .product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .product-card:hover {
    transform: scale(0.98);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
  }

  /* Ensure only product images are clickable */
  .product-image {
    cursor: pointer;
  }

  .product-image img {
    cursor: pointer;
  }

  /* Enhanced Product Cards */
  .product-card {
    position: relative;
    transition: all 0.3s ease;
  }

  .product-card:hover {
    transform: scale(0.98);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
  }

  /* Ensure only product images are clickable */
  .product-image {
    cursor: pointer;
  }

  .product-image img {
    cursor: pointer;
  }

  .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
  }

  .product-image img {
    cursor: pointer;
  }

  .product-overlay {
    display: none; /* Hide the overlay completely */
  }

  .category-tag,
  .fragrance-tag {
    display: none; /* Hide category and fragrance tags */
  }

  .product-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }

  .product-actions button {
    flex: 1;
    max-width: 120px;
  }

  /* Enhanced Product Cards */
  .product-card {
    position: relative;
    transition: all 0.3s ease;
  }

  .product-card:hover {
    transform: scale(0.98);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
  }

  /* Ensure only product images are clickable */
  .product-image {
    cursor: pointer;
  }

  .product-image img {
    cursor: pointer;
  }

  .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
  }

  .product-image img {
    cursor: pointer;
  }

  .product-overlay {
    display: none; /* Hide the overlay completely */
  }

  .category-tag,
  .fragrance-tag {
    display: none; /* Hide category and fragrance tags */
  }

  .product-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
  }

  .product-actions button {
    flex: 1;
    max-width: 120px;
  }
.payment-section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.paypal-btn {
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0070ba;
    border-radius: 8px;
    background: #f8f9fa;
}

.paypal-btn:hover {
    background: #e9ecef;
}

/* PayPal Button Container Specific Styling */
#paypal-button-container {
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0070ba;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

#paypal-button-container:hover {
    background: #e9ecef;
}

/* Ensure PayPal buttons are visible */
#paypal-button-container .paypal-button {
    width: 100% !important;
    height: auto !important;
    min-height: 50px !important;
}

/* Loading spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Image Popup Modal Styles */
.image-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.image-popup-modal.show {
    opacity: 1;
}

.popup-content {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: popupSlideIn 0.3s ease;
    cursor: default;
}

@keyframes popupSlideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.1);
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    z-index: 10001;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(0,0,0,0.2);
}

.popup-image-container {
    position: relative;
    width: 100%;
    max-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
}

#lightbox-main-image {
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(107, 93, 77, 0.8);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10001;
}

.popup-nav:hover {
    background: rgba(107, 93, 77, 1);
}

.popup-prev {
    left: -20px;
}

.popup-next {
    right: -20px;
}

.popup-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.popup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-dot.active {
    background: #6B5D4D;
}

.popup-dot:hover {
    background: #9A9082;
}

.popup-info {
    color: #333;
    text-align: center;
    width: 100%;
}

.popup-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    color: #6B5D4D;
}

.popup-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Bulk Order Section */
.bulk-section {
  padding: 40px 20px;
  font-family: 'Cormorant Garamond', serif;
  background: #f9f7f6;
}

.bulk-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.bulk-title {
  color: #000000;
  font-size: 32px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.bulk-form {
  display: flex;
  flex-direction: column;
  gap: 20px; /* <<< Creates spacing between fields */
}

.bulk-form input,
.bulk-form textarea {
  padding: 12px 15px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.bulk-form textarea {
  resize: vertical;
}

.bulk-form button {
  background: #6B5D4D;
  color: #fff;
  font-size: 18px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bulk-form button:hover {
  background: #5A4C3E;   /* Darker on hover */
  transform: translateY(-2px); /* Lift effect */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


/* 🌐 Mobile Responsive Layout */

/* ========= MOBILE LAYOUT that should win once inline styles are stripped ========= */
@media (max-width: 768px) {
  body.mobile-fix header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  body.mobile-fix header img {
    max-width: 140px !important;
    height: auto !important;
  }

  body.mobile-fix nav ul {
    display: none !important;               /* closed by default */
    flex-direction: column !important;
    gap: 0.8rem !important;
    width: 100% !important;
    align-items: center !important;
    padding: 0.75rem 0 !important;
  }
  body.mobile-fix nav ul.active { display: flex !important; }

  /* you already have .hamburger in CSS; make sure the element exists in HTML */
  .hamburger { display: block !important; margin-left: auto; font-size: 2rem; background: none; border: 0; }

  /* Common grids */
  body.mobile-fix .product-grid,
  body.mobile-fix .wishlist-grid,
  body.mobile-fix .cart-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  body.mobile-fix .product-card,
  body.mobile-fix .wishlist-card,
  body.mobile-fix .cart-item {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 1rem !important;
  }

  body.mobile-fix img { max-width: 100% !important; height: auto !important; object-fit: contain !important; }

  body.mobile-fix .bulk-container,
  body.mobile-fix .faq-container,
  body.mobile-fix #contact form {
    width: 95% !important;
    padding: 1rem !important;
    margin: 0 auto !important;
  }

  body.mobile-fix .checkout-modal-content {
    width: 95% !important;
    max-height: 85vh !important;
    padding: 1rem !important;
  }

  body.mobile-fix .toast {
    bottom: 1rem !important;
    right: 50% !important;
    transform: translateX(50%) !important;
    width: 90% !important;
    font-size: 0.9rem !important;
  }

  /* Small headings */
  body.mobile-fix h1, body.mobile-fix h2, body.mobile-fix h3 { text-align: center !important; }
}

/* Target the section itself */
.collections.studio-section {
  text-align: center;
}

/* Target the h2 inside */
.collections.studio-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

/* Target the paragraph inside */
.collections.studio-section p {
  font-size: 1.2rem;
  margin-top: -1.5rem;
  margin-bottom: 1rem;
  color: Black;
  
}

/* Target the h3 inside */
.collections.studio-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #000000;
}

.bulk-btn:hover {
  background:#5A4C3E;          /* Darker brown */
  transform: translateY(-2px); /* Lift effect */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Icon-only buttons */
nav .icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 1.2rem;   /* size of icon */
  padding: 0;
  box-sizing: border-box;
  vertical-align: middle;
}

/* Ensure cart badge doesn’t break height */
nav .cart-btn {
  position: relative;
}

nav .cart-btn .cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #9A9082;
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 10px;
}

/* Fragrance grid layout */
#fragrance {
  margin-top: 40px; /* space between banner & fragrance section */
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.fragrance-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  align-items: flex-start; /* 🔥 important: prevents equal height */
}

.fragrance-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  overflow: hidden; /* important: prevents empty expansion */
}

.fragrance-header {
  font-size: 1.2rem;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  padding: 15px;
}

.fragrance-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
}

.fragrance-card.active .fragrance-content {
  max-height: 500px; /* expands only this card */
  opacity: 1;
  padding: 15px;
}

.toast {
  visibility: hidden;
  min-width: 300px;
  background-color: #9A9082;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

.razorpay-btn {
  background-color: #2d7df6;   /* Razorpay blue */
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  width: 100%;
  height: 45px;
  cursor: pointer;
  display: flex;              
  align-items: center;        
  justify-content: center;    
  text-align: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.razorpay-btn:hover {
  background-color: #1a5ed8;
  transform: translateY(-1px);
}

.razorpay-btn:active {
  transform: translateY(1px);
}

/* Fragrance Dropdown Styles */
.fragrance-dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 2px solid #9A9082;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  min-width: 200px;
  padding: 0.5rem;
  margin-top: 5px;
  animation: fadeInDown 0.2s ease;
}

.fragrance-dropdown-option {
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 4px;
  margin: 0.2rem 0;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.fragrance-dropdown-option:hover {
  background-color: #f5f5f5;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional styles for fragrance dropdown */
.fragrance-dropdown-container {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 2px solid #9A9082;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  min-width: 200px;
  padding: 0.5rem;
  margin-top: 5px;
  animation: fadeInDown 0.2s ease;
}

.fragrance-dropdown-option {
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 4px;
  margin: 0.2rem 0;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.fragrance-dropdown-option:hover {
  background-color: #f5f5f5;
}

/* Enhanced Product Images for Category Pages */
#candles .product-image img,
#resins .product-image img {
  max-width: 100%;
  max-height: 350px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

#candles .product-image img:hover,
#resins .product-image img:hover {
  transform: scale(1.05);
  z-index: 10;
  position: relative;
  object-fit: contain;
}

/* Related Images Container */
.product-related-images {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 1rem;
  z-index: 5;
}

.product-card:hover .product-related-images {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.product-related-images img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.product-related-images img:hover {
  transform: scale(1.1);
}

/* Responsive Styles for New Features */
@media (max-width: 768px) {
  /* Product Cards Mobile */
  .product-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .product-actions button {
    max-width: 100%;
    width: 100%;
  }

  .category-tag,
  .fragrance-tag {
    display: none; /* Hide category and fragrance tags on mobile too */
  }

  /* Fragrance Dropdown Mobile */
  .fragrance-dropdown-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 300px;
    margin: 0;
    z-index: 10000;
  }

  /* Fragrance Modal Mobile */
  .fragrance-modal-content {
    padding: 1.5rem;
    width: 95%;
  }

  .fragrance-options {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .fragrance-option {
    padding: 0.8rem;
    font-size: 1rem;
  }

  .fragrance-modal-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .fragrance-modal-buttons button {
    width: 100%;
  }

  /* Popup Mobile Styles */
  .popup-content {
    padding: 15px;
    max-width: 95%;
    max-height: 85vh;
  }

  .popup-nav {
    font-size: 1.2rem;
    padding: 8px 12px;
  }

  .popup-prev {
    left: -15px;
  }

  .popup-next {
    right: -15px;
  }

  .popup-close {
    top: 10px;
    right: 10px;
    font-size: 1.3rem;
    padding: 6px 10px;
  }

  .popup-info h3 {
    font-size: 1.1rem;
  }

  .popup-info p {
    font-size: 0.8rem;
  }

  .popup-dots {
    gap: 6px;
  }

  .popup-dot {
    width: 8px;
    height: 8px;
  }

  .popup-image-container {
    max-height: 50vh;
    margin-bottom: 15px;
  }
  
  #lightbox-main-image {
    max-width: 95%;
    max-height: 70vh;
  }

  /* Product Details Modal Mobile */
  .product-details-content {
    padding: 1.5rem;
    width: 95%;
  }

  .product-details-content h2 {
    font-size: 1.5rem;
  }

  .product-details-content .product-details-image img {
    max-height: 250px;
  }

  /* Dropdown Mobile */
  .dropdown-content {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    min-width: auto;
    border-radius: 0;
    max-height: 80vh;
    overflow-y: auto;
  }

  .dropdown-section {
    margin-bottom: 1.5rem;
  }

  .dropdown-content a {
    padding: 0.8rem 1rem;
    font-size: 1.1rem;
  }
}

/* Comprehensive Fix for Product Image Sizing Issues */
.product-image {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 15px !important;
  cursor: pointer !important;
  max-width: 100% !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #f5f5f5 !important;
  padding: 1rem !important;
}

.product-image img {
  max-width: 100% !important;
  max-height: 350px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 10px !important;
  transition: transform 0.3s ease !important;
  cursor: pointer !important;
}

.product-image img:hover {
  transform: scale(1.05) !important;
  z-index: 10 !important;
  position: relative !important;
  object-fit: contain !important;
}

/* Fix for category page images */
#candles .product-image img,
#resins .product-image img {
  max-width: 100% !important;
  max-height: 350px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

#candles .product-image img:hover,
#resins .product-image img:hover {
  transform: scale(1.05) !important;
  z-index: 10 !important;
  position: relative !important;
  object-fit: contain !important;
}

/* Fragrance Selection Modal Styles */
.fragrance-selection-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fragrance-selection-modal.show {
  opacity: 1;
}

.fragrance-popup-content {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: popupSlideIn 0.3s ease;
}

.fragrance-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.1);
  border: none;
  color: #666;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.fragrance-popup-close:hover {
  background: rgba(0,0,0,0.2);
}

.fragrance-popup-header {
  text-align: center;
  margin-bottom: 25px;
}

.fragrance-popup-header h3 {
  margin: 0 0 10px 0;
  color: #6B5D4D;
  font-size: 1.4rem;
}

.fragrance-popup-header p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.fragrance-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.fragrance-option-btn {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1rem;
  color: #333;
}

.fragrance-option-btn:hover {
  border-color: #6B5D4D;
  background: #f8f6f3;
  color: #6B5D4D;
}

.fragrance-popup-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.fragrance-cancel-btn {
  padding: 12px 24px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: white;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.fragrance-cancel-btn:hover {
  background: #f5f5f5;
}

.fragrance-confirm-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #6B5D4D;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.fragrance-confirm-btn:hover {
  background: #5a4f42;
}

.fragrance-error-message {
  color: #e74c3c;
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
  display: none;
}

/* Mobile Responsive for Fragrance Modal */
@media (max-width: 768px) {
  .fragrance-popup-content {
    padding: 20px;
    max-width: 95%;
  }
  
  .fragrance-options-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .fragrance-option-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .fragrance-popup-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .fragrance-cancel-btn,
  .fragrance-confirm-btn {
    width: 100%;
    padding: 14px;
  }
}

/* Payment Methods Styles */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.payment-option {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-option:hover {
  border-color: #6B5D4D;
  background-color: #f8f6f3;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option input[type="radio"]:checked + .payment-label {
  color: #6B5D4D;
}

.payment-option input[type="radio"]:checked ~ .payment-button-container {
  display: block !important;
}

.payment-option input[type="radio"]:checked {
  border-color: #6B5D4D;
  background-color: #f8f6f3;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.payment-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 8px;
}

.payment-info {
  flex: 1;
}

.payment-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.payment-desc {
  font-size: 14px;
  color: #666;
}

.payment-button-container {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.paypal-btn, .razorpay-btn, .cod-btn {
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.paypal-btn {
  background: #0070ba;
  color: white;
}

.paypal-btn:hover {
  background: #005ea6;
}

.razorpay-btn {
  background: #3395ff;
  color: white;
}

.razorpay-btn:hover {
  background: #1a7ae8;
}

.cod-btn {
  background: #6B5D4D;
  color: white;
}

.cod-btn:hover {
  background: #5a4d3d;
}

.cod-availability {
  font-size: 14px;
  font-weight: 500;
}

.cod-available {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.cod-unavailable {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Mobile Responsive for Payment Methods */
@media (max-width: 768px) {
  .payment-methods {
    gap: 12px;
  }
  
  .payment-option {
    padding: 12px;
  }
  
  .payment-label {
    gap: 12px;
  }
  
  .payment-icon {
    font-size: 20px;
    width: 35px;
    height: 35px;
  }
  
  .payment-name {
    font-size: 15px;
  }
  
  .payment-desc {
    font-size: 13px;
  }
}