 :root {
      --primary: #f8f4f0;
      --accent: #d4af37;
      --accent-light: #e8d9b0;
      --text: #3a3a3a;
      --text-light: #7a7a7a;
      --white: #ffffff;
      --soft-beige: #f5f0e1;
      --soft-nude: #f7e9d7;
      --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
      --radius: 16px;
      --gold-gradient: linear-gradient(135deg, #d4af37, #bf953f);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* Fluid media: auto-resize across breakpoints */
    img, video, svg, canvas {
      max-width: 100%;
      height: auto;
      display: block;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background-color: var(--primary);
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.2;
    }

    /* Navigation */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 5%;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      transition: var(--transition);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar.scrolled {
      padding: 0.8rem 5%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: var(--transition);
    }

    .logo-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--soft-nude);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 2px solid var(--soft-nude);
    }

    .logo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .logo-text {
      font-weight: 700;
      font-size: 1.8rem;
      background: linear-gradient(to right, #8d5c2c, #b07d3a);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0.5px;
      position: relative;
    }

    .logo-text::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--gold-gradient);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s ease;
    }

    .logo-container:hover .logo-text::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2.5rem;
    }

    .nav-links li a {
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
      position: relative;
      padding: 0.5rem 0;
      transition: var(--transition);
      font-size: 1.05rem;
      font-family: 'Montserrat', sans-serif;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-links li a i {
      color: var(--accent);
      transition: var(--transition);
      font-size: 1.1rem;
      width: 20px;
      text-align: center;
    }

    .nav-links li a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: var(--transition);
    }

    .nav-links li a:hover {
      color: var(--accent);
    }
    
    .nav-links li a:hover i {
      transform: scale(1.2);
    }

    .nav-links li a:hover:after {
      width: 100%;
    }

    .nav-toggle {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--text);
      z-index: 1002;
    }

    /* Product Hero Section */
    .product-hero {
      display: flex;
      align-items: center;
      min-height: 90vh;
      padding: 0 5%;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--soft-nude), var(--primary));
      margin-top: 80px;
    }

    .product-hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 60%;
      height: 140%;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(191, 149, 63, 0.05));
      border-radius: 0 0 0 100px;
      transform: rotate(-5deg);
      z-index: 1;
    }

    .product-info {
      flex: 1;
      position: relative;
      z-index: 2;
      padding: 5rem 0;
      animation: fadeInUp 1s ease-out;
      max-width: 600px;
    }

    .product-tag {
      display: inline-block;
      background: var(--accent-light);
      color: var(--accent);
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      font-weight: 600;
      margin-bottom: 1.2rem;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    .product-info h1 {
      font-size: 3.2rem;
      margin-bottom: 1.2rem;
      color: var(--text);
      line-height: 1.1;
    }

    .product-info h1 span {
      color: var(--accent);
      display: block;
    }

    .product-info p {
      font-size: 1.15rem;
      margin-bottom: 2rem;
      color: var(--text-light);
    }

    .product-highlights {
      margin: 2rem 0;
    }

    .highlight {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      gap: 12px;
    }

    .highlight i {
      width: 36px;
      height: 36px;
      background: var(--accent-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      transition: var(--transition);
    }

    .highlight:hover i {
      background: var(--accent);
      color: var(--white);
      transform: rotate(10deg);
    }

    .product-image {
      flex: 1;
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem;
    }

    .product-image-main {
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-hover);
      position: relative;
      transform: rotate(-3deg);
      transition: transform 0.5s ease;
    }

    .product-image-main:hover {
      transform: rotate(0) scale(1.02);
    }

    .product-image-main img {
      width: 100%;
      display: block;
    }

    /* Product CTA buttons container and sizing */
    .product-btns {
      display: flex;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 0.5rem;
    }

    /* Desktop/laptop: consistent button widths */
    .product-btns .cta-btn {
      min-width: 200px;
      text-align: center;
    }

    .cta-btn {
      display: inline-block;
      padding: 0.9rem 2.2rem;
      background: var(--gold-gradient);
      color: var(--white);
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow);
      font-size: 1rem;
      letter-spacing: 0.5px;
      font-family: 'Montserrat', sans-serif;
      position: relative;
      overflow: hidden;
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.1);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    .cta-btn:hover::before {
      transform: translateX(100%);
    }

    .outline-btn {
      background: transparent;
      border: 2px solid var(--accent);
      color: var(--accent);
    }

    .outline-btn:hover {
      background: var(--accent);
      color: var(--white);
    }

    /* Product Details Section */
    .product-details {
      padding: 6rem 5%;
      background: var(--soft-beige);
      position: relative;
      overflow: hidden;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .section-header h2 {
      font-size: 2.8rem;
      margin-bottom: 1.2rem;
      position: relative;
      display: inline-block;
    }

    .section-header h2:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }

    .section-header p {
      font-size: 1.15rem;
      color: var(--text-light);
    }

    .details-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .detail-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2.5rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .detail-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .detail-icon {
      width: 80px;
      height: 80px;
      background: var(--accent-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--accent);
      font-size: 2rem;
      transition: var(--transition);
    }

    .detail-card:hover .detail-icon {
      background: var(--accent);
      color: var(--white);
      transform: rotate(10deg) scale(1.1);
    }

    .detail-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--accent);
    }

    /* Ingredients Section */
    .ingredients-section {
      padding: 6rem 5%;
      background: var(--white);
      position: relative;
    }

    .ingredients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .ingredient-card {
      background: var(--primary);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      text-align: center;
      position: relative;
    }

    .ingredient-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .ingredient-img {
      height: 220px;
      overflow: hidden;
    }

    .ingredient-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .ingredient-card:hover .ingredient-img img {
      transform: scale(1.1);
    }

    .ingredient-info {
      padding: 1.8rem 1.5rem;
    }

    .ingredient-info h4 {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      color: var(--accent);
    }

    .ingredient-info p {
      color: var(--text-light);
    }

    /* How to Use Section */
    .how-to-use {
      padding: 6rem 5%;
      background: linear-gradient(135deg, var(--soft-nude), var(--primary));
      position: relative;
      overflow: hidden;
    }

    .steps-container {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
    }

    .step {
      display: flex;
      align-items: center;
      margin-bottom: 3rem;
      position: relative;
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .step:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .step-number {
      flex: 0 0 80px;
      height: 80px;
      background: var(--accent-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent);
      margin-right: 2rem;
      transition: var(--transition);
    }

    .step:hover .step-number {
      background: var(--accent);
      color: var(--white);
      transform: rotate(10deg);
    }

    .step-content {
      flex: 1;
    }

    .step-content h3 {
      font-size: 1.5rem;
      margin-bottom: 0.8rem;
      color: var(--accent);
    }

    /* Purchase Options */
    .purchase-options {
      padding: 6rem 5%;
      background: var(--soft-beige);
      text-align: center;
    }

    .options-grid {
      display: flex;
      justify-content: center;
      gap: 3rem;
      max-width: 1000px;
      margin: 3rem auto 0;
      flex-wrap: wrap;
    }

    .option-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2.5rem;
      box-shadow: var(--shadow);
      transition: var(--transition);
      width: 300px;
      position: relative;
      overflow: hidden;
    }

    .option-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .option-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--accent);
      position: relative;
      padding-bottom: 1rem;
    }

    .option-card h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--accent);
    }

    .price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent);
      margin: 1.5rem 0;
      font-family: 'Montserrat', sans-serif;
    }

    .features {
      list-style: none;
      text-align: left;
      margin-bottom: 2rem;
    }

    .features li {
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .features li i {
      color: var(--accent);
    }

    /* Footer */
    footer {
      background: #2c2c2c;
      color: var(--white);
      padding: 4rem 5% 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-column h3 {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.8rem;
      font-family: 'Montserrat', sans-serif;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--accent);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
    }

    .footer-links a i {
      width: 20px;
      color: var(--accent-light);
      margin-right: 8px;
    }

    .footer-links a:hover {
      color: var(--accent);
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--white);
      transition: var(--transition);
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 3rem;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
      color: #999;
    }

    /* WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: var(--transition);
      animation: pulse 2s infinite;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-float i {
      color: white;
      font-size: 2rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    /* Media Queries */
    @media (max-width: 992px) {
      .product-hero {
        flex-direction: column;
        padding-top: 5rem;
      }

      .product-info {
        text-align: center;
        padding: 3rem 0;
      }

      .product-highlights {
        text-align: left;
      }

      .nav-links {
        display: none;
      }
      
      .nav-toggle {
        display: block;
      }

      .step {
        flex-direction: column;
        text-align: center;
      }

      .step-number {
        margin-right: 0;
        margin-bottom: 1.5rem;
      }

      .product-btns { justify-content: center; }
    }

    @media (max-width: 768px) {
      .product-info h1 {
        font-size: 2.5rem;
      }

      .section-header h2 {
        font-size: 2.3rem;
      }

      .options-grid {
        flex-direction: column;
        align-items: center;
      }
    }

    @media (max-width: 576px) {
      .product-info h1 {
        font-size: 2.2rem;
      }

      .product-btns {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
      }

      .cta-btn {
        width: 100%;
        text-align: center;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 576px) {
  .product-hero {
    margin-top: 60px; /* Reduced from ~80px to 60px */
    padding-top: 2rem; /* Optional: reduce extra spacing if present */
  }
}


/* Section Styling */
#why-choose {
  background: var(--primary);
  padding: 4rem 2rem;
  text-align: center;
}

