    :root {
      --ink:        #0d0f14;
      --ink-soft:   #1a1d26;
      --paper:      #f7f5f0;
      --paper-mid:  #edeae3;
      --accent:     #e8540a;
      --accent-2:   #f5a623;
      --white:      #ffffff;
      --text-muted: #888;
      --font-display: 'Bebas Neue', sans-serif;
      --font-body:    'DM Sans', sans-serif;
      --radius:     12px;
      --shadow:     0 8px 40px rgba(0,0,0,0.10);
      --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--paper);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* page sections — hidden/shown via JS */
    .page-section { display: none; }
    .page-section.active { display: block; }

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    h1, h2, h3, .display-font { font-family: var(--font-display); letter-spacing: 0.02em; }
    h1 { font-size: clamp(3rem, 8vw, 7rem); line-height: 1; }
    h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
    h3 { font-size: 1.6rem; }
    .section-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    #mainNav {
      background: #000;
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: all 0.3s ease;
      z-index: 1050;
    }

    .navbar-brand img{
      width: 88px;
      height: 50px;

    }

    .heading1{

      font-size: 2rem;
    }

    #mainNav .navbar-brand {
      font-family: var(--font-display);
      font-size: 1.7rem;
      color: var(--white);
      letter-spacing: 0.05em;
    }
    #mainNav .navbar-brand span { color: var(--accent); }
    #mainNav .nav-link {
      color: rgba(255,255,255,0.75) !important;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 0.5rem 1rem !important;
      transition: color 0.2s;
    }
    #mainNav .nav-link:hover,
    #mainNav .nav-link.active-link { color: var(--accent) !important; }

    .btn-cart-nav {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 0.4rem 1.1rem;
      font-weight: 600;
      font-size: 0.85rem;
      transition: background 0.2s, transform 0.15s;
      position: relative;
    }
    .btn-cart-nav:hover { background: #c94208; transform: scale(1.04); color: #fff; }
    .cart-badge {
      position: absolute;
      top: -6px; right: -6px;
      background: var(--accent-2);
      color: var(--ink);
      border-radius: 50%;
      font-size: 0.65rem;
      font-weight: 700;
      width: 18px; height: 18px;
      display: flex; align-items: center; justify-content: center;
    }

    /* ============================================================
       HERO CAROUSEL
    ============================================================ */
    /* ===== HERO CAPTION — buttons pinned to bottom ===== */
.hero-caption {
  position: absolute;
  bottom: 2.5rem;          /* ← pin to bottom instead of top:50% */
  left: 50%;
  transform: translateX(-50%);   /* ← no vertical translate needed */
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 800px;
  z-index: 10;
  padding: 1rem;
}

/* ===== BUTTONS ===== */
.hero-btns,
.hero-caption {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.carousel-item img{
 

}
#heroCarousel{
  width: 100%;
  height: auto;
  padding: 50px 0px 0px 00px;
}

.btn-primary-custom {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary-custom:hover {
  background: #c94208;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 84, 10, 0.45);
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 0.83rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== CAROUSEL CONTROLS — perfectly centered vertically ===== */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: background 0.25s ease;
}

.carousel-control-prev {
  left: 1.2rem;
}

.carousel-control-next {
  right: 1.2rem;
}

/* CAROUSEL CSS */
#heroCarousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#heroCarousel .carousel-inner {
  width: 100%;
}

#heroCarousel .carousel-item img {
  width: 100%;
   object-fit: cover;
  object-position: center;
  display: block;
}

/* Hero caption overlay */
.hero-caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  text-align: center;
}

