/** Shopify CDN: Minification failed

Line 15:4 All "@import" rules must come first
Line 1621:0 All "@import" rules must come first

**/
*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

    :root {
      --green: #1B4332;
      --green-dark: #0f2d22;
      --green-light: #2D6A4F;
      --yellow: #FFC107;
      --yellow-dark: #e5ac00;
      --orange: #F59E0B;
      --cream: #FBF7F0;
      --white: #ffffff;
      --gray: #6B7280;
      --font-display: 'Bebas Neue', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--green-dark);
      overflow-x: hidden;
      cursor: none;
    }

    /* CURSOR */
    .cursor {
      width: 24px;
      height: 24px;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 10001;
      transform: translate(-50%, -50%);
      transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1), height 0.3s cubic-bezier(0.19, 1, 0.22, 1);
      background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="11" fill="%23e0b982" stroke="%238B4513" stroke-width="1.5" stroke-dasharray="2 1"/><circle cx="8" cy="8" r="1.5" fill="%238B4513" opacity="0.6"/><circle cx="14" cy="6" r="2" fill="%238B4513" opacity="0.5"/><circle cx="16" cy="14" r="1.5" fill="%23A0522D" opacity="0.7"/><circle cx="7" cy="15" r="2" fill="%238B4513" opacity="0.4"/><circle cx="11" cy="17" r="1" fill="%23A0522D" opacity="0.6"/><circle cx="12" cy="11" r="1.5" fill="%238B4513" opacity="0.8"/></svg>');
      background-size: contain;
      background-repeat: no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 1;
    }

    .cursor-follower {
      display: none;
    }

    .khakhra-crumb {
      position: fixed;
      width: 4px;
      height: 4px;
      background-color: #8B4513;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      opacity: 1;
      animation: scatterCrumb 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes scatterCrumb {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }
      100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
      }
    }


    /* PROGRESS BAR */
    #progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--yellow), var(--orange));
      z-index: 1001;
      width: 0%;
      transition: width .1s linear;
    }

    /* HEADER */
    header {
      background: var(--green);
      color: white;
      position: sticky;
      top: 0;
      z-index: 500;
      transition: box-shadow .3s;
    }

    header.scrolled {
      box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
    }

    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
  display: flex;
  align-items: center;
  height: 100%;
}

    .logo img {
      height: 48px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

    nav a {
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .04em;
      color: rgba(255, 255, 255, .8);
      text-decoration: none;
      position: relative;
      transition: color .2s;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--yellow);
      transition: width .3s var(--ease-spring);
    }

    nav a:hover {
      color: var(--yellow);
    }

    nav a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .icon-btn {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, .08);
      border: none;
      border-radius: 50%;
      color: white;
      cursor: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, transform .2s var(--ease-spring);
    }

    .icon-btn:hover {
      background: rgba(255, 255, 255, .18);
      transform: scale(1.1);
    }

    .cart-wrap {
      position: relative;
    }

    .cart-wrap span {
      position: absolute;
      top: -2px;
      right: -2px;
      background: var(--yellow);
      color: var(--green);
      font-size: .65rem;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn-shop-now {
      background: var(--yellow);
      color: var(--green);
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .06em;
      padding: .6rem 1.4rem;
      border-radius: 6px;
      border: none;
      cursor: none;
      transition: background .2s, transform .2s var(--ease-spring), box-shadow .2s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-shop-now:hover {
      background: var(--yellow-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 193, 7, .4);
    }

    /* HAMBURGER */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: none;
      padding: 8px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      transition: transform .3s, opacity .3s;
      border-radius: 2px;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;

  top: 100px;
  left: 0;
  right: 0;

  background: var(--green-dark);

  z-index: 490;

  flex-direction: column;
  align-items: center;

  gap: 1rem;
  padding: 30px 0;

  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

    /* HERO */
    .hero {
      min-height: 100vh;
      background: var(--cream);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 75% 50%, rgba(255, 193, 7, .12) 0%, transparent 60%), radial-gradient(circle at 10% 80%, rgba(27, 67, 50, .08) 0%, transparent 50%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 6rem 2rem 4rem;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--green);
      color: var(--yellow);
      padding: .35rem 1rem;
      border-radius: 100px;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp .6s var(--ease-out) .2s forwards;
    }

    .hero-eyebrow::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--yellow);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .hero-h1 {
      font-family: var(--font-display);
      font-size: clamp(5rem, 10vw, 9rem);
      line-height: .92;
      letter-spacing: .02em;
      color: var(--green);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp .7s var(--ease-out) .35s forwards;
    }

    .hero-h1 .line-orange {
      color: var(--orange);
      display: block;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--gray);
      line-height: 1.6;
      max-width: 460px;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp .7s var(--ease-out) .5s forwards;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      opacity: 0;
      animation: fadeUp .7s var(--ease-out) .65s forwards;
    }

    .btn-primary {
      background: var(--green);
      color: white;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: .06em;
      padding: 1rem 2.2rem;
      border-radius: 8px;
      border: 2px solid var(--green);
      cursor: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: background .3s, color .3s, transform .2s var(--ease-spring), box-shadow .3s;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--yellow);
      transform: translateX(-101%);
      transition: transform .35s var(--ease-out);
      z-index: 0;
    }

    .btn-primary:hover::before {
      transform: translateX(0);
    }

    .btn-primary:hover {
      color: var(--green);
      box-shadow: 0 10px 30px rgba(27, 67, 50, .3);
      transform: translateY(-3px);
    }

    .btn-primary span,
    .btn-primary svg {
      position: relative;
      z-index: 1;
    }

    .btn-secondary {
      background: transparent;
      color: var(--green);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: .06em;
      padding: 1rem 2.2rem;
      border-radius: 8px;
      border: 2px solid var(--green);
      cursor: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: background .2s, color .2s, transform .2s var(--ease-spring);
    }

    .btn-secondary:hover {
      background: var(--green);
      color: white;
      transform: translateY(-3px);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3rem;
      opacity: 0;
      animation: fadeUp .7s var(--ease-out) .8s forwards;
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      letter-spacing: .03em;
      color: var(--green);
      line-height: 1;
    }

    .stat-label {
      font-size: .8rem;
      font-weight: 600;
      color: var(--gray);
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-top: .2rem;
    }

    /* HERO VISUAL */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      animation: fadeIn .8s var(--ease-out) .4s forwards;
    }

    .hero-img-wrap {
      position: relative;
      width: 500px;
      height: 500px;
    }

    .hero-circle-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle, rgba(255, 193, 7, .2) 0%, transparent 70%);
      border-radius: 50%;
      animation: breathe 4s ease-in-out infinite;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 10px solid white;
      box-shadow: 0 30px 80px rgba(27, 67, 50, .2);
      position: relative;
      z-index: 2;
    }

    .badge {
      position: absolute;
      z-index: 3;
      background: var(--orange);
      color: white;
      font-weight: 700;
      font-size: .85rem;
      text-align: center;
      padding: .9rem;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      line-height: 1.2;
      box-shadow: 0 8px 24px rgba(245, 158, 11, .4);
    }

    .badge-green {
      background: var(--green);
      box-shadow: 0 8px 24px rgba(27, 67, 50, .35);
    }

    .badge-top {
      top: 5%;
      right: -8%;
      animation: floatA 3s ease-in-out infinite;
    }

    .badge-bot {
      bottom: 5%;
      left: -8%;
      animation: floatB 3.5s ease-in-out infinite;
    }

    .badge-pill {
      position: absolute;
      z-index: 3;
      background: white;
      color: var(--green);
      font-size: .8rem;
      font-weight: 700;
      padding: .5rem 1rem;
      border-radius: 100px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: .4rem;
      top: 45%;
      right: -15%;
      animation: floatC 4s ease-in-out infinite;
    }

    .badge-pill .dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
    }

    /* MARQUEE */
    .marquee-section {
      background: var(--yellow);
      padding: .85rem 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marquee 25s linear infinite;
    }

    .marquee-item {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: .1em;
      color: var(--green);
      padding: 0 2.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .marquee-dot {
      width: 6px;
      height: 6px;
      background: var(--green);
      border-radius: 50%;
      display: inline-block;
    }

    /* WHY US */
    .why-us {
      background: var(--green);
      color: white;
      padding: 8rem 2rem 7rem;
      position: relative;
      overflow: hidden;
    }

    .why-us::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 0;
      right: 0;
      height: 80px;
      background: var(--green);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }

    .why-us-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .section-label {
  text-align: left;
  margin-bottom: 1rem;
}

    .section-title.light {
    text-align: left;
    margin-bottom: 3rem;
    }

    .section-label {
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--yellow);
      display: flex;
      align-items: center;
      gap: .6rem;
      margin-bottom: 1rem;
    }

    .section-label::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--yellow);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5vw, 5rem);
      letter-spacing: .04em;
      line-height: 1;
      margin-bottom: 4rem;
    }

    .section-title.light {
      color: white;
    }

    .section-title.dark {
      color: var(--green);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }

    .feature-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, .05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: background .3s, transform .3s var(--ease-spring), border-color .3s;
    }

    .feature-card:hover {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 193, 7, .3);
      transform: translateY(-8px) !important;
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      background: rgba(255, 193, 7, .15);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background .2s, transform .2s var(--ease-spring);
    }

    .feature-card:hover .feature-icon {
      background: rgba(255, 193, 7, .25);
      transform: scale(1.1) rotate(-5deg);
    }

    .feature-icon svg {
      width: 32px;
      height: 32px;
      color: var(--yellow);
    }

    .feature-card h3 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      letter-spacing: .04em;
      margin-bottom: .75rem;
      color: white;
    }

    .feature-card p {
      color: rgba(255, 255, 255, .65);
      line-height: 1.65;
      font-size: .95rem;
    }

    /* PRODUCTS */
    .products {
      background: var(--cream);
      padding: 4rem 2rem 5rem;
    }

    .products-inner {
      max-width: 1300px;
      margin: 0 auto;
    }

    .products-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: .5rem;
}

  .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

    .product-card {
      background: white;
      border-radius: 24px;
      padding: 2rem 1.5rem 1.75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 4px 24px rgba(27, 67, 50, .08);
      transition: box-shadow .4s;
      position: relative;
      overflow: hidden;
      cursor: none;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--yellow), var(--orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s var(--ease-out);
    }

    .product-card:hover::before {
      transform: scaleX(1);
    }

    .product-card:hover {
      box-shadow: 0 20px 60px rgba(27, 67, 50, .16);
    }

    .product-badge {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      background: var(--yellow);
      color: var(--green);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .25rem .65rem;
      border-radius: 100px;
    }

    .product-img-wrap {
      width: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: transform .4s var(--ease-spring);
    }

    .product-card:hover .product-img-wrap {
      transform: scale(1.08) translateY(-6px);
    }

    .product-img-wrap img {
      width: 140px;
      height: 140px;
      object-fit: cover;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
    }

    .product-name {
      font-family: var(--font-display);
      font-size: 1.6rem;
      letter-spacing: .04em;
      color: var(--green);
      margin-bottom: .25rem;
      text-align: center;
    }

    .product-sub {
      font-size: .82rem;
      color: var(--gray);
      font-style: italic;
      font-weight: 500;
      margin-bottom: .75rem;
    }

    .product-price {
      font-family: var(--font-display);
      font-size: 1.6rem;
      letter-spacing: .04em;
      color: var(--orange);
      margin-bottom: 1.5rem;
      margin-top: auto;
    }

    .btn-cart {
      width: 100%;
      background: var(--green);
      color: white;
      border: none;
      border-radius: 10px;
      padding: .85rem 1rem;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: .06em;
      cursor: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      transition: background .2s, transform .2s var(--ease-spring), box-shadow .2s;
      position: relative;
      overflow: hidden;
      font-family: var(--font-body);
    }

    .btn-cart:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(27, 67, 50, .3);
    }

    .btn-cart.added {
      background: #16a34a;
    }

    .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, .3);
      transform: scale(0);
      animation: rippleAnim .6s linear;
      pointer-events: none;
    }

    /* BG COLORS FOR PRODUCT IMG */
    .p-orange .product-img-wrap {
      background: rgba(245, 158, 11, .1);
    }

    .p-yellow .product-img-wrap {
      background: rgba(255, 193, 7, .12);
    }

    .p-red .product-img-wrap {
      background: rgba(239, 68, 68, .1);
    }

    .p-green .product-img-wrap {
      background: rgba(27, 67, 50, .1);
    }

    /* TESTIMONIALS */
    .testimonials {
      background: var(--green-dark);
      padding: 8rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .testimonials::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 0;
      right: 0;
      height: 80px;
      background: var(--green-dark);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }

    .testimonials::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 0;
      right: 0;
      height: 80px;
      background: var(--green-dark);
      clip-path: polygon(0 0, 100% 0, 0 100%);
      z-index: 1;
    }

    .testimonials-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .t-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 20px;
      padding: 2rem;
      transition: background .3s, transform .3s var(--ease-spring);
    }

    .t-card:hover {
      background: rgba(255, 255, 255, .09);
      transform: translateY(-4px) !important;
    }

    .t-stars {
      color: var(--yellow);
      font-size: 1rem;
      letter-spacing: .1em;
      margin-bottom: 1rem;
    }

    .t-text {
      color: rgba(255, 255, 255, .75);
      line-height: 1.7;
      font-size: .95rem;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .t-author {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .t-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--green);
      flex-shrink: 0;
    }

    .t-name {
      font-weight: 700;
      font-size: .9rem;
      color: white;
    }

    .t-location {
      font-size: .78rem;
      color: rgba(255, 255, 255, .4);
    }

    /* NEWSLETTER */
    .newsletter {
      background: var(--cream);
      padding: 9rem 2rem 7rem;
      position: relative;
      z-index: 2;
    }

    .newsletter-box {
      max-width: 900px;
      margin: 0 auto;
      background: var(--green);
      border-radius: 32px;
      padding: 4rem;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 3rem;
      align-items: center;
    }

    .newsletter-box::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 193, 7, .15) 0%, transparent 70%);
      border-radius: 50%;
      top: -100px;
      right: -100px;
      pointer-events: none;
    }

    .nl-label {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: .75rem;
    }

    .nl-title {
      font-family: var(--font-display);
      font-size: 3rem;
      line-height: .95;
      letter-spacing: .04em;
      color: white;
      margin-bottom: 1rem;
    }

    .nl-desc {
      color: rgba(255, 255, 255, .65);
      font-size: .95rem;
      line-height: 1.6;
    }

    .nl-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      position: relative;
      z-index: 2;
    }

    .nl-input {
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 10px;
      padding: 1rem 1.25rem;
      color: white;
      font-family: var(--font-body);
      font-size: .95rem;
      transition: border-color .2s, background .2s;
      outline: none;
    }

    .nl-input::placeholder {
      color: rgba(255, 255, 255, .4);
    }

    .nl-input:focus {
      border-color: var(--yellow);
      background: rgba(255, 255, 255, .15);
    }

    .nl-btn {
      background: var(--yellow);
      color: var(--green);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: .06em;
      padding: 1rem 1.5rem;
      border-radius: 10px;
      border: none;
      cursor: none;
      transition: background .2s, transform .2s var(--ease-spring), box-shadow .2s;
      font-family: var(--font-body);
    }

    .nl-btn:hover {
      background: var(--yellow-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 193, 7, .4);
    }

    /* FOOTER */
    footer {
      background: var(--green);
      color: white;
      padding: 5rem 2rem 2rem;
    }

    .footer-inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
      align-items: start;
    }

    footer .logo-footer img {
      height: 48px;
      margin-bottom: 1.25rem;
      display: block;
    }

    .footer-about {
      color: rgba(255, 255, 255, .5);
      line-height: 1.7;
      font-size: .9rem;
      margin-bottom: 1.5rem;
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .social-link {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, .08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: background .2s, transform .2s var(--ease-spring);
    }

    .social-link:hover {
      background: var(--yellow);
      color: var(--green);
      transform: scale(1.15) translateY(-2px);
    }

    .footer-col h4 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      letter-spacing: .06em;
      color: var(--yellow);
      margin-bottom: 1.5rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .footer-col a {
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      font-size: .9rem;
      transition: color .2s, padding-left .2s;
      display: inline-block;
    }

    .footer-col a:hover {
      color: white;
      padding-left: 4px;
    }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  line-height: 1.4;
}