/* Scrollable Container (Horizontal Scroll on All Screens) */
#why-choose .scroll-container {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;             /* Firefox */
  -ms-overflow-style: none;          /* IE/Edge */
}

#why-choose .scroll-container::-webkit-scrollbar {
  display: none;                     /* Chrome/Safari */
}

/* Detail Card Base Styling (Increased Size) */
.detail-card {
  flex: 0 0 auto;
  width: 320px;
  min-width: 320px;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  min-height: 260px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.detail-card:hover {
  transform: translateY(-6px);
}

.detail-icon {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Scroll Indicators */
.scroll-indicators {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.scroll-indicator {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s;
}

.scroll-indicator.active {
  background: var(--accent);
}

/* Optional Snap Scroll for Tablet & Mobile */
#why-choose .scroll-container {
  scroll-snap-type: x mandatory;
}

.detail-card {
  scroll-snap-align: start;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .detail-card {
    width: 280px;
    min-width: 280px;
    padding: 1.6rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .detail-card {
    width: 300px;
    min-width: 300px;
  }
}
.step-number {
  width: 3rem;
  aspect-ratio: 1 / 1;                 /* Force a square shape */
  border-radius: 50%;                  /* Make it circular */
  background-color: var(--accent);     /* Background color */
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;                      /* Prevent vertical text stretching */
  padding: 0;                          /* No internal spacing */
  margin: 0 auto 1rem;                 /* Center & bottom spacing */
  box-sizing: border-box;             /* Include padding in width/height */
  flex-shrink: 0;
  flex-grow: 0;
}

@media (max-width: 576px) {
  .step-number {
    width: 2.5rem;
    font-size: 1rem;
  }
}

.step {
  align-items: center;  /* Not stretch */
  display: flex;
  flex-wrap: wrap;
}

/* How to Use Section */
.how-to-use {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--soft-nude), var(--primary));
  position: relative;
  overflow: hidden;
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--accent-light);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  box-sizing: border-box;
  line-height: 1;
  aspect-ratio: 1 / 1; /* ensures perfect circle */
  transition: var(--transition);
}

