
    :root {
      --gold: #D4A200;
      --gold-dark: #B08800;
      --gold-light: #F5C800;
      --black: #1A1200;
      --dark: #F7F3E8;
      --dark2: #FFFFFF;
      --dark3: #EEE8D5;
      --white: #1A1200;
      --gray: #6B6040;
      --light-gray: #FAF7EF;
      --text: #2C2200;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: #F7F3E8;
      color: #1A1200;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 252, 242, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid rgba(212, 162, 0, 0.35);
      box-shadow: 0 2px 20px rgba(212, 162, 0, 0.1);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo-star {
      font-size: 28px;
      line-height: 1;
      filter: drop-shadow(0 0 8px var(--gold));
    }

    .nav-logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 3px;
      color: var(--white);
    }

    .nav-logo-text span {
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: #3A2E00;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      transition: color .3s;
      text-transform: uppercase;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .cart-btn {
      background: #C89800;
      color: #FFFFFF;
      border: none;
      cursor: pointer;
      padding: 10px 20px;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 8px;
      position: relative;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: background .3s;
      box-shadow: 0 2px 10px rgba(200, 152, 0, 0.3);
    }

    .cart-btn:hover {
      background: #A07800;
    }

    .cart-count {
      background: #1A1200;
      color: #F5C800;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      min-width: 20px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 5px;
    }

    .hamburger span {
      display: block;
      width: 25px;
      height: 2px;
      background: #1A1200;
      border-radius: 2px;
      transition: all .3s;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 120px 5% 80px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #FFFDF0 0%, #FFF8D6 40%, #FFFBEA 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212, 162, 0, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-sparkle {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      font-size: clamp(120px, 20vw, 220px);
      opacity: 0.08;
      animation: pulse 3s ease-in-out infinite;
      pointer-events: none;
      filter: drop-shadow(0 0 40px #D4A200);
      color: #D4A200;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 0.10;
        transform: translateY(-50%) scale(1);
      }

      50% {
        opacity: 0.18;
        transform: translateY(-50%) scale(1.05);
      }
    }

    .hero-badge {
      background: rgba(212, 162, 0, 0.12);
      border: 1px solid rgba(212, 162, 0, 0.5);
      color: #8B6800;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 16px;
      margin-bottom: 24px;
      display: inline-block;
    }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 9vw, 110px);
      line-height: 0.9;
      letter-spacing: 2px;
      margin-bottom: 20px;
      color: #1A1200;
    }

    .hero h1 .gold {
      color: #B08800;
    }

    .hero-sub {
      font-size: clamp(14px, 2vw, 18px);
      color: #5A4A00;
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: #C89800;
      color: #FFFFFF;
      border: none;
      cursor: pointer;
      padding: 14px 36px;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
      transition: all .3s;
      display: inline-block;
    }

    .btn-primary:hover {
      background: #A07800;
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: #1A1200;
      border: 2px solid rgba(180, 140, 0, 0.5);
      cursor: pointer;
      padding: 14px 36px;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .3s;
      display: inline-block;
    }

    .btn-outline:hover {
      border-color: #B08800;
      color: #B08800;
      background: rgba(212, 162, 0, 0.06);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 60px;
      flex-wrap: wrap;
    }

    .stat {}

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 42px;
      color: #A07800;
      line-height: 1;
    }

    .stat-label {
      font-size: 12px;
      color: #7A6020;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    /* ── SECTIONS ── */
    section {
      padding: 80px 5%;
    }

    .section-label {
      font-size: 11px;
      color: #9A7400;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 60px);
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 16px;
      color: #1A1200;
    }

    .section-sub {
      color: #6B5A20;
      font-size: 15px;
      max-width: 500px;
      line-height: 1.7;
      margin-bottom: 50px;
    }

    /* ── PRODUCTS ── */
    #products {
      background: #F7F3E8;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
      gap: 28px;
    }

    .product-card {
      background: #FFFFFF;
      border: 1.5px solid rgba(180, 140, 0, 0.15);
      padding: 0 0 24px;
      position: relative;
      overflow: hidden;
      transition: all .4s cubic-bezier(.2,.8,.2,1);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 18px rgba(180, 140, 0, 0.08);
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(to right, #C89800, #F5C800);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
      z-index: 3;
    }

    .product-card:hover {
      border-color: rgba(180, 140, 0, 0.4);
      transform: translateY(-8px);
      box-shadow: 0 24px 50px rgba(180, 140, 0, 0.2);
    }

    .product-card:hover::before {
      transform: scaleX(1);
    }

    .product-media {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: radial-gradient(circle at 50% 35%, #FFFDF2 0%, #FBF3DC 60%, #F5EBC8 100%);
    }

    .product-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      padding: 14px;
      transition: transform .5s cubic-bezier(.2,.8,.2,1);
      filter: drop-shadow(0 14px 18px rgba(60, 45, 0, 0.16));
    }

    .product-card:hover .product-media img {
      transform: scale(1.06);
    }

    .product-media::after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: inset 0 -30px 40px -20px rgba(120, 90, 0, 0.10);
      pointer-events: none;
    }

    .product-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(26, 18, 0, 0.85);
      color: #F5C800;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 12px;
      z-index: 2;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    }

    .product-body {
      padding: 22px 22px 0;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .product-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 2px;
      margin-bottom: 8px;
      color: #1A1200;
    }

    .product-desc {
      font-size: 13px;
      color: #6B5A20;
      line-height: 1.6;
      margin-bottom: 20px;
      flex: 1;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding: 0 22px;
    }

    .product-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: #A07800;
    }

    .add-btn {
      background: #C89800;
      color: #FFFFFF;
      border: none;
      cursor: pointer;
      width: 38px;
      height: 38px;
      font-size: 22px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
      clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    }

    .add-btn:hover {
      background: #A07800;
      transform: scale(1.1);
    }

    .added-badge {
      background: rgba(245, 200, 0, 0.15);
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      padding: 4px 10px;
      display: none;
    }

    /* ── CART SIDEBAR ── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26, 18, 0, 0.5);
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
      backdrop-filter: blur(2px);
    }

    .cart-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .cart-sidebar {
      position: fixed;
      top: 0;
      right: -420px;
      width: 420px;
      max-width: 100vw;
      height: 100vh;
      background: #FFFFFF;
      border-left: 2px solid rgba(180, 140, 0, 0.25);
      z-index: 2001;
      padding: 30px;
      display: flex;
      flex-direction: column;
      transition: right .4s cubic-bezier(.4, 0, .2, 1);
      overflow-y: auto;
      box-shadow: -8px 0 40px rgba(180, 140, 0, 0.1);
    }

    .cart-sidebar.open {
      right: 0;
    }

    .cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(180, 140, 0, 0.2);
    }

    .cart-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 3px;
      color: #1A1200;
    }

    .cart-close {
      background: none;
      border: none;
      color: #1A1200;
      font-size: 24px;
      cursor: pointer;
      padding: 4px;
      transition: color .3s;
    }

    .cart-close:hover {
      color: #A07800;
    }

    .cart-empty {
      text-align: center;
      color: #7A6020;
      padding: 60px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .cart-empty-icon {
      font-size: 60px;
      opacity: .3;
    }

    .cart-items {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cart-item {
      background: #FFF9E8;
      padding: 16px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 14px;
      border: 1px solid rgba(180, 140, 0, 0.15);
    }

    .cart-item-icon {
      font-size: 32px;
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: radial-gradient(circle at 50% 35%, #FFFDF2 0%, #F5EBC8 100%);
      border: 1px solid rgba(180, 140, 0, 0.15);
    }

    .cart-item-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 4px;
    }

    .cart-item-info {
      flex: 1;
      min-width: 0;
    }

    .cart-item-name {
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 4px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      color: #1A1200;
    }

    .cart-item-price {
      font-size: 13px;
      color: #A07800;
    }

    .cart-item-qty {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .qty-btn {
      background: rgba(200, 152, 0, 0.1);
      border: 1px solid rgba(200, 152, 0, 0.35);
      color: #A07800;
      width: 28px;
      height: 28px;
      cursor: pointer;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
    }

    .qty-btn:hover {
      background: #C89800;
      color: #FFFFFF;
    }

    .qty-num {
      font-weight: 600;
      font-size: 14px;
      min-width: 20px;
      text-align: center;
      color: #1A1200;
    }

    .cart-footer {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid rgba(180, 140, 0, 0.2);
    }

    .cart-customer {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 18px;
    }

    .cart-customer .form-input {
      padding: 10px 14px;
      font-size: 13px;
    }

    .cart-summary-row {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: #6B5A20;
      margin-bottom: 8px;
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .cart-total-label {
      font-size: 14px;
      color: #6B5A20;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .cart-total-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      color: #A07800;
    }

    .whatsapp-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      padding: 16px;
      background: #25D366;
      color: var(--white);
      border: none;
      cursor: pointer;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 1px;
      text-decoration: none;
      transition: all .3s;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    }

    .whatsapp-btn:hover {
      background: #1eb858;
      transform: translateY(-2px);
    }

    .whatsapp-icon {
      font-size: 22px;
    }

    /* ── WHY US ── */
    #why {
      background: #FFFDF0;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
    }

    .why-card {
      padding: 32px 24px;
      border: 1.5px solid rgba(180, 140, 0, 0.15);
      background: #FFFFFF;
      position: relative;
      box-shadow: 0 2px 16px rgba(180, 140, 0, 0.07);
      transition: all .3s;
    }

    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(180, 140, 0, 0.15);
      border-color: rgba(180, 140, 0, 0.35);
    }

    .why-icon {
      font-size: 40px;
      margin-bottom: 16px;
      display: block;
    }

    .why-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      letter-spacing: 2px;
      color: #8B6800;
      margin-bottom: 10px;
    }

    .why-text {
      font-size: 13px;
      color: #6B5A20;
      line-height: 1.7;
    }

    /* ── REVIEWS ── */
    #reviews {
      background: #F7F3E8;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }

    .review-card {
      background: #FFFFFF;
      border: 1.5px solid rgba(180, 140, 0, 0.15);
      padding: 28px;
      position: relative;
      box-shadow: 0 2px 12px rgba(180, 140, 0, 0.06);
      transition: all .3s;
    }

    .review-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(180, 140, 0, 0.13);
    }

    .review-stars {
      color: #C89800;
      font-size: 18px;
      margin-bottom: 14px;
      letter-spacing: 2px;
    }

    .review-text {
      font-size: 14px;
      color: #3A2E00;
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      background: #C89800;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px;
      color: #FFFFFF;
      clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    }

    .review-name {
      font-weight: 600;
      font-size: 14px;
      color: #1A1200;
    }

    .review-loc {
      font-size: 12px;
      color: #6B5A20;
    }

    /* ── FAQ ── */
    #faq {
      background: #FFFDF0;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 800px;
    }

    .faq-item {
      background: #FFFFFF;
      border: 1.5px solid rgba(180, 140, 0, 0.15);
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(180, 140, 0, 0.05);
    }

    .faq-q {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-weight: 600;
      font-size: 15px;
      transition: color .3s;
      gap: 16px;
      color: #1A1200;
    }

    .faq-q:hover {
      color: #9A7400;
    }

    .faq-arrow {
      font-size: 20px;
      color: #C89800;
      transition: transform .3s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-arrow {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s;
      padding: 0 24px;
      font-size: 14px;
      color: #6B5A20;
      line-height: 1.8;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 24px 20px;
    }

    /* ── CONTACT ── */
    #contact {
      background: #F7F3E8;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: #FFFFFF;
      border: 1.5px solid rgba(180, 140, 0, 0.15);
      text-decoration: none;
      color: #1A1200;
      transition: all .3s;
      box-shadow: 0 2px 10px rgba(180, 140, 0, 0.06);
    }

    .contact-item:hover {
      border-color: rgba(180, 140, 0, 0.5);
      color: #9A7400;
      box-shadow: 0 6px 20px rgba(180, 140, 0, 0.15);
      transform: translateY(-2px);
    }

    .contact-icon {
      font-size: 28px;
      flex-shrink: 0;
    }

    .contact-label {
      font-size: 11px;
      color: #7A6020;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .contact-value {
      font-weight: 600;
      font-size: 15px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-label {
      font-size: 12px;
      color: #7A6020;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .form-input,
    .form-textarea {
      background: #FFFFFF;
      border: 1.5px solid rgba(180, 140, 0, 0.2);
      color: #1A1200;
      padding: 14px 16px;
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color .3s;
      box-shadow: 0 1px 6px rgba(180, 140, 0, 0.05);
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: #C89800;
      box-shadow: 0 0 0 3px rgba(200, 152, 0, 0.1);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: #B0A070;
    }

    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }

    /* ── FOOTER ── */
    footer {
      /* background: #1A1200; */
      background: rgba(255, 252, 242, 0.97);
      border-top: 1px solid #fccf39;
      padding: 40px 5% 24px;
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-logo-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 4px;
      color: #FFFFFF;
    }

    .footer-logo-text span {
      color: #F5C800;
    }

    .footer-tagline {
      font-size: 13px;
      color: #C8B060;
      margin-top: 4px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(245, 200, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      text-decoration: none;
      color: #F0E0A0;
      transition: all .3s;
      clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    }

    .social-link:hover {
      background: #C89800;
      color: #1A1200;
    }

    .footer-bottom {
      border-top: 1px solid rgba(46, 39, 8, 0.15);
      padding-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: 12px;
      color: #A09050;
    }

    /* ── MOBILE MENU ── */
    .mobile-menu {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: rgba(255, 252, 242, 0.99);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid rgba(200, 152, 0, 0.3);
      padding: 20px 5%;
      display: flex;
      flex-direction: column;
      gap: 20px;
      z-index: 999;
      transform: translateY(-110%);
      transition: transform .3s;
      box-shadow: 0 8px 24px rgba(180, 140, 0, 0.12);
    }

    .mobile-menu.open {
      transform: translateY(0);
    }

    .mobile-menu a {
      color: #1A1200;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 8px 0;
      border-bottom: 1px solid rgba(180, 140, 0, 0.12);
      transition: color .3s;
    }

    .mobile-menu a:hover {
      color: #9A7400;
    }

    /* ── TOAST ── */
    .toast {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      background: #C89800;
      color: #FFFFFF;
      padding: 12px 28px;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1px;
      z-index: 9999;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      opacity: 0;
      transition: opacity .3s;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(200, 152, 0, 0.4);
    }

    .toast.show {
      opacity: 1;
    }

    /* ── ORDER CONFIRMATION MODAL ── */
    .order-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 8, 0, 0.6);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s;
    }

    .order-modal-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .order-modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.9);
      background: #FFFFFF;
      padding: 44px 32px 32px;
      max-width: 380px;
      width: 90%;
      text-align: center;
      z-index: 10001;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, transform .3s;
      clip-path: polygon(0 14px, 14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    }

    .order-modal.open {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -50%) scale(1);
    }

    .order-modal-icon {
      font-size: 44px;
      margin-bottom: 12px;
    }

    .order-modal-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 2px;
      color: #1A1200;
      margin-bottom: 12px;
    }

    .order-modal-text {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .order-modal-close {
      display: inline-block;
      width: 100%;
      text-align: center;
      padding: 14px;
      cursor: pointer;
      border: none;
    }

    /* ── DECORATIVE ── */
    .gold-line {
      height: 2px;
      background: linear-gradient(to right, transparent, #D4A200, transparent);
      margin: 0;
      opacity: 0.4;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    @media (max-width: 600px) {
      .hero {
        padding: 100px 5% 60px;
      }

      .hero-sparkle {
        font-size: 100px;
        opacity: 0.08;
      }

      .hero-stats {
        gap: 24px;
      }

      .cart-sidebar {
        width: 100vw;
      }
    }
  