
  :root {
    --cream: #fdf6ec;
    --warm-white: #fffbf5;
    --brown-light: #c9956a;
    --brown-mid: #8b5e3c;
    --brown-dark: #4a2c1a;
    --brown-deep: #2b1a0e;
    --gold: #c8973e;
    --gold-light: #e8c07a;
    --text-muted: #9a6e4f;
  }

  .nexora{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .nexora a {
    color: var(--brown-mid);
    font-weight: 500;
    text-decoration: none;
    margin-left: 4px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--warm-white);
    font-family: 'Jost', sans-serif;
    color: var(--brown-dark);
    min-height: 100vh;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
      radial-gradient(ellipse at 15% 15%, rgba(200,151,62,0.10) 0%, transparent 55%),
      radial-gradient(ellipse at 85% 85%, rgba(139,94,60,0.09) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
  }

  .page {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 52px 24px 110px;
  }

  /* HEADER */
  .header {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeDown 0.7s ease both;
  }

  .logo-ring {
    width: 140px;
    height: 140px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #F3E4C7;
    overflow: hidden;
    box-shadow:
      0 0 0 3px var(--gold),
      0 0 0 7px rgba(200,151,62,0.18),
      0 10px 40px rgba(74,44,26,0.28);
  }

  .logo-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding-left: 0.1rem;
  }

  .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--brown-dark);
  }

  .brand-tagline {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-top: 6px;
  }

  .ornament {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px auto 0;
    max-width: 260px;
  }

  .ornament-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  }

  .ornament span { color: var(--gold); font-size: 11px; letter-spacing: 4px; }

  /* TABS */
  .tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
    animation: fadeDown 0.6s 0.15s ease both;
    opacity: 0;
    animation-fill-mode: forwards;
  }

  .tab-btn {
    flex: 1;
    max-width: 210px;
    padding: 13px 20px;
    border-radius: 40px;
    border: 1.5px solid rgba(200,151,62,0.35);
    background: rgba(255,255,255,0.5);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .tab-btn .tab-icon { font-size: 17px; }

  .tab-btn.active {
    background: var(--brown-dark);
    border-color: var(--brown-dark);
    color: var(--gold-light);
    box-shadow: 0 4px 18px rgba(74,44,26,0.22);
  }

  .tab-btn:hover:not(.active) {
    background: rgba(255,255,255,0.9);
    border-color: var(--gold);
    color: var(--brown-mid);
  }

  /* PANELS */
  .panel { display: none; }
  .panel.active { display: block; animation: fadeUp 0.4s ease both; }

  /* SECTION LABEL */
  .section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .section-label-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .section-label-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown-dark);
    white-space: nowrap;
  }

  .section-label-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(201,149,106,0.5), transparent);
  }

  .subsection { margin-bottom: 28px; }

  /* SIZE CARDS */
  .size-visual {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .size-card {
    flex: 1;
    min-width: 90px;
    background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(253,246,236,0.9));
    border: 1px solid rgba(200,151,62,0.25);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.22s ease;
  }

  .size-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(139,94,60,0.12);
    transform: translateY(-3px);
  }

  .size-card .sz-weight {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown-dark);
  }

  .size-card .sz-label {
    font-size: 0.64rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 3px 0 10px;
    font-weight: 400;
  }

  .size-card .sz-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
  }

  /* FLAVOR TAGS */
  .flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 28px;
  }

  .flavor-tag {
    font-size: 0.72rem;
    padding: 5px 13px;
    border-radius: 20px;
    border: 1px solid rgba(201,149,106,0.35);
    color: var(--text-muted);
    background: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
    transition: all 0.18s;
  }

  .flavor-tag:hover {
    background: rgba(255,255,255,0.9);
    border-color: var(--gold);
    color: var(--brown-mid);
  }

  /* ADDON ROWS */
  .addon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 7px;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(201,149,106,0.15);
    font-size: 0.82rem;
    transition: background 0.18s;
  }

  .addon-row:hover { background: rgba(255,255,255,0.8); }
  .addon-row span:first-child { color: var(--brown-mid); font-weight: 400; }
  .addon-row span:last-child { color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.88rem; }

  /* BOX GRID */
  .box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .box-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(253,246,236,0.9));
    border: 1px solid rgba(200,151,62,0.25);
    border-radius: 16px;
    padding: 20px 14px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.22s ease;
  }

  .box-card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(139,94,60,0.13);
    transform: translateY(-3px);
  }

  .box-card.featured {
    border-color: rgba(200,151,62,0.5);
    background: linear-gradient(145deg, rgba(200,151,62,0.08), rgba(253,246,236,0.95));
  }

  .box-card .badge {
    position: absolute;
    top: 10px; right: 10px;
    background: var(--gold);
    color: white;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
  }

  .box-card .bc-emoji { font-size: 28px; margin-bottom: 8px; }

  .box-card .bc-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 3px;
  }

  .box-card .bc-count {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 10px;
  }

  .box-card .bc-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
  }

  /* ITEM ROWS (what's inside) */
  .item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 13px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(201,149,106,0.18);
    transition: all 0.2s;
  }

  .item:hover {
    background: rgba(255,255,255,0.95);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(139,94,60,0.09);
    border-color: rgba(200,151,62,0.38);
  }

  .item-emoji { font-size: 20px; flex-shrink: 0; }
  .item-name { font-size: 0.87rem; font-weight: 500; color: var(--brown-dark); }
  .item-desc { font-size: 0.73rem; font-weight: 300; color: var(--text-muted); margin-top: 2px; }

  /* NOTE */
  .note-box {
    background: linear-gradient(135deg, rgba(200,151,62,0.08), rgba(139,94,60,0.06));
    border: 1px solid rgba(200,151,62,0.28);
    border-radius: 16px;
    padding: 18px 22px;
    margin-top: 36px;
    text-align: center;
    animation: fadeUp 0.6s 0.5s ease both;
    opacity: 0;
    animation-fill-mode: forwards;
  }

  .note-box p {
    font-size: 0.77rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.9;
  }

  .note-box p strong { font-weight: 500; color: var(--brown-mid); }

  /* WHATSAPP */
  .wa-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 22px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: popIn 0.5s 0.9s cubic-bezier(0.34,1.56,0.64,1) both;
    opacity: 0;
    animation-fill-mode: forwards;
    z-index: 100;
  }

  .wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

  .wa-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: ripple 2s ease infinite;
  }

  .wa-btn svg { width: 30px; height: 30px; fill: white; }

  /* ANIMATIONS */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes popIn {
    from { opacity: 0; transform: scale(0.4); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes ripple {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
  }

  @media (max-width: 420px) {
    .box-grid { grid-template-columns: 1fr; }
    .size-visual { flex-direction: column; }
  }