.step:hover .step-number {
  background: var(--accent);
  color: white;
  transform: rotate(8deg);
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.step-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .step-number {
    margin: 0 0 1rem 0;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .step-number {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .step {
    flex-direction: column;
    text-align: center;
    align-items: center; /* Center-align everything inside */
    padding: 1.8rem;
  }

  .step-number {
    margin: 0 0 1.2rem 0; /* reset any side margin */
    align-self: center;   /* force it to center itself */
  }

  .step-content {
    text-align: center;
  }
}


.how-to-use {
  padding-top: 3rem !important;  /* Reduced from 6rem or whatever it was */
  margin-top: 0 !important;
}

.product-details,
.ingredients-section {
  margin-bottom: 0 !important;
  padding-bottom: 3rem !important;  /* reduce if needed */
}

.how-to-use {
  padding-bottom: 7rem !important;
  margin-bottom: 0 !important;
}

.how-to-use .step:last-child {
  margin-bottom: 0 !important;
}

.option-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.option-card .price s {
  font-size: 1.2rem;
  color: #999;
  margin-right: 0.5rem;
}

.purchase-options {
  background-color: var(--primary);
  padding: 4rem 1.5rem;
}

.purchase-options .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.options-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
}

.option-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.option-card:hover {
  transform: translateY(-5px);
}

.option-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  position: relative;
}