.contact-item svg {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.icon {
  width: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-text {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  line-height: 1.6;
}

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: rgba(255, 255, 255, .3);
      font-size: .85rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom span {
      color: var(--yellow);
    }

    /* BACK TO TOP */
    #back-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 48px;
      height: 48px;
      background: var(--green);
      border: none;
      border-radius: 50%;
      color: white;
      cursor: none;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(27, 67, 50, .4);
      z-index: 400;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .3s, transform .3s, background .2s;
    }

    #back-top:hover {
      background: var(--green-light);
    }

    #back-top.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-d1 {
      transition-delay: .1s;
    }

    .reveal-d2 {
      transition-delay: .2s;
    }

    .reveal-d3 {
      transition-delay: .3s;
    }

    .reveal-d4 {
      transition-delay: .4s;
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    @keyframes breathe {

      0%,
      100% {
        transform: scale(1);
        opacity: .6;
      }

      50% {
        transform: scale(1.06);
        opacity: 1;
      }
    }

    @keyframes floatA {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-14px) rotate(5deg);
      }
    }

    @keyframes floatB {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-10px) rotate(-4deg);
      }
    }

    @keyframes floatC {

      0%,
      100% {
        transform: translateX(0);
      }

      50% {
        transform: translateX(8px);
      }
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .6;
        transform: scale(.8);
      }
    }

    @keyframes rippleAnim {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
      }

      .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-ctas {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
      }

      .hero-visual {
        order: -1;
      }

      .hero-img-wrap {
        width: 360px;
        height: 360px;
      }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonial-grid {
        grid-template-columns: 1fr;
      }

      .newsletter-box {
        grid-template-columns: 1fr;
        padding: 2.5rem;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {

      nav,
      .btn-shop-now {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-img-wrap {
        width: 280px;
        height: 280px;
      }

      .badge-pill {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .product-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
      }
    }
html, body {
  cursor: none;
}

.cursor {
  width: 24px;
  height: 24px;
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
}
.feature-card {
  opacity: 1 !important;
  transform: none !important;
}
/* PRODUCT IMAGE FIX */

.product-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  border-radius: 18px;
  overflow: hidden;
}

.product-img-wrap img {
  width: 80%;
  height: auto;
  object-fit: contain;
}
/* LOGO FIX */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.view-all-wrapper{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:3rem;
}
/* ===== GLOBAL PRODUCT IMAGE FIX ===== */

/* Remove ALL circular cropping */
.product-img-wrap,
.product-img-wrap img,
.product-main-img img,
.product-thumb img {
  border-radius: 0 !important;
}

/* Fix product card image container */
.product-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fix product card image */
.product-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Fix product page main image */
.product-main-img {
  background: transparent; /* REMOVE grey box */
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: none; /* remove extra shadow */
  padding: 0; /* IMPORTANT */
}

/* Fix thumbnails */
.product-thumb img {
  object-fit: contain;
  padding: 6px;
}

/* ===== CONTACT PAGE STYLING ===== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

.contact-left h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.contact-subtext {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  line-height: 1.6;
}

.contact-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* contact-item styles consolidated above in footer section */

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

/* Body */
body, p, input, textarea {
  font-family: 'DM Sans', sans-serif;
}

.contact-heading {
  font-family: "Sitka Heading", "Sitka", Georgia, serif;
  font-weight: 600;
  font-size: 84pxpx; /* 🔥 increased */
  letter-spacing: 0.5px;
  line-height: 1.05;
  color: #111;
}
.contact-heading {
  font-size: 80px !important;
}

/* LEFT LABEL */


/* contact-item consolidated */
.contact-section .contact-card h3 {
  font-family: "Sitka Heading", "Sitka", Georgia, serif !important;
  font-size: 28px !important;
  font-weight: 600;
  color: #F5B800;
}

body {
  background: #f8f6f2;
}

.builder {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

h1 {
  font-size: 42px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* IMAGE (SQUARE) */
.img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .product-img {
  transform: scale(1.05);
}

/* CONTENT */
.card-content {
  padding: 12px;
  text-align: center;
}

.title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* QTY */
.qty-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.qty-box button {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #1B3D2B;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.qty {
  font-weight: 600;
}

/* ACTIVE CARD */
.card.active {
  border: 2px solid #F97316;
}

/* SUMMARY */
.summary {
  margin-top: 40px;
  padding: 25px;
  background: #1B3D2B;
  color: white;
  border-radius: 16px;
}

.summary p {
  margin: 5px 0;
}

/* CTA */
.cta {
  margin-top: 20px;
  background: #F97316;
  padding: 16px;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.cta:hover {
  background: #ea580c;
}

.insta-link {
  display: inline-flex; /* 🔥 important */
  align-items: center;
  gap: 10px;

  margin-top: 14px;
  text-decoration: none;

  color: inherit; /* 🔥 force same footer font color */
  font-family: inherit; /* 🔥 fix font mismatch */
  font-size: 15px;
  font-weight: 500;
  line-height: 1; /* 🔥 removes weird vertical offset */

  transition: 0.25s ease;
}

.insta-link:hover {
  color: #F97316;
}

/* ICON FIX */
.insta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: rgba(255,255,255,0.05);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

/* 🔥 THIS FIXES TEXT ALIGNMENT PERFECTLY */
.insta-text {
  display: flex;
  align-items: center;
}
.footer-col {
  display: flex;
  flex-direction: column;
}


.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

/* emoji, contact-text, icon consolidated above */
.footer-col:last-child {
  align-items: flex-start;
  text-align: left;
}
/* contact-item consolidated */

.offer-marquee {
  background: #F5B800;
  color: #1B3D2B;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}

/* 🔥 main track */
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 18s linear infinite;
}

/* 🔥 IMPORTANT CHANGE HERE */
.marquee-content {
  display: flex;
  gap: 40px;        /* spacing between repeats */
  padding-right: 40px; /* 🔥 prevents visual cut */
}

/* text */
.marquee-content span {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 14px;
}

/* smooth infinite loop */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*.contact-item {
  background: rgba(255,255,255,0.05);
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 3px solid #F5B800;
  margin-bottom: 16px;
}*/

/*.contact-item {
  background: rgba(255,255,255,0.05);
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 3px solid #F5B800;
  margin-bottom: 16px;
}*/

.contact-item span {
  display: block;
  color: #F5B800;       /* Yellow */
  font-weight: 700;     /* Bold */
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-item {
  color: #fff;
  font-size: 15px;
}

.email-link {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.email-link:hover {
  color: #F5B800;
  text-decoration: underline;
}
body.menu-open {
  overflow: hidden;
}
.mobile-nav a {
  color: white !important;
  text-decoration: none;
}