
    :root {
      --forest: #0d2b18;
      --forest-md: #1a4a2e;
      --forest-lt: #2e7d52;
      --gold: #c9a252;
      --gold-lt: #e8c96e;
      --gold-pale: #f5e9c8;
      --cream: #fdf8ee;
      --cream-dk: #f0e8d0;
      --brown: #6b3f1f;
      --brown-lt: #a0622e;
      --text: #1a0f00;
      --text-lt: #5c4a32;
      --white: #ffffff;
      --glass: rgba(255, 255, 255, 0.08);
      --glass-border: rgba(255, 255, 255, 0.15);
      --shadow: rgba(13, 43, 24, 0.25);
      --radius: 18px;
      --r-sm: 10px;
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden
    }

    img {
      max-width: 100%;
      display: block
    }

    a {
      text-decoration: none;
      color: inherit
    }

    ul {
      list-style: none
    }

    /* PARTICLES CANVAS */
    #particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      opacity: 0.35
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .8s ease, transform .8s ease
    }

    .reveal.visible {
      opacity: 1;
      transform: none
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-36px);
      transition: opacity .8s ease, transform .8s ease
    }

    .reveal-left.visible {
      opacity: 1;
      transform: none
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(36px);
      transition: opacity .8s ease, transform .8s ease
    }

    .reveal-right.visible {
      opacity: 1;
      transform: none
    }

    /* UTILITY */
    .container {
      width: 92%;
      max-width: 1180px;
      margin: 0 auto
    }

    .btn {
      display: inline-block;
      padding: 15px 36px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .06em;
      cursor: pointer;
      transition: transform .25s, box-shadow .25s, background .25s;
      border: none;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
      transform: skewX(-25deg);
      transition: all 0.75s ease;
      z-index: -1;
    }

    .btn:hover::before {
      left: 200%;
    }

    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0);
      transition: background .2s;
      z-index: -2;
    }

    .btn:hover::after {
      background: rgba(255, 255, 255, 0.1)
    }

    .btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px var(--shadow)
    }

    @keyframes pulse-gold {
      0% { box-shadow: 0 0 0 0 rgba(201, 162, 82, 0.5); }
      70% { box-shadow: 0 0 0 12px rgba(201, 162, 82, 0); }
      100% { box-shadow: 0 0 0 0 rgba(201, 162, 82, 0); }
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--forest);
      box-shadow: 0 6px 24px rgba(201, 162, 82, .35);
      animation: pulse-gold 2s infinite;
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid rgba(255, 255, 255, .6);
      color: var(--white);
      backdrop-filter: blur(4px)
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, .12);
      border-color: var(--white)
    }

    .btn-dark {
      background: var(--forest);
      color: var(--gold-lt)
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--brown-lt);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .section-eyebrow::before,
    .section-eyebrow::after {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--gold)
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.1rem, 4.5vw, 3.2rem);
      font-weight: 700;
      color: var(--forest);
      line-height: 1.15;
      margin-bottom: 18px
    }

    .section-sub {
      color: var(--text-lt);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 540px
    }

    /* ─── NAVBAR ─── */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all .35s
    }

    #navbar.scrolled {
      background: rgba(253, 248, 238, .97);
      backdrop-filter: blur(16px);
      box-shadow: 0 4px 30px rgba(13, 43, 24, .12);
      border-bottom: 1px solid var(--cream-dk)
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer
    }

    .nav-logo img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold);
      box-shadow: 0 4px 16px rgba(201, 162, 82, .3)
    }

    .nav-logo-text strong {
      display: block;
      font-family: 'Cinzel', serif;
      font-size: .95rem;
      font-weight: 700;
      color: var(--forest);
      line-height: 1.1;
      letter-spacing: .04em
    }

    .nav-logo-text span {
      font-size: .65rem;
      color: var(--brown-lt);
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase
    }

    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center
    }

    .nav-links a {
      font-size: .85rem;
      font-weight: 500;
      color: var(--text-lt);
      transition: color .2s;
      letter-spacing: .03em
    }

    .nav-links a:hover {
      color: var(--forest-lt)
    }

    .nav-admin-btn {
      font-size: .75rem;
      padding: 8px 18px;
      background: rgba(201, 162, 82, .12);
      border: 1px solid var(--gold);
      color: var(--brown);
      border-radius: 50px;
      cursor: pointer;
      transition: all .2s;
      font-family: 'DM Sans';
      font-weight: 600;
      letter-spacing: .04em
    }

    .nav-admin-btn:hover {
      background: var(--gold);
      color: var(--forest)
    }

    .nav-cart-btn {
      font-size: .75rem;
      padding: 8px 18px;
      background: var(--gold);
      border: 1px solid var(--gold);
      color: var(--forest);
      border-radius: 50px;
      cursor: pointer;
      transition: all .2s;
      font-family: 'DM Sans';
      font-weight: 600;
      letter-spacing: .04em;
      display: flex;
      align-items: center;
      gap: 6px
    }

    .nav-cart-btn:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(201, 162, 82, .3)
    }

    .cart-count {
      background: var(--forest);
      color: var(--white);
      padding: 2px 6px;
      border-radius: 10px;
      font-size: .65rem;
      font-weight: 700
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--forest);
      border-radius: 2px;
      transition: transform .3s, opacity .3s
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px)
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      border-top: 1px solid var(--cream-dk);
      padding: 12px 0
    }

    .mobile-nav a {
      padding: 12px 0;
      font-weight: 500;
      color: var(--text);
      font-size: .95rem;
      border-bottom: 1px solid var(--cream-dk)
    }

    .mobile-nav.open {
      display: flex
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      overflow: hidden;
      background: linear-gradient(160deg, #071910 0%, #0d2b18 40%, #1a3d20 70%, #0d2b18 100%);
    }

    .hero-bg-image {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1608797178974-15b35a64ede9?w=1800&q=80') center/cover no-repeat;
      opacity: 0.18;
      animation: heroZoom 20s ease-in-out infinite alternate;
    }

    @keyframes heroZoom {
      from {
        transform: scale(1)
      }

      to {
        transform: scale(1.06)
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(201, 162, 82, .08) 0%, transparent 60%)
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: .4
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(201, 162, 82, .15);
      border: 1px solid rgba(201, 162, 82, .4);
      color: var(--gold-lt);
      font-size: .73rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 28px;
      animation: fadeUp .9s ease both
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 24px;
      animation: fadeUp .9s .1s ease both
    }

    .hero-title em {
      font-style: italic;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hero-sub {
      color: rgba(255, 255, 255, .72);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 40px;
      animation: fadeUp .9s .2s ease both;
      font-weight: 300
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp .9s .3s ease both
    }

    .hero-float {
      position: absolute;
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      width: 520px;
      z-index: 1;
      animation: floatImg 6s ease-in-out infinite;
      opacity: 0;
      animation-delay: .5s;
      animation-fill-mode: both
    }

    @keyframes floatImg {

      0%,
      100% {
        transform: translateY(-50%) translateY(0px);
        opacity: .35
      }

      50% {
        transform: translateY(-50%) translateY(-18px);
        opacity: .35
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    .hero-stats {
      display: flex;
      gap: 0;
      margin-top: 64px;
      animation: fadeUp .9s .4s ease both;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius);
      overflow: hidden;
      backdrop-filter: blur(8px);
      background: rgba(255, 255, 255, .04)
    }

    .stat-item {
      flex: 1;
      padding: 22px 28px;
      border-right: 1px solid rgba(255, 255, 255, .08);
      color: var(--white)
    }

    .stat-item:last-child {
      border-right: none
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--gold-lt);
      line-height: 1
    }

    .stat-label {
      font-size: .7rem;
      opacity: .6;
      margin-top: 6px;
      text-transform: uppercase;
      letter-spacing: .1em
    }

    .scroll-cue {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .4);
      font-size: .68rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      animation: scrollBounce 2.5s infinite
    }

    .scroll-cue .scroll-line {
      width: 1px;
      height: 36px;
      background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .4))
    }

    @keyframes scrollBounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0)
      }

      50% {
        transform: translateX(-50%) translateY(8px)
      }
    }

    /* TRUST MARQUEE */
    .trust-strip {
      background: linear-gradient(90deg, var(--forest), var(--forest-md), var(--forest));
      padding: 0;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, .06);
      border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .marquee-wrap {
      overflow: hidden;
      padding: 16px 0
    }

    .marquee {
      display: flex;
      gap: 60px;
      animation: marquee 28s linear infinite;
      white-space: nowrap
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--cream);
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .06em;
      flex-shrink: 0
    }

    .marquee-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0
    }

    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* ─── ABOUT ─── */
    #about {
      padding: 110px 0;
      position: relative
    }

    #about::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(201, 162, 82, .05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center
    }

    .about-visual {
      position: relative
    }

    .about-img-frame {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(13, 43, 24, .2)
    }

    .about-img-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201, 162, 82, .1), transparent);
      z-index: 1;
      pointer-events: none
    }

    .about-img-frame img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      transition: transform .6s ease
    }

    .about-visual:hover .about-img-frame img {
      transform: scale(1.04)
    }

    .about-deco-border {
      position: absolute;
      inset: -16px;
      border: 1.5px solid rgba(201, 162, 82, .25);
      border-radius: calc(var(--radius) + 8px);
      z-index: -1
    }

    .about-badge {
      position: absolute;
      bottom: -28px;
      right: -28px;
      background: var(--white);
      border-radius: 16px;
      padding: 20px 24px;
      box-shadow: 0 16px 48px var(--shadow);
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: 190px;
      z-index: 2
    }

    .about-badge-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--cream-dk), var(--gold-pale));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0
    }

    .about-badge strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--forest);
      line-height: 1
    }

    .about-badge small {
      font-size: .68rem;
      color: var(--text-lt);
      font-weight: 500;
      letter-spacing: .06em
    }

    .about-features {
      margin-top: 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .feat-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--cream-dk), rgba(201, 162, 82, .08));
      border: 1px solid rgba(201, 162, 82, .2);
      border-radius: 10px;
      padding: 13px 18px;
      font-size: .87rem;
      font-weight: 500;
      color: var(--forest-md);
      transition: all .25s
    }

    .feat-pill:hover {
      background: var(--gold-pale);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(201, 162, 82, .15)
    }

    .feat-pill span {
      font-size: 1.1rem
    }

    /* ─── PRODUCTS ─── */
    #products {
      padding: 110px 0;
      background: linear-gradient(160deg, var(--forest) 0%, #0d2b18 60%, #152e1e 100%);
      position: relative;
      overflow: hidden
    }

    #products::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(201, 162, 82, .1) 0%, transparent 70%);
      border-radius: 50%
    }

    #products::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(46, 125, 82, .12) 0%, transparent 70%);
      border-radius: 50%
    }

    .products-header {
      text-align: center;
      margin-bottom: 64px
    }

    .products-header .section-eyebrow {
      color: var(--gold);
      justify-content: center
    }

    .products-header .section-eyebrow::before,
    .products-header .section-eyebrow::after {
      background: rgba(201, 162, 82, .4)
    }

    .products-header .section-title {
      color: var(--white)
    }

    .products-header .section-sub {
      color: rgba(255, 255, 255, .6);
      margin: 0 auto
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px
    }

    .product-card {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius);
      overflow: hidden;
      transition: transform .35s, box-shadow .35s, background .35s, border-color .35s;
      cursor: pointer;
      position: relative
    }

    .product-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201, 162, 82, .05), transparent);
      opacity: 0;
      transition: opacity .35s;
      pointer-events: none
    }

    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
      background: rgba(255, 255, 255, .09);
      border-color: rgba(201, 162, 82, .3)
    }

    .product-card:hover::before {
      opacity: 1
    }

    .product-img {
      position: relative;
      overflow: hidden;
      height: 220px;
      background: #0d2b18
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s
    }

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

    .product-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      background: linear-gradient(135deg, rgba(201, 162, 82, .1), rgba(46, 125, 82, .1))
    }

    .product-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: linear-gradient(135deg, var(--gold), var(--gold-lt));
      color: var(--forest);
      font-size: .65rem;
      font-weight: 700;
      padding: 5px 14px;
      border-radius: 50px;
      letter-spacing: .08em;
      text-transform: uppercase
    }

    .product-body {
      padding: 24px
    }

    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px
    }

    .product-weight {
      font-size: .72rem;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 12px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase
    }

    .product-desc {
      color: rgba(255, 255, 255, .58);
      font-size: .84rem;
      line-height: 1.65;
      margin-bottom: 18px
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255, 255, 255, .07);
      padding-top: 18px
    }

    .product-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.75rem;
      color: var(--gold-lt);
      font-weight: 700;
      line-height: 1
    }

    .product-price sub {
      font-size: .8rem;
      font-family: 'DM Sans', sans-serif;
      color: rgba(255, 255, 255, .4);
      font-weight: 400
    }

    .product-order-btn {
      background: rgba(201, 162, 82, .15);
      border: 1px solid rgba(201, 162, 82, .4);
      color: var(--gold-lt);
      padding: 9px 20px;
      border-radius: 50px;
      font-size: .78rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .25s;
      letter-spacing: .04em
    }

    .product-order-btn:hover {
      background: var(--gold);
      color: var(--forest)
    }

    /* ─── ORDER MODAL ─── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .75);
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
      padding: 20px
    }

    .modal-overlay.active {
      display: flex
    }

    .modal-box {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 40px;
      max-width: 480px;
      width: 100%;
      position: relative;
      animation: modalPop .35s ease both;
      box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
      max-height: 90vh;
      overflow-y: auto;
    }

    @keyframes modalPop {
      from {
        opacity: 0;
        transform: scale(.92)
      }

      to {
        opacity: 1;
        transform: scale(1)
      }
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--cream-dk);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--text-lt);
      transition: all .2s
    }

    .modal-close:hover {
      background: var(--forest);
      color: white
    }

    .modal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--forest);
      margin-bottom: 6px;
      font-weight: 700
    }

    .modal-product-name {
      color: var(--gold);
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 24px
    }

    .modal-qr-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      background: white;
      border-radius: 16px;
      padding: 28px;
      box-shadow: 0 4px 24px rgba(13, 43, 24, .08);
      margin-bottom: 24px;
      border: 1px solid var(--cream-dk)
    }

    .modal-qr-wrap img {
      width: 180px;
      height: 180px;
      border-radius: 10px
    }

    .modal-upi {
      font-size: .82rem;
      color: var(--text-lt);
      font-weight: 600;
      letter-spacing: .03em
    }

    .modal-upi strong {
      color: var(--forest);
      display: block;
      margin-top: 4px;
      font-size: .9rem
    }

    .modal-steps {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px
    }

    .modal-step {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .85rem;
      color: var(--text-lt);
      line-height: 1.5
    }

    .modal-step-num {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--forest);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .72rem;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px
    }

    .modal-or {
      text-align: center;
      color: var(--text-lt);
      font-size: .8rem;
      margin: 16px 0;
      position: relative
    }

    .modal-or::before,
    .modal-or::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 42%;
      height: 1px;
      background: var(--cream-dk)
    }

    .modal-or::before {
      left: 0
    }

    .modal-or::after {
      right: 0
    }

    .modal-form-group {
      margin-bottom: 16px
    }

    .modal-form-group label {
      display: block;
      font-size: .75rem;
      font-weight: 600;
      color: var(--text-lt);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 6px
    }

    .modal-form-group input,
    .modal-form-group select,
    .modal-form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--cream-dk);
      border-radius: var(--r-sm);
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      color: var(--text);
      background: white;
      outline: none;
      transition: border-color .2s, box-shadow .2s
    }

    .modal-form-group input:focus,
    .modal-form-group select:focus,
    .modal-form-group textarea:focus {
      border-color: var(--forest-lt);
      box-shadow: 0 0 0 3px rgba(46, 125, 82, .1)
    }

    .modal-form-group textarea {
      min-height: 80px;
      resize: vertical
    }

    /* ─── WHY US ─── */
    #why {
      padding: 110px 0;
      background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dk) 100%);
      position: relative
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 28px;
      margin-top: 64px
    }

    .why-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px 30px;
      text-align: center;
      box-shadow: 0 4px 24px rgba(13, 43, 24, .06);
      transition: transform .3s, box-shadow .3s;
      position: relative;
      overflow: hidden;
      border: 1px solid transparent
    }

    .why-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--forest-lt), var(--gold));
      transform: scaleX(0);
      transition: transform .35s;
      transform-origin: left
    }

    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(13, 43, 24, .12);
      border-color: rgba(201, 162, 82, .15)
    }

    .why-card:hover::before {
      transform: scaleX(1)
    }

    .why-icon {
      width: 72px;
      height: 72px;
      background: linear-gradient(135deg, var(--cream-dk), var(--gold-pale));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 24px;
      box-shadow: 0 8px 24px rgba(201, 162, 82, .2)
    }

    .why-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--forest);
      margin-bottom: 12px
    }

    .why-card p {
      font-size: .87rem;
      color: var(--text-lt);
      line-height: 1.7
    }

    /* ─── CONTACT ─── */
    #contact {
      padding: 110px 0
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 70px;
      align-items: start
    }

    .contact-card {
      background: var(--white);
      border-radius: 14px;
      padding: 22px 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      box-shadow: 0 4px 20px rgba(13, 43, 24, .06);
      margin-bottom: 14px;
      transition: transform .25s, box-shadow .25s;
      border: 1px solid transparent
    }

    .contact-card:hover {
      transform: translateX(6px);
      box-shadow: 0 8px 32px rgba(13, 43, 24, .1);
      border-color: rgba(201, 162, 82, .15)
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--cream-dk), var(--gold-pale));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0
    }

    .contact-card h4 {
      font-size: .72rem;
      font-weight: 700;
      color: var(--brown-lt);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 4px
    }

    .contact-card p {
      font-size: .9rem;
      color: var(--text);
      line-height: 1.5;
      margin: 0
    }

    .contact-card a {
      color: var(--forest-md);
      font-weight: 600
    }

    .contact-card a:hover {
      color: var(--gold)
    }

    .map-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      margin-top: 16px;
      box-shadow: 0 8px 32px rgba(13, 43, 24, .1);
      border: 1px solid var(--cream-dk)
    }

    .map-wrap iframe {
      width: 100%;
      height: 220px;
      border: none;
      display: block
    }

    .contact-form-wrap {
      background: var(--white);
      border-radius: var(--radius);
      padding: 44px;
      box-shadow: 0 12px 48px rgba(13, 43, 24, .1);
      border: 1px solid rgba(201, 162, 82, .12)
    }

    .contact-form-wrap h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--forest);
      margin-bottom: 30px
    }

    .form-group {
      margin-bottom: 20px
    }

    .form-group label {
      display: block;
      font-size: .74rem;
      font-weight: 600;
      color: var(--text-lt);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 8px
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid var(--cream-dk);
      border-radius: var(--r-sm);
      font-family: 'DM Sans', sans-serif;
      font-size: .92rem;
      color: var(--text);
      background: var(--cream);
      transition: border-color .2s, box-shadow .2s;
      outline: none
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--forest-lt);
      box-shadow: 0 0 0 3px rgba(46, 125, 82, .1);
      background: white
    }

    .form-group textarea {
      resize: vertical;
      min-height: 110px
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    #formMsg {
      margin-top: 12px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--forest-lt);
      display: none
    }

    /* ─── ADMIN DASHBOARD ─── */
    .admin-dash-overlay {
      position: fixed;
      inset: 0;
      background: rgba(7, 25, 16, .85);
      z-index: 3000;
      display: none;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(8px);
      padding: 20px;
    }
    .admin-dash-overlay.active {
      display: flex;
    }
    .admin-dash-box {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px;
      max-width: 900px;
      width: 100%;
      position: relative;
      animation: modalPop .35s ease both;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 40px 120px rgba(0, 0, 0, .5);
    }
    .admin-dash-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      padding-bottom: 18px;
      border-bottom: 1.5px solid var(--cream-dk);
    }
    .admin-dash-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      color: var(--forest);
    }
    .admin-stat-card {
      background: var(--cream);
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      border: 1px solid var(--cream-dk);
      flex: 1;
    }
    .admin-stat-num {
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
    }
    .admin-product-row {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 2fr 1fr;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--cream-dk);
    }
    .admin-product-row input {
      padding: 8px;
      border: 1px solid var(--cream-dk);
      border-radius: 4px;
      width: 100%;
      font-size: 0.85rem;
    }
    .admin-form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 12px;
    }
    .admin-form-group input {
      padding: 10px;
      border: 1px solid var(--cream-dk);
      border-radius: var(--r-sm);
    }

    /* ─── AUTH PANEL ─── */
    .auth-overlay {
      position: fixed;
      inset: 0;
      background: rgba(7, 25, 16, .85);
      z-index: 3000;
      display: none;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(8px);
      padding: 20px
    }

    .auth-overlay.active {
      display: flex
    }

    .auth-box {
      background: var(--white);
      border-radius: var(--radius);
      padding: 44px;
      max-width: 480px;
      width: 100%;
      position: relative;
      animation: modalPop .35s ease both;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 40px 120px rgba(0, 0, 0, .5)
    }

    .auth-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      padding-bottom: 18px;
      border-bottom: 1.5px solid var(--cream-dk)
    }

    .auth-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: var(--forest)
    }

    .auth-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--cream-dk);
      border: none;
      cursor: pointer;
      font-size: 1.1rem;
      color: var(--text-lt);
      transition: all .2s
    }

    .auth-close:hover {
      background: var(--forest);
      color: white
    }
    
    .auth-tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 24px;
    }
    
    .auth-tab-btn {
      flex: 1;
      padding: 10px;
      border: none;
      background: var(--cream);
      color: var(--text);
      font-weight: 600;
      border-radius: var(--r-sm);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }
    
    .auth-tab-btn.active {
      background: var(--forest);
      color: white;
    }

    .auth-section {
      display: none;
      flex-direction: column;
      gap: 16px
    }

    .auth-section.active {
      display: flex;
    }

    .auth-section input {
      padding: 13px 16px;
      border: 1.5px solid var(--cream-dk);
      border-radius: var(--r-sm);
      font-family: 'DM Sans';
      font-size: .92rem;
      outline: none;
      transition: border-color .2s
    }

    .auth-section input:focus {
      border-color: var(--forest-lt);
      box-shadow: 0 0 0 3px rgba(46, 125, 82, .1)
    }

    #authMsg {
      margin-top: 14px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--forest-lt);
      display: none;
      padding: 12px 16px;
      background: rgba(46, 125, 82, .08);
      border-radius: 8px;
      border: 1px solid rgba(46, 125, 82, .2)
    }

    .auth-err {
      color: #c0392b;
      font-size: .85rem;
      display: none;
      margin-top: 6px
    }

    /* ─── CART OVERLAY ─── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(7, 25, 16, .85);
      z-index: 3000;
      display: none;
      backdrop-filter: blur(8px);
    }

    .cart-overlay.active {
      display: block
    }

    .cart-sidebar {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      max-width: 400px;
      background: var(--white);
      padding: 30px;
      display: flex;
      flex-direction: column;
      animation: slideInRight .35s ease both;
      box-shadow: -10px 0 40px rgba(0, 0, 0, .3);
    }

    @keyframes slideInRight {
      from {
        transform: translateX(100%)
      }

      to {
        transform: translateX(0)
      }
    }

    .cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1.5px solid var(--cream-dk)
    }

    .cart-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--forest);
      margin: 0;
    }

    .cart-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--cream-dk);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--text-lt);
      transition: all .2s
    }

    .cart-close:hover {
      background: var(--forest);
      color: white
    }

    .cart-items {
      flex: 1;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
      padding-right: 10px;
    }

    .cart-empty {
      text-align: center;
      color: var(--text-lt);
      font-size: 1rem;
      margin-top: 50px;
      display: none;
    }

    .cart-item {
      display: flex;
      align-items: center;
      gap: 15px;
      background: var(--cream);
      padding: 15px;
      border-radius: 12px;
      border: 1px solid var(--cream-dk)
    }

    .cart-item-img {
      width: 60px;
      height: 60px;
      border-radius: 8px;
      object-fit: cover
    }

    .cart-item-info {
      flex: 1
    }

    .cart-item-name {
      font-weight: 600;
      color: var(--forest);
      font-size: .95rem;
      margin-bottom: 4px
    }

    .cart-item-price {
      font-size: .85rem;
      color: var(--text-lt);
      font-weight: 500
    }

    .cart-item-qty {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 8px
    }

    .qty-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--cream-dk);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-weight: 600;
      color: var(--forest)
    }

    .qty-btn:hover {
      background: var(--gold-pale)
    }

    .qty-val {
      font-size: .85rem;
      font-weight: 700;
      width: 20px;
      text-align: center
    }

    .cart-footer {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1.5px solid var(--cream-dk)
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      color: var(--forest);
      font-size: 1.2rem;
      margin-bottom: 20px;
      font-family: 'Cormorant Garamond', serif;
    }

    .cart-total span:last-child {
      color: var(--gold-lt)
    }

    /* ─── FOOTER ─── */
    footer {
      background: linear-gradient(160deg, #071910, var(--forest));
      color: rgba(255, 255, 255, .75)
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 56px;
      padding: 72px 0 52px
    }

    .footer-logo-img {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      border: 2px solid rgba(201, 162, 82, .4);
      margin-bottom: 18px
    }

    .footer-brand-name {
      font-family: 'Cinzel', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: .04em
    }

    .footer-brand-sub {
      font-size: .68rem;
      color: var(--gold);
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 14px
    }

    .footer-desc {
      font-size: .86rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 18px
    }

    .footer-gst {
      font-size: .72rem;
      color: rgba(255, 255, 255, .3);
      background: rgba(255, 255, 255, .05);
      padding: 7px 14px;
      border-radius: 6px;
      display: inline-block;
      letter-spacing: .04em
    }

    .footer-col h4 {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px
    }

    .footer-col li+li {
      margin-top: 10px
    }

    .footer-col li a {
      font-size: .86rem;
      transition: color .2s;
      color: rgba(255, 255, 255, .6)
    }

    .footer-col li a:hover {
      color: var(--gold-lt)
    }

    .footer-col .fi {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 12px;
      font-size: .86rem;
      color: rgba(255, 255, 255, .6)
    }

    .footer-col .fi span {
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 1px
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .78rem;
      flex-wrap: wrap;
      gap: 12px;
      color: rgba(255, 255, 255, .4)
    }

    .footer-bottom a {
      color: var(--gold-lt)
    }

    .dev-credit {
      font-size: .73rem;
      color: rgba(255, 255, 255, .3);
      letter-spacing: .04em
    }

    /* WA BUTTON */
    .wa-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #25D366, #1db954);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
      cursor: pointer;
      transition: transform .25s, box-shadow .25s;
      animation: waJiggle 4s 3s infinite
    }

    .wa-btn:hover {
      transform: scale(1.12);
      box-shadow: 0 12px 36px rgba(37, 211, 102, .55);
      animation: none
    }

    .wa-btn svg {
      width: 30px;
      height: 30px;
      fill: white
    }

    .wa-tooltip {
      position: absolute;
      right: 72px;
      background: var(--white);
      color: var(--text);
      font-size: .76rem;
      font-weight: 700;
      padding: 7px 14px;
      border-radius: 8px;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s
    }

    .wa-btn:hover .wa-tooltip {
      opacity: 1
    }

    .wa-tooltip::after {
      content: '';
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-left-color: white
    }

    /* KEYFRAMES */
    @keyframes waJiggle {

      0%,
      80%,
      100% {
        transform: rotate(0)
      }

      85% {
        transform: rotate(-12deg)
      }

      92% {
        transform: rotate(12deg)
      }
    }

    /* RESPONSIVE */
    @media(max-width:960px) {

      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr
      }

      .about-badge {
        right: 0;
        bottom: -18px
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 36px
      }

      .nav-links {
        display: none
      }

      .hamburger {
        display: flex
      }

      .hero-float {
        display: none
      }
    }

    @media(max-width:640px) {
      .hero-stats {
        flex-direction: column;
        gap: 0
      }

      .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08)
      }

      .stat-item:last-child {
        border-bottom: none
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .contact-form-wrap {
        padding: 26px
      }

      .admin-box {
        padding: 26px
      }

      .about-features {
        grid-template-columns: 1fr
      }

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