.option-card h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #5c4333; /* same dark underline */
}

.option-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.option-card .price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.option-card s {
  color: #999;
  margin-right: 0.5rem;
}

.option-card .features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.option-card .features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0;
  color: var(--text);
}

.option-card .features i {
  color: var(--accent);
}

.option-card .cta-btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.6rem 1.5rem;
  background: var(--btn-gradient, linear-gradient(to right, #c1976b, #f5e0c2));
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s ease;
  text-decoration: none;
}

.option-card .cta-btn:hover {
  background: var(--accent-dark, #b78d65);
}

.options-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
}

.option-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  margin-bottom: 60px;
}

.option-card:hover {
  transform: translateY(-5px);
}
.options-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
}

.option-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
}

/* 📱 Mobile: Horizontal scroll */
@media (max-width: 767px) {
  .options-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0 1rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .option-card {
    flex: 0 0 85%;
    min-width: 260px;
    scroll-snap-align: start;
  }
}

/* 📱 Tablet: 3 cards in a row */
@media (min-width: 768px) and (max-width: 1024px) {
  .options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
  }

  .option-card {
    width: 100%;
  }
}

/* ---------- NAVIGATION BASE ---------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--primary, #fff);
  position: relative;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text, #333);
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: var(--accent, #d4af37);
}

/* ---------- TOGGLE BUTTON ---------- */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* ---------- MOBILE MENU ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--primary, #fff);
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1000;
  padding: 2rem 1.5rem;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav .close-btn {
  text-align: right;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav ul li {
  margin-bottom: 1.2rem;
}

.mobile-nav ul li a {
  color: var(--text, #333);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ---------- RESPONSIVE BEHAVIOR ---------- */
@media (max-width: 1220px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media (min-width: 1221px) {
  .mobile-nav {
    display: none;
  }
}


/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 999;
  transition: box-shadow 0.3s ease;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  padding: 2rem 1.5rem;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.08);
  transition: left 0.4s ease;
  z-index: 1000;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem; /* ✅ Reduced spacing */
  margin-top: 0.4rem; /* ✅ More compact */
}

.mobile-menu ul li a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}

.close-menu {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text);
  cursor: pointer;
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1220px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  .purchase-options {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .options-grid {
    gap: 1.5rem; /* slightly reduce spacing between option cards */
  }

  .purchase-options .section-header {
    margin-bottom: 1.5rem; /* tighter header spacing */
  }
}

/* ===== MOBILE SLIDE MENU (MATCH HOMEPAGE STYLE) ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--white);
  padding: 1.8rem 1.2rem;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.08);
  transition: left 0.35s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .close-menu {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 1rem;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0rem; /* ✅ Matches homepage spacing */
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.mobile-menu ul li a i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  transition: var(--transition);
}

.mobile-menu ul li a:hover {
  color: var(--accent);
}

.mobile-menu ul li a:hover i {
  transform: scale(1.2);
}


.product-price-box {
  margin-top: 0.7rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent, #d4af37);
}

.product-discount {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light, #7a7a7a);
  margin-top: 0.2rem;
}