/* ── MOBILE FIXES ── */
@media (max-width: 768px) {
  #heroCarousel .carousel-item img {
    height: auto;     
    width: 100%;     /* shorter on mobile */
    object-position: center;
  }

  #heroCarousel {
    width: 100%;
    height: auto;
    padding: 77px 0px 0px 00px;
}

  .hero-caption {
    bottom: 20px;
    gap: 8px;
    width: 95%;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    font-size: 13px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  #heroCarousel .carousel-item img {
     height: auto;     
    width: 100%;          /* even shorter on small phones */
  }

  #heroCarousel {
    width: 100%;
    height: auto;
    padding: 77px 0px 0px 00px;
}

  .hero-caption {
    bottom: 12px;
    flex-direction: column;
    align-items: center;
  }
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.65);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-caption {
    bottom: 0rem;
  }

  .section-pad {
    padding: 1rem 0;
}

  .carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background 0.25s ease;
}

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .hero-caption {
    bottom: 0rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .section-pad {
    padding: 1rem 0 !important;
}

  .carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background 0.25s ease;
}

  .btn-primary-custom,
  .btn-outline-custom {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
    width: auto;
  }
}

    /* ============================================================
       TRUST BAR
    ============================================================ */
    .trust-bar {
      background: var(--ink);
      padding: 1rem 0;
      border-bottom: 3px solid var(--accent);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: rgba(255,255,255,0.75);
      font-size: 0.85rem;
      font-weight: 500;
      justify-content: center;
    }
    .trust-item i { color: var(--accent); font-size: 1.1rem; }

    /* ============================================================
       SECTION STYLES
    ============================================================ */
    .section-pad { padding: 1.5rem 0; }
    .section-pad-sm { padding: 4rem 0; }
    .bg-ink { background: var(--ink); color: #fff; }
    .bg-ink-soft { background: var(--ink-soft); color: #fff; }
    .bg-paper-mid { background: var(--paper-mid); }

    /* divider accent */
    .accent-line {
      width: 60px; height: 4px;
      background: var(--accent);
      border-radius: 2px;
      margin-bottom: 1.25rem;
    }
    .accent-line.centered { margin: 0 auto 1.25rem; }

    /* ============================================================
       SERVICES / FEATURE CARDS
    ============================================================ */
    .service-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
    .service-card img {
      width: 100%; height: 220px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .service-card:hover img { transform: scale(1.06); }
    .service-card-body { padding: 1.5rem; }
    .service-card-body h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
    .service-card-body p { font-size: 0.9rem; color: #666; line-height: 1.6; }
    .service-tag {
      display: inline-block;
      background: rgba(232,84,10,0.12);
      color: var(--accent);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.7rem;
      border-radius: 50px;
      margin-bottom: 0.75rem;
    }

    /* ============================================================
       PRODUCT CARDS
    ============================================================ */
    .product-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      position: relative;
      height: 100%;
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    .product-card img {
      width: 100%; height: 240px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .product-card:hover img { transform: scale(1.07); }
    .product-card-body { padding: 1.25rem; }
    .product-card-body h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
    .product-card-body .price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--accent);
    }
    .product-card-body .price-from { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
    .product-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--accent);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.2rem 0.65rem;
      border-radius: 50px;
    }
    .product-overlay {
      position: absolute;
      bottom: -60px; left: 0; right: 0;
      background: var(--accent);
      color: #fff;
      text-align: center;
      padding: 0.8rem;
      font-weight: 600;
      font-size: 0.9rem;
      transition: bottom 0.3s;
    }
    .product-card:hover .product-overlay { bottom: 0; }

    /* category filters */
    .filter-btn {
      border: 2px solid var(--ink);
      background: transparent;
      color: var(--ink);
      border-radius: 50px;
      padding: 0.45rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    /* ============================================================
       STATS COUNTER STRIP
    ============================================================ */
    .stats-strip { background: var(--accent); padding: 3rem 0; }
    .stat-item { text-align: center; }
    .stat-number {
      font-family: var(--font-display);
      font-size: 3.5rem;
      color: #fff;
      line-height: 1;
    }
    .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 0.3rem; }

    /* ============================================================
       PROCESS STEPS
    ============================================================ */
    .process-step {
      text-align: center;
      padding: 2rem 1rem;
      position: relative;
    }
    .step-number {
      font-family: var(--font-display);
      font-size: 5rem;
      color: rgba(232,84,10,0.12);
      line-height: 1;
      margin-bottom: -1rem;
    }
    .step-icon {
      width: 64px; height: 64px;
      background: var(--accent);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      color: #fff;
      font-size: 1.5rem;
      box-shadow: 0 8px 25px rgba(232,84,10,0.35);
    }
    .step-connector {
      position: absolute;
      top: 4.5rem; right: -30%;
      width: 60%; height: 2px;
      background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 14px);
    }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow);
      height: 100%;
      position: relative;
      transition: transform 0.3s;
    }
    .testimonial-card:hover { transform: translateY(-4px); }
    .testimonial-card::before {
      content: '"';
      font-family: Georgia, serif;
      font-size: 6rem;
      color: var(--accent);
      opacity: 0.2;
      position: absolute;
      top: -0.5rem; left: 1.5rem;
      line-height: 1;
    }
    .testimonial-text { font-size: 0.95rem; color: #555; line-height: 1.75; margin-bottom: 1.5rem; }
    .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
    .testimonial-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--accent);
    }
    .testimonial-name { font-weight: 700; font-size: 0.9rem; color: #000;}
    .testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
    .stars { color: var(--accent-2); font-size: 0.9rem; margin-bottom: 0.75rem; }

    /* ============================================================
       CTA BANNER
    ============================================================ */
    .cta-banner {
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -40%; right: -10%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(232,84,10,0.25) 0%, transparent 65%);
      pointer-events: none;
    }

    /* ============================================================
       PRODUCT DETAIL MODAL
    ============================================================ */
    .modal-content { border-radius: var(--radius); border: none; overflow: hidden; }
    .modal-product-img {
      width: 100%; height: 380px;
      object-fit: cover;
      border-radius: var(--radius) 0 0 var(--radius);
    }
    .size-btn, .color-btn {
      border: 2px solid var(--paper-mid);
      background: var(--white);
      border-radius: 8px;
      padding: 0.4rem 0.8rem;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }
    .size-btn:hover, .size-btn.active,
    .color-btn:hover, .color-btn.active {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(232,84,10,0.06);
    }
    .color-swatch {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 3px solid transparent;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.2s;
    }
    .color-swatch:hover, .color-swatch.active {
      border-color: var(--ink);
      transform: scale(1.15);
    }
    .qty-control {
      display: flex; align-items: center; gap: 0;
      border: 2px solid var(--paper-mid);
      border-radius: 8px;
      overflow: hidden;
      width: fit-content;
    }
    .qty-control button {
      background: var(--paper-mid);
      border: none;
      padding: 0.45rem 0.9rem;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.15s;
    }
    .qty-control button:hover { background: #d8d4cc; }
    .qty-control input {
      border: none;
      width: 52px;
      text-align: center;
      font-weight: 600;
      font-size: 0.95rem;
      background: var(--white);
      outline: none;
    }

    /* ============================================================
       CART
    ============================================================ */
    .cart-item {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.25rem;
      margin-bottom: 1rem;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .cart-item img {
      width: 80px; height: 80px;
      object-fit: cover;
      border-radius: 8px;
      flex-shrink: 0;
    }
    .cart-item-info { flex: 1; }
    .cart-item-info h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
    .cart-item-info .meta { font-size: 0.8rem; color: var(--text-muted); }
    .cart-summary {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.75rem;
      box-shadow: var(--shadow);
      position: sticky;
      top: 90px;
    }

    /* empty cart */
    .cart-empty {
      text-align: center;
      padding: 4rem 0;
    }
    .cart-empty i { font-size: 4rem; color: var(--paper-mid); margin-bottom: 1rem; }

    /* ============================================================
       CHECKOUT
    ============================================================ */
    .checkout-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow);
      margin-bottom: 1.5rem;
    }
    .checkout-card h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      padding-bottom: 0.75rem;
      border-bottom: 2px solid var(--paper-mid);
    }
    .form-control-custom {
      border: 2px solid var(--paper-mid);
      border-radius: 8px;
      padding: 0.65rem 1rem;
      font-size: 0.9rem;
      font-family: var(--font-body);
      background: var(--paper);
      color: var(--ink);
      width: 100%;
      outline: none;
      transition: border-color 0.2s;
    }
    .form-control-custom:focus { border-color: var(--accent); }
    .payment-option {
      border: 2px solid var(--paper-mid);
      border-radius: 8px;
      padding: 1rem;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .payment-option:hover, .payment-option.active {
      border-color: var(--accent);
      background: rgba(232,84,10,0.04);
    }
    .order-success {
      text-align: center;
      padding: 3rem 2rem;
    }
    .success-icon {
      width: 80px; height: 80px;
      background: rgba(34,197,94,0.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-size: 2.2rem;
      color: #22c55e;
    }

    /* ============================================================
       CONTACT PAGE
    ============================================================ */
    .contact-info-card {
      background: var(--ink);
      border-radius: var(--radius);
      padding: 2.5rem;
      color: #fff;
      height: 100%;
    }
    .contact-info-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
      align-items: flex-start;
    }
    .contact-icon {
      width: 44px; height: 44px;
      background: rgba(232,84,10,0.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-form-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2.5rem;
      box-shadow: var(--shadow-lg);
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.7);
      padding: 4rem 0 2rem;
    }
    .footer-brand {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--white);
    }
    .footer-brand span { color: var(--accent); }
    .footer-tagline { font-size: 0.85rem; margin-top: 0.5rem; max-width: 260px; line-height: 1.6; }
    .footer-heading {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--accent); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 3rem;
      padding-top: 1.5rem;
      font-size: 0.82rem;
    }
    .social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
    .social-link {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .social-link:hover { background: var(--accent); color: #fff; }

    /* ============================================================
       MISC UTILITIES
    ============================================================ */
    .text-accent { color: var(--accent); }
    .bg-accent { background: var(--accent); }
    .divider-wave { overflow: hidden; line-height: 0; }
    .divider-wave svg { display: block; }

    /* Page hero (non-homepage) */
    .page-hero {
      background: var(--ink);
      padding: 8rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -30%; left: -5%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(232,84,10,0.2) 0%, transparent 60%);
      pointer-events: none;
    }
    .page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); color: #fff; }
    .page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; }
    .breadcrumb-item a { color: var(--accent); text-decoration: none; }
    .breadcrumb-item.active { color: rgba(255,255,255,0.5); }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

    /* Price tag */
    .price-tag {
      font-family: var(--font-display);
      font-size: 2.2rem;
      color: var(--accent);
    }
    .price-tag small { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted); }

    /* Floating add to cart feedback */
    .toast-feedback {
      position: fixed;
      bottom: 2rem; right: 2rem;
      background: var(--ink);
      color: #fff;
      padding: 1rem 1.5rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      font-size: 0.9rem;
      font-weight: 500;
      z-index: 9999;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      transform: translateY(6rem);
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .toast-feedback.show {
      transform: translateY(0);
      opacity: 1;
    }
    .toast-feedback i { color: #22c55e; font-size: 1.2rem; }

    /* Animations */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-in-up { animation: fadeInUp 0.6s ease forwards; }

    @keyframes heroTextIn {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-caption h1 { animation: heroTextIn 0.8s ease 0.2s both; }
    .hero-caption p   { animation: heroTextIn 0.8s ease 0.45s both; }
    .hero-caption .hero-btns { animation: heroTextIn 0.8s ease 0.65s both; }

    /* Range input styling */
    input[type=range] { accent-color: var(--accent); }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .modal-product-img { height: 240px; border-radius: var(--radius) var(--radius) 0 0; }
      .cart-item { flex-wrap: wrap; }
      .step-connector { display: none; }
    }
  

 /* ///.....whiatsapp chatbot css...//*/
 .wa-fab{position:fixed;bottom:28px;right:28px;z-index:9999;display:flex;flex-direction:column;align-items:flex-end;gap:12px;font-family:sans-serif;}
.wa-btn{width:58px;height:58px;border-radius:50%;background:#25D366;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,0.35);}
.wa-btn svg{width:30px;height:30px;}
.wa-popup{background:#fff;border-radius:16px;width:290px;border:0.5px solid rgba(0,0,0,0.12);overflow:hidden;}
.wa-head{background:#075E54;padding:14px 16px;display:flex;align-items:center;gap:10px;}
.wa-avatar{width:40px;height:40px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;}
.wa-avatar svg{width:22px;height:22px;}
.wa-head-info{flex:1;}
.wa-head-name{color:#fff;font-weight:600;font-size:14px;margin:0;}
.wa-head-status{color:rgba(255,255,255,0.7);font-size:11px;margin:0;}
.wa-close{background:none;border:none;color:rgba(255,255,255,0.7);cursor:pointer;font-size:22px;line-height:1;padding:0;}
.wa-body{padding:14px 16px;background:#ECE5DD;}
.wa-bubble{background:#fff;border-radius:10px 10px 10px 0;padding:10px 12px;font-size:13px;line-height:1.5;color:#111;max-width:240px;box-shadow:0 1px 2px rgba(0,0,0,0.1);}
.wa-bubble-time{font-size:10px;color:#999;text-align:right;margin-top:4px;}
.wa-footer{padding:10px 12px;background:#f0f0f0;display:flex;gap:8px;align-items:center;}
.wa-input{flex:1;border:none;border-radius:20px;padding:8px 12px;font-size:13px;outline:none;background:#fff;}
.wa-send{width:36px;height:36px;border-radius:50%;background:#25D366;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;}
.wa-send svg{width:18px;height:18px;}
.wa-pulse{position:absolute;top:0;right:0;width:14px;height:14px;background:#FF3B30;border-radius:50%;border:2px solid #fff;font-size:9px;color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;}

