    /* ============================================================
       CSS CUSTOM PROPERTIES – Design Tokens
    ============================================================ */
    :root {
      --matcha:       #6BAF92;
      --matcha-dark:  #4a8a6e;
      --matcha-deep:  #2d5c47;
      --matcha-light: #a8d5bc;
      --matcha-pale:  #e8f5ee;
      --cream:        #faf7f2;
      --cream-dark:   #f0ebe0;
      --gold:         #c9a84c;
      --gold-light:   #e8cc7a;
      --white:        #ffffff;
      --text-dark:    #1a2e24;
      --text-mid:     #4a6355;
      --text-light:   #8aab97;
      --shadow-soft:  0 8px 40px rgba(107,175,146,.15);
      --shadow-card:  0 4px 24px rgba(45,92,71,.12);
      --radius-lg:    20px;
      --radius-xl:    32px;
      --transition:   0.35s cubic-bezier(.4,0,.2,1);
    }

    /* Dark Mode */
    body.dark {
      --cream:        #0f1f17;
      --cream-dark:   #162b1f;
      --matcha-pale:  #1a3327;
      --white:        #1e2e26;
      --text-dark:    #e8f5ee;
      --text-mid:     #a8d5bc;
      --text-light:   #6BAF92;
      --shadow-soft:  0 8px 40px rgba(0,0,0,.4);
      --shadow-card:  0 4px 24px rgba(0,0,0,.35);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::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-dark);
      transition: background var(--transition), color var(--transition);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* ============================================================
       LOADING SCREEN
    ============================================================ */
    #loading-screen {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--matcha-deep);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 24px;
      transition: opacity .6s ease, visibility .6s ease;
    }
    #loading-screen.hidden { opacity: 0; visibility: hidden; }
    .loading-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem; color: var(--cream);
      letter-spacing: .12em;
      animation: pulseText 1.4s ease-in-out infinite;
    }
    .loading-bar-wrap {
      width: 160px; height: 2px;
      background: rgba(255,255,255,.2); border-radius: 4px; overflow: hidden;
    }
    .loading-bar {
      height: 100%; width: 0;
      background: linear-gradient(90deg, var(--matcha-light), var(--gold-light));
      border-radius: 4px;
      animation: loadBar 1.8s ease forwards;
    }
    @keyframes loadBar { to { width: 100%; } }
    @keyframes pulseText {
      0%,100% { opacity: 1; } 50% { opacity: .5; }
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 20px 5%;
      display: flex; align-items: center; justify-content: space-between;
      transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    }
    #navbar.scrolled {
      background: rgba(250,247,242,.9);
      backdrop-filter: blur(20px);
      box-shadow: 0 2px 24px rgba(107,175,146,.1);
      padding: 12px 5%;
    }
    body.dark #navbar.scrolled {
      background: rgba(15,31,23,.9);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 600; letter-spacing: .08em;
      color: var(--white);
      transition: color var(--transition);
    }
    #navbar.scrolled .nav-logo { color: var(--matcha-deep); }
    body.dark #navbar.scrolled .nav-logo { color: var(--matcha-light); }
    .nav-links {
      display: flex; align-items: center; gap: 32px; list-style: none;
    }
    .nav-links a {
      font-size: .875rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase;
      color: rgba(255,255,255,.85);
      transition: color var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
      background: var(--gold); transform: scaleX(0); transition: transform var(--transition);
    }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-links a:hover { color: var(--gold-light); }
    #navbar.scrolled .nav-links a { color: var(--text-mid); }
    #navbar.scrolled .nav-links a:hover { color: var(--matcha); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .btn-nav {
      padding: 8px 18px; border-radius: 50px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
      border: 1px solid rgba(255,255,255,.4); color: rgba(255,255,255,.9);
      transition: all var(--transition);
    }
    .btn-nav:hover { background: rgba(255,255,255,.15); }
    #navbar.scrolled .btn-nav { border-color: var(--matcha); color: var(--matcha); }
    #navbar.scrolled .btn-nav:hover { background: var(--matcha); color: var(--white); }
    .cart-btn {
      position: relative; width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.9); font-size: 1.1rem;
      transition: all var(--transition);
    }
    .cart-btn:hover { background: rgba(255,255,255,.15); }
    #navbar.scrolled .cart-btn { color: var(--text-mid); }
    #navbar.scrolled .cart-btn:hover { background: var(--matcha-pale); color: var(--matcha); }
    .cart-count {
      position: absolute; top: 2px; right: 2px;
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--gold); color: var(--white);
      font-size: .65rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: scale(0); transition: all .25s;
    }
    .cart-count.visible { opacity: 1; transform: scale(1); }
    .dark-toggle {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.9); font-size: 1rem;
      transition: all var(--transition);
    }
    .dark-toggle:hover { background: rgba(255,255,255,.15); }
    #navbar.scrolled .dark-toggle { color: var(--text-mid); }
    #navbar.scrolled .dark-toggle:hover { background: var(--matcha-pale); color: var(--matcha); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px; width: 24px;
    }
    .hamburger span {
      display: block; height: 2px; background: rgba(255,255,255,.9);
      border-radius: 2px; transition: all var(--transition);
    }
    #navbar.scrolled .hamburger span { background: var(--text-mid); }
    .nav-user-info {
      font-size: .8rem; color: var(--gold); font-weight: 500;
      display: none;
    }
    #navbar.scrolled .nav-user-info { color: var(--matcha-dark); }

    /* Mobile Nav */
    .mobile-menu {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
      background: var(--matcha-deep); z-index: 999;
      flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; color: var(--cream); letter-spacing: .06em;
      transition: color var(--transition);
    }
    .mobile-menu a:hover { color: var(--gold-light); }
    .mobile-close {
      position: absolute; top: 24px; right: 5%;
      font-size: 1.8rem; color: var(--cream-dark); cursor: pointer;
    }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    #home {
      min-height: 100vh; position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(145deg, #1a3d2a 0%, #2d5c47 40%, #4a8a6e 80%, #6BAF92 100%);
    }
    /* Decorative circles */
    .hero-bg::before {
      content: ''; position: absolute;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
      top: -150px; right: -100px;
    }
    .hero-bg::after {
      content: ''; position: absolute;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
      bottom: -100px; left: -80px;
    }
    /* Animated floating elements */
    .hero-leaf {
      position: absolute; font-size: 5rem; opacity: .07;
      animation: floatLeaf 8s ease-in-out infinite;
    }
    .hero-leaf:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
    .hero-leaf:nth-child(2) { top: 60%; right: 10%; animation-delay: 2s; font-size: 3rem; }
    .hero-leaf:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; font-size: 2rem; }
    @keyframes floatLeaf {
      0%,100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(8deg); }
    }
    .hero-content {
      position: relative; z-index: 2; text-align: center;
      padding: 0 5%; max-width: 800px;
    }
    .hero-badge {
      display: inline-block; margin-bottom: 24px;
      padding: 6px 20px; border-radius: 50px;
      border: 1px solid rgba(201,168,76,.5);
      font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold-light);
      animation: fadeInUp .8s .3s both;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(4rem, 10vw, 8rem);
      font-weight: 300; color: var(--white); line-height: .95;
      letter-spacing: -.01em;
      animation: fadeInUp .8s .5s both;
    }
    .hero-title em { font-style: italic; color: var(--gold-light); }
    .hero-tagline {
      margin-top: 24px; font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(255,255,255,.7); font-weight: 300; letter-spacing: .04em;
      animation: fadeInUp .8s .7s both;
    }
    .hero-actions {
      margin-top: 48px; display: flex; gap: 16px;
      justify-content: center; flex-wrap: wrap;
      animation: fadeInUp .8s .9s both;
    }
    .btn-primary {
      padding: 16px 40px; border-radius: 50px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--matcha-deep); font-weight: 500; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
      box-shadow: 0 8px 32px rgba(201,168,76,.4);
      transition: all var(--transition);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,168,76,.5); }
    .btn-secondary {
      padding: 16px 40px; border-radius: 50px;
      border: 1px solid rgba(255,255,255,.4); color: rgba(255,255,255,.9);
      font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
      transition: all var(--transition);
    }
    .btn-secondary:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
    .hero-scroll {
      position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
      animation: fadeInUp .8s 1.2s both;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

    /* ============================================================
       SECTION COMMONS
    ============================================================ */
    section { padding: 100px 5%; }
    .section-tag {
      display: inline-block; margin-bottom: 12px;
      font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
      color: var(--matcha); font-weight: 500;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300;
      color: var(--text-dark); line-height: 1.1; letter-spacing: -.01em;
    }
    .section-title em { font-style: italic; color: var(--matcha); }
    .section-sub {
      margin-top: 12px; font-size: .95rem; color: var(--text-mid);
      max-width: 480px; line-height: 1.7;
    }
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity .8s ease, transform .8s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ============================================================
       FEATURES STRIP
    ============================================================ */
    #features {
      padding: 60px 5%; background: var(--matcha-deep);
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px;
    }
    .feature-item {
      display: flex; align-items: center; gap: 16px;
      color: rgba(255,255,255,.8);
    }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; flex-shrink: 0;
    }
    .feature-item h4 { font-size: .85rem; font-weight: 500; margin-bottom: 2px; }
    .feature-item p { font-size: .75rem; opacity: .6; }

    /* ============================================================
       PRODUCTS SECTION
    ============================================================ */
    #products { background: var(--cream); }
    .products-header { margin-bottom: 60px; }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 32px;
    }
    .product-card {
      background: var(--white); border-radius: var(--radius-xl);
      overflow: hidden; box-shadow: var(--shadow-card);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
    }
    .product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(45,92,71,.18); }
    .product-img-wrap {
      height: 220px; overflow: hidden; position: relative;
      background: var(--matcha-pale);
      display: flex; align-items: center; justify-content: center;
    }
    .product-emoji { font-size: 6rem; transition: transform var(--transition); }
    .product-card:hover .product-emoji { transform: scale(1.12); }
    .product-badge {
      position: absolute; top: 12px; right: 12px;
      padding: 4px 12px; border-radius: 50px;
      background: var(--gold); color: var(--white);
      font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    }
    .product-info { padding: 24px; }
    .product-category {
      font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--matcha); margin-bottom: 6px;
    }
    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 400; color: var(--text-dark);
      margin-bottom: 6px;
    }
    .product-desc { font-size: .8rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; }
    .product-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 600; color: var(--matcha-dark);
    }
    .product-price span { font-size: .8rem; font-weight: 400; color: var(--text-light); }
    .btn-cart {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--matcha); color: var(--white);
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
      transition: all var(--transition); box-shadow: 0 4px 16px rgba(107,175,146,.4);
    }
    .btn-cart:hover { background: var(--matcha-dark); transform: scale(1.1) rotate(8deg); }

    /* ============================================================
       ABOUT SECTION   
      ============================================================ */
      #about {
      background: linear-gradient(160deg, var(--matcha-pale) 0%, var(--cream) 100%);
    }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .about-visual {
      position: relative; height: 480px;
      display: flex; align-items: center; justify-content: center;
    }
    .about-circle {
      width: 300px; height: 300px; border-radius: 50%;
      background: linear-gradient(135deg, var(--matcha), var(--matcha-dark));
      display: flex; align-items: center; justify-content: center;
      font-size: 8rem; box-shadow: 0 24px 80px rgba(107,175,146,.4);
      animation: floatLeaf 6s ease-in-out infinite;
    }
    .about-ring {
      position: absolute; inset: -20px;
      border-radius: 50%; border: 1px solid rgba(107,175,146,.2);
      animation: ringPulse 4s ease-in-out infinite;
    }
    .about-ring:nth-child(3) { inset: -50px; animation-delay: 1s; }
    @keyframes ringPulse {
      0%,100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.05); opacity: .5; }
    }
    .about-text .section-sub { max-width: 100%; }
    .about-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem; font-weight: 600; color: var(--matcha); line-height: 1;
    }
    .stat-label { font-size: .75rem; color: var(--text-light); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
    .about-quote {
      margin-top: 32px; padding: 24px; border-radius: var(--radius-lg);
      background: var(--white); border-left: 3px solid var(--gold);
      font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic;
      color: var(--text-mid); line-height: 1.7;
      box-shadow: var(--shadow-soft);
    }

    /* 
      /* ============================================================
       CONTACT SECTION
    ============================================================ */
    #contact { background: var(--cream); }
    .contact-wrap {
      max-width: 640px; margin: 0 auto; margin-top: 48px;
    }
    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block; margin-bottom: 8px;
      font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--text-mid);
    }
    .form-input {
      width: 100%; padding: 14px 18px; border-radius: 12px;
      border: 1.5px solid var(--cream-dark); background: var(--white);
      color: var(--text-dark); font-family: 'DM Sans', sans-serif; font-size: .9rem;
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
    }
    .form-input:focus {
      border-color: var(--matcha); box-shadow: 0 0 0 4px rgba(107,175,146,.12);
    }
    textarea.form-input { resize: vertical; min-height: 120px; }
    .btn-submit {
      width: 100%; padding: 16px; border-radius: 12px;
      background: linear-gradient(135deg, var(--matcha), var(--matcha-dark));
      color: var(--white); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
      font-weight: 500; transition: all var(--transition);
      box-shadow: 0 8px 24px rgba(107,175,146,.35);
    }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(107,175,146,.4); }
 
    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--matcha-deep); color: rgba(255,255,255,.7);
      padding: 60px 5% 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px;
    }
    .footer-brand .nav-logo { color: var(--white); font-size: 1.8rem; display: block; margin-bottom: 12px; }
    .footer-brand p { font-size: .85rem; line-height: 1.8; opacity: .7; max-width: 280px; }
    .footer-col h5 {
      font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { font-size: .85rem; opacity: .7; transition: opacity var(--transition); }
    .footer-col a:hover { opacity: 1; color: var(--matcha-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: .75rem; opacity: .5;
    }
 
    /* ============================================================
       MODAL BASE
    ============================================================ */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 2000;
      background: rgba(15,31,23,.7); backdrop-filter: blur(8px);
      align-items: center; justify-content: center; padding: 20px;
    }
    .modal-overlay.open { display: flex; animation: fadeIn .3s ease; }
    .modal-box {
      background: var(--white); border-radius: var(--radius-xl);
      padding: 48px 40px; max-width: 460px; width: 100%;
      box-shadow: 0 40px 100px rgba(0,0,0,.3);
      animation: slideUp .4s ease;
      position: relative; overflow: hidden;
    }
    .modal-box::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--matcha), var(--gold));
    }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
    .modal-close {
      position: absolute; top: 20px; right: 20px;
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--cream-dark); color: var(--text-mid);
      display: flex; align-items: center; justify-content: center; font-size: .9rem;
      transition: all var(--transition);
    }
    .modal-close:hover { background: var(--matcha); color: var(--white); }
    .modal-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 400; color: var(--text-dark); margin-bottom: 6px;
    }
    .modal-sub { font-size: .85rem; color: var(--text-light); margin-bottom: 32px; }
    .modal-tabs {
      display: flex; gap: 0; margin-bottom: 28px;
      background: var(--cream); border-radius: 50px; padding: 4px;
    }
    .modal-tab {
      flex: 1; padding: 10px; border-radius: 50px; text-align: center;
      font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
      transition: all var(--transition); color: var(--text-light);
    }
    .modal-tab.active { background: var(--white); color: var(--matcha); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
    .form-hint { font-size: .75rem; color: var(--text-light); margin-top: 6px; }
    .btn-auth {
      width: 100%; padding: 15px; border-radius: 12px; margin-top: 8px;
      background: linear-gradient(135deg, var(--matcha), var(--matcha-dark));
      color: var(--white); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
      font-weight: 500; transition: all var(--transition);
      box-shadow: 0 8px 24px rgba(107,175,146,.35);
    }
    .btn-auth:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(107,175,146,.4); }
 
    /* ============================================================
       CART MODAL
    ============================================================ */
    .cart-box { max-width: 540px; }
    .cart-items { max-height: 320px; overflow-y: auto; margin-bottom: 24px; }
    .cart-item {
      display: flex; align-items: center; gap: 16px;
      padding: 16px 0; border-bottom: 1px solid var(--cream-dark);
    }
    .cart-item-emoji { font-size: 2.5rem; width: 56px; height: 56px; border-radius: 12px; background: var(--matcha-pale); display: flex; align-items: center; justify-content: center; }
    .cart-item-info { flex: 1; }
    .cart-item-name { font-weight: 500; font-size: .9rem; color: var(--text-dark); }
    .cart-item-price { font-size: .8rem; color: var(--matcha); margin-top: 2px; }
    .cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
    .qty-btn {
      width: 24px; height: 24px; border-radius: 50%; background: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem; color: var(--text-mid); transition: all var(--transition);
    }
    .qty-btn:hover { background: var(--matcha); color: var(--white); }
    .qty-num { font-size: .85rem; color: var(--text-dark); min-width: 20px; text-align: center; }
    .cart-remove { color: var(--text-light); font-size: .85rem; transition: color var(--transition); }
    .cart-remove:hover { color: #e05c5c; }
    .cart-empty { text-align: center; padding: 40px; color: var(--text-light); font-size: .9rem; }
    .cart-empty .empty-icon { font-size: 3rem; display: block; margin-bottom: 12px; }
    .cart-total {
      display: flex; justify-content: space-between; align-items: center;
      padding: 16px 0; border-top: 1.5px solid var(--matcha-pale);
      margin-bottom: 16px;
    }
    .cart-total-label { font-weight: 500; color: var(--text-dark); }
    .cart-total-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; color: var(--matcha-dark); font-weight: 600;
    }
 
    /* ============================================================
       CHECKOUT MODAL
    ============================================================ */
    .checkout-box { max-width: 560px; }
    .payment-options { display: flex; gap: 12px; margin-bottom: 8px; }
    .payment-opt {
      flex: 1; padding: 12px; border-radius: 12px;
      border: 1.5px solid var(--cream-dark); text-align: center;
      font-size: .8rem; color: var(--text-mid); cursor: pointer; transition: all var(--transition);
    }
    .payment-opt.selected { border-color: var(--matcha); background: var(--matcha-pale); color: var(--matcha); }
    .payment-opt span { display: block; font-size: 1.4rem; margin-bottom: 4px; }
 
    /* ============================================================
       SUCCESS MODAL
    ============================================================ */
    .success-box { max-width: 420px; text-align: center; }
    .success-anim { font-size: 4rem; margin-bottom: 16px; animation: successBounce .6s ease; }
    @keyframes successBounce {
      0% { transform: scale(0); } 60% { transform: scale(1.2); } 100% { transform: scale(1); }
    }
    .confetti-wrap { position: fixed; inset: 0; pointer-events: none; z-index: 3000; }
    .confetti-piece {
      position: absolute; width: 8px; height: 8px;
      border-radius: 2px; animation: confettiFall 3s ease-in forwards;
    }
    @keyframes confettiFall {
      0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
      100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
    }
    .order-detail {
      background: var(--cream); border-radius: 12px;
      padding: 20px; text-align: left; margin: 20px 0;
      font-size: .85rem; line-height: 2;
    }
    .order-detail strong { color: var(--matcha-dark); }
 
    /* ============================================================
       TOAST NOTIFICATION
    ============================================================ */
    #toast-container {
      position: fixed; bottom: 24px; right: 24px; z-index: 5000;
      display: flex; flex-direction: column; gap: 12px;
    }
    .toast {
      padding: 14px 20px; border-radius: 12px;
      background: var(--matcha-deep); color: var(--white);
      font-size: .85rem; box-shadow: 0 8px 24px rgba(0,0,0,.2);
      display: flex; align-items: center; gap: 10px;
      animation: toastIn .4s ease, toastOut .4s ease 2.8s forwards;
      max-width: 300px;
    }
    .toast.error { background: #4a2222; }
    .toast.gold { background: #4a3a10; }
    .toast-icon { font-size: 1.1rem; }
    @keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: none; opacity: 1; } }
    @keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateX(20px); } }
 
    /* ============================================================
       ANIMATIONS HELPERS
    ============================================================ */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: none; }
    }
 
    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-visual { height: 280px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1/-1; }
    }
    @media (max-width: 680px) {
      .nav-links, .btn-nav { display: none; }
      .hamburger { display: flex; }
      section { padding: 72px 5%; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
      .modal-box { padding: 36px 24px; }
      #features { gap: 20px; }
    }

    /* FIX CHECKOUT BUTTON */
.checkout-box {
  max-width: 560px;
  width: 100%;
  margin: auto;
}

.checkout-box form {
  width: 100%;
}

.checkout-box .btn-submit {
  width: 100%;
  display: block;
  margin-top: 20px;
}