/* ============================================================
   NAPPAN — Design System Global
   ============================================================ */

:root {
  /* Tipografías - Sistema unificado */
  --font-display: 'Montserrat', sans-serif; /* Solo H1 — Sans-serif geométrica moderna */
  --font-sans: 'Inter', sans-serif; /* Base: H2, H3, Body, Labels, UI */

  /* Pesos disponibles en Inter */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Paleta principal */
  --yellow:  #FFD93D;
  --gold:    #DAA520;
  --orange:  #FF8C42;
  --brown:   #2D1B0E;
  --cream:   #FFF8ED;
  --dark:    #1A1008;

  /* Paleta extendida */
  --pink:        #FFB3C6;
  --purple:      #C084FC;
  --green:       #3D7A5A;
  --green-light: #A8E6CF;
  --red:         #FF6B6B;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ============================================================
   SISTEMA TIPOGRÁFICO UNIFICADO
   ============================================================ */

/* H1 - Títulos principales (Montserrat geométrica) */
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 10vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

/* H2 - Subtítulos de sección (Inter Bold) */
h2, .h2 {
  font-family: var(--font-sans);
  font-size: clamp(20px, 5vw, 32px);
  font-weight: var(--font-bold);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* H3 - Títulos de productos (Inter SemiBold) */
h3, .h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: var(--font-semibold);
  line-height: 1.4;
  letter-spacing: -0.3px;
}

/* Body Text - Texto de cuerpo (Inter Regular, máxima legibilidad) */
body, p, .body-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--font-regular);
  line-height: 1.6;
  letter-spacing: 0px;
}

/* Small Text - Descripciones y metadatos */
small, .small-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: var(--font-regular);
  line-height: 1.5;
  letter-spacing: 0px;
}

/* Labels - Etiquetas y inputs (Inter Medium) */
.label, label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: var(--font-medium);
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Prices - Números y precios (Inter Bold) */
.price, .amount, .total {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: var(--font-bold);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Button Text - Botones y acciones (Inter SemiBold) */
button, .button-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--font-semibold);
  line-height: 1.4;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ============================================================
   HOME (index.html)
   ============================================================ */
/* ===== HOME STYLES ===== */

body.page-home {
    --yellow: #FFD93D;
    --orange: #FF8C42;
    --brown: #2D1B0E;
    --cream: #FFF8ED;
    --green: #3D7A5A;
    --dark: #1A1008;
    --shadow: 0 12px 48px rgba(45,27,14,0.18);
  }

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

body.page-home {
    font-family: var(--font-sans);
    background: var(--dark);
    color: var(--cream);
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* HERO */
body.page-home #page-home .hero {
    min-height: 58vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 88px 24px 60px;
    position: relative;
    background: radial-gradient(ellipse at 50% 30%, rgba(255,217,61,0.12) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 80%, rgba(255,140,66,0.08) 0%, transparent 50%),
                var(--dark);
  }

body.page-home .hero-logo {
    width: min(320px, 72vw);
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
    animation: fadeUp 0.8s ease both;
  }

body.page-home #page-home .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(255,217,61,0.06) 0%, transparent 40%),
      radial-gradient(circle at 80% 20%, rgba(255,140,66,0.05) 0%, transparent 30%);
    pointer-events: none;
  }

body.page-home .hero-tag {
    display: inline-block;
    border: 1.5px solid rgba(255,217,61,0.4);
    color: var(--yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }

body.page-home .hero h1 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(42px, 10vw, 80px);
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 20px;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero h1 span { color: var(--yellow); }

body.page-home .hero p {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: var(--font-regular);
    color: rgba(255,248,237,0.75);
    max-width: 420px;
    line-height: 1.7;
    letter-spacing: 0.2px;
    margin-bottom: 56px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

body.page-home .scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,248,237,0.35);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
  }

body.page-home .scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,217,61,0.5), transparent);
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
  }

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

  /* SECTIONS */
body.page-home .sections-title {
    text-align: center;
    padding: 80px 24px 48px;
    position: relative;
    background: #F5F0E8;
  }

body.page-home .sections-title h2 {
    font-family: var(--font-sans);
    font-size: clamp(24px, 6vw, 40px);
    font-weight: var(--font-bold);
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--brown);
    margin-bottom: 12px;
  }

body.page-home .sections-title p {
    color: rgba(45,27,14,0.55);
    font-size: 14px;
    font-style: italic;
  }

body.page-home .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--yellow), transparent);
    margin: 20px auto;
  }

  /* CARDS GRID */
body.page-home .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px;
  }

body.page-home .section-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    text-decoration: none;
  }

  .section-card:hover { transform: scale(1.02); z-index: 2; }

body.page-home .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    filter: brightness(0.55) saturate(1.1);
  }

  .section-card:hover .card-bg { transform: scale(1.08); filter: brightness(0.45) saturate(1.2); }

  /* Individual card backgrounds */
body.page-home .card-lunchbox .card-bg {
    background-image: url('images/bg-card-lunchbox.jpg');
    background-size: cover;
    background-position: center;
  }
body.page-home .card-eventos .card-bg {
    background-image: url('images/nappan-stand.webp');
    background-size: cover;
    background-position: center;
  }
body.page-home .card-fitbar .card-bg {
    background-image: url('images/bg-card-fitbar.jpg');
    background-size: cover;
    background-position: center;
  }
body.page-home .card-nappanbox .card-bg {
    background-image: url('images/bg-card-nappanbox.jpg');
    background-size: cover;
    background-position: center top;
  }

body.page-home .card-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 80px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
    transition: transform 0.4s ease;
    z-index: 1;
  }

body.page-home .section-card:hover .card-emoji {
    transform: translate(-50%, -65%) scale(1.1);
  }

body.page-home .card-content {
    position: relative;
    z-index: 2;
    padding: 28px 24px;
    background: linear-gradient(to top, rgba(26,16,8,0.95) 0%, transparent 100%);
  }

body.page-home .card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 8px;
    opacity: 0.8;
  }

body.page-home .card-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 28px;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.2;
  }

body.page-home .card-desc {
    font-size: 13px;
    color: rgba(255,248,237,0.65);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
  }

body.page-home .card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #93e6f8;
    color: #1a1a1a;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
  }

  .card-cta:hover { background: #5dd9f0; transform: translateX(4px); }
  .card-cta .arrow { font-style: normal; transition: transform 0.2s; }
  .card-cta:hover .arrow { transform: translateX(4px); }

/* Lunch box card keeps original yellow CTA */
body.page-home .card-lunchbox .card-cta { background: var(--yellow); color: var(--brown); }
body.page-home .card-lunchbox .card-cta:hover { background: var(--orange); }

/* Fit bar card gets green CTA */
body.page-home .card-fitbar .card-cta { background: #A8E6CF; }
body.page-home .card-fitbar .card-cta:hover { background: #7DD4B0; }

/* Nappanbox card gets pink CTA */
body.page-home .card-nappanbox .card-cta { background: #FFB3C6; }
body.page-home .card-nappanbox .card-cta:hover { background: #FF8FAE; }

  /* COMING SOON BADGE */
body.page-home .coming-soon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,248,237,0.15);
    border: 1px solid rgba(255,248,237,0.25);
    backdrop-filter: blur(8px);
    color: var(--cream);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 3;
  }

  /* FOOTER */
body.page-home footer {
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid rgba(255,248,237,0.08);
    color: rgba(255,248,237,0.3);
    font-size: 12px;
    font-style: italic;
    letter-spacing: 1px;
  }

  footer span { color: var(--yellow); }

  @media (max-width: 600px) {
body.page-home .cards-grid {
      grid-template-columns: 1fr;
      gap: 3px;
      padding: 0 0 60px;
    }
    .section-card { min-height: 340px; border-radius: 0; }
  }

/* ============================================================
   LUNCH BOX (nappan-lunchbox.html)
   ============================================================ */

/* ===== LUNCHBOX STYLES ===== */

body.page-lunchbox {
    --yellow: #FFD93D;
    --orange: #FF8C42;
    --brown: #8B5E3C;
    --cream: #FFF8ED;
    --pink: #FFB3C6;
    --green: #A8E6CF;
    --red: #FF6B6B;
    --text: #2D1B0E;
    --card-bg: #FFFFFF;
    --shadow: 0 8px 32px rgba(45,27,14,0.12);
  }

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

body.page-lunchbox {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text);
    min-height: 100vh;
    padding-top: 130px;
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(255,217,61,0.25) 0%, transparent 40%),
      radial-gradient(circle at 90% 80%, rgba(255,140,66,0.2) 0%, transparent 40%),
      radial-gradient(circle at 50% 50%, rgba(255,179,198,0.1) 0%, transparent 60%);
  }

  /* HEADER — copia exacta del landing */
body.page-lunchbox header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 130px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: #000000;
  }

body.page-lunchbox .back-btn {
    justify-self: start;
  }

body.page-lunchbox .cart-btn {
    justify-self: end;
  }

body.page-lunchbox .logo-img {
    height: 120px;
    width: auto;
    mix-blend-mode: normal;
    border-radius: 0;
    display: block;
    filter: none;
  }

body.page-lunchbox .cart-btn {
    background: var(--brown);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
  }

  .cart-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(45,27,14,0.3); }

body.page-lunchbox .cart-badge {
    background: var(--red);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop 0.3s ease;
  }

  @keyframes pop { 0% { transform: scale(0.5); } 60% { transform: scale(1.3); } 100% { transform: scale(1); } }

  /* HERO */
body.page-lunchbox .hero {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

body.page-lunchbox .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 52px 24px 48px;
  }

body.page-lunchbox .hero-content h1 {
    font-family: var(--font-display); font-style: italic;
    font-size: clamp(36px, 9vw, 58px);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 3px 16px rgba(0,0,0,0.5);
  }

body.page-lunchbox .hero-content h1 span {
    color: var(--yellow);
  }

body.page-lunchbox .hero-content h1 strong {
    font-size: 0.75em;
    display: block;
  }

body.page-lunchbox .hero-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    max-width: 380px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    line-height: 1.6;
  }

  /* MENU GRID */
body.page-lunchbox .section-title {
    font-family: var(--font-display); font-style: italic;
    font-size: 26px;
    color: var(--brown);
    text-align: center;
    margin: 8px 0 20px;
  }

body.page-lunchbox .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 0 20px 32px;
    max-width: 900px;
    margin: 0 auto;
  }

body.page-lunchbox .product-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 3px solid transparent;
    position: relative;
  }

body.page-lunchbox .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(45,27,14,0.18);
    border-color: var(--yellow);
  }

body.page-lunchbox .card-header {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    padding: 24px 20px 16px;
    text-align: center;
    position: relative;
  }

body.page-lunchbox .card-header.box2 {
    background: linear-gradient(135deg, #FFB3C6 0%, #FF8C42 100%);
  }

body.page-lunchbox .price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--brown);
    color: white;
    font-family: var(--font-display); font-style: italic;
    font-size: 20px;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
  }

  .product-emoji { font-size: 64px; display: block; margin-bottom: 8px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }

body.page-lunchbox .product-name {
    font-family: var(--font-display); font-style: italic;
    font-size: 22px;
    color: var(--brown);
  }

  .card-body { padding: 20px; }

body.page-lunchbox .items-list {
    list-style: none;
    margin-bottom: 16px;
  }

body.page-lunchbox .items-list li {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    padding: 5px 0;
    border-bottom: 1px dashed rgba(139,94,60,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .items-list li:last-child { border-bottom: none; }

  /* EXTRAS */
  .extras-section { margin-top: 12px; }

body.page-lunchbox .extras-title {
    font-size: 12px;
    font-weight: 900;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

body.page-lunchbox .extra-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
  }

  .extra-option:hover { border-color: var(--orange); }
  .extra-option.selected { border-color: var(--orange); background: rgba(255,140,66,0.1); }

  .extra-option input[type="checkbox"] { display: none; }

body.page-lunchbox .check-box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2.5px solid var(--orange);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
    color: transparent;
  }

  .extra-option.selected .check-box { background: var(--orange); color: white; }

  .extra-label { font-size: 13px; font-weight: 700; flex: 1; color: var(--dark); }
  .extra-price { font-size: 13px; font-weight: 900; color: var(--orange); }

  /* PANCAKE ART SELECTOR */
  .art-selector { margin: 12px 0; }

body.page-lunchbox .art-options {
    display: flex;
    gap: 8px;
  }

body.page-lunchbox .art-opt {
    flex: 1;
    text-align: center;
    padding: 10px 6px;
    border-radius: 14px;
    border: 2.5px solid rgba(139,94,60,0.2);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--cream);
  }

  body.page-lunchbox .art-opt:hover { border-color: var(--orange); }
  body.page-lunchbox .art-opt.active { border-color: var(--orange); background: rgba(255,140,66,0.12); }
  body.page-lunchbox .art-opt.locked { opacity: 0.35; pointer-events: none; position: relative; }
  body.page-lunchbox .art-opt .art-emoji { font-size: 28px; display: block; }
  body.page-lunchbox .art-opt .art-name { font-size: 11px; font-weight: 800; color: var(--brown); margin-top: 4px; }

  /* QTY + ADD */
body.page-lunchbox .card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  }

body.page-lunchbox .qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--cream);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(139,94,60,0.2);
  }

body.page-lunchbox .qty-btn {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
  }

  .qty-btn:hover { background: var(--yellow); }
  .qty-val { font-size: 16px; font-weight: 900; color: var(--text); min-width: 28px; text-align: center; }

body.page-lunchbox .add-btn {
    width: 50%;
    margin-left: auto;
    background: linear-gradient(135deg, var(--orange), var(--red));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 16px;
    font-family: var(--font-sans);
    font-weight: 900;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .add-btn:hover { transform: scale(1.04); box-shadow: 0 6px 16px rgba(255,107,107,0.4); }
  .add-btn:active { transform: scale(0.97); }

  /* DATE SECTION */
body.page-lunchbox .date-section {
    max-width: 900px;
    margin: 0 auto 32px;
    padding: 0 20px;
  }

body.page-lunchbox .date-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
  }

  .date-field { flex: 1; min-width: 200px; }

body.page-lunchbox .date-field label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

body.page-lunchbox .date-field input, body.page-lunchbox .date-field textarea, body.page-lunchbox .date-field select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 2px solid rgba(139,94,60,0.2);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
  }

body.page-lunchbox .date-field input:focus, body.page-lunchbox .date-field textarea:focus, body.page-lunchbox .date-field select:focus {
    border-color: var(--orange);
  }

  .date-field textarea { resize: vertical; min-height: 72px; }

  /* CART SIDEBAR */
body.page-lunchbox .cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45,27,14,0.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
  }

  body.page-lunchbox .cart-overlay.open { opacity: 1; pointer-events: all; }

body.page-lunchbox .cart-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(420px, 100vw);
    background: white;
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(45,27,14,0.2);
  }

  body.page-lunchbox .cart-panel.open { transform: translateX(0); }

body.page-lunchbox .cart-top {
    background: var(--yellow);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

body.page-lunchbox .cart-top h2 {
    font-family: var(--font-display); font-style: italic;
    font-size: 24px;
    color: var(--brown);
  }

body.page-lunchbox .close-btn {
    background: var(--brown);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
  }

  .close-btn:hover { transform: rotate(90deg); }

body.page-lunchbox .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
  }

body.page-lunchbox .cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--brown);
    opacity: 0.5;
  }

  .cart-empty .empty-icon { font-size: 56px; display: block; margin-bottom: 12px; }
  .cart-empty p { font-weight: 700; font-size: 15px; }

body.page-lunchbox .cart-item {
    background: var(--cream);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    animation: slideIn 0.3s ease;
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
  }

body.page-lunchbox .item-tag {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .item-details { flex: 1; }

body.page-lunchbox .item-name {
    font-weight: 900;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 3px;
  }

body.page-lunchbox .item-meta {
    font-size: 11px;
    color: var(--brown);
    opacity: 0.7;
    font-weight: 600;
    margin-bottom: 6px;
  }

body.page-lunchbox .item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

body.page-lunchbox .item-price {
    font-family: var(--font-display); font-style: italic;
    font-size: 18px;
    color: var(--orange);
  }

body.page-lunchbox .remove-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--red);
    opacity: 0.6;
    transition: opacity 0.2s, transform 0.2s;
  }

  .remove-btn:hover { opacity: 1; transform: scale(1.2); }

body.page-lunchbox .cart-footer {
    padding: 20px;
    border-top: 2px dashed rgba(139,94,60,0.15);
  }

body.page-lunchbox .order-summary {
    background: var(--cream);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brown);
    line-height: 1.8;
    border: 2px dashed rgba(139,94,60,0.2);
  }

body.page-lunchbox .order-summary .summary-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

body.page-lunchbox .order-summary .summary-empty {
    opacity: 0.45;
    font-style: italic;
    font-size: 12px;
  }

body.page-lunchbox .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }

body.page-lunchbox .total-label {
    font-family: var(--font-display); font-style: italic;
    font-size: 22px;
    color: var(--brown);
  }

body.page-lunchbox .total-amount {
    font-family: var(--font-display); font-style: italic;
    font-size: 30px;
    color: var(--orange);
  }

body.page-lunchbox .whatsapp-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 18px;
    padding: 16px;
    font-family: var(--font-display); font-style: italic;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  }

  .whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }
  .whatsapp-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

  .wa-icon { font-size: 24px; }

  /* CUSTOM RADIO BUTTONS (Lunch Box 1 & 2 - Fruta/Gelatina) */
  body.page-lunchbox input[name="fruitType1"],
  body.page-lunchbox input[name="fruitType2"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #8B5E3C;
    border-radius: 3px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s, border-color 0.2s;
  }

  body.page-lunchbox input[name="fruitType1"]:checked,
  body.page-lunchbox input[name="fruitType2"]:checked {
    background: #8B5E3C;
    border-color: #8B5E3C;
  }

  body.page-lunchbox input[name="fruitType1"]:checked::before,
  body.page-lunchbox input[name="fruitType2"]:checked::before {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: block;
  }

  /* TOAST */
body.page-lunchbox .toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--brown);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    white-space: nowrap;
  }

  body.page-lunchbox .toast.show { transform: translateX(-50%) translateY(0); }

  /* BIRTHDAY NOTE */
body.page-lunchbox .birthday-banner {
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    border-radius: 20px;
    padding: 16px 20px;
    margin: 0 20px 24px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .birthday-banner .b-icon { font-size: 36px; flex-shrink: 0; }
  .birthday-banner p { font-size: 13.5px; font-weight: 700; color: var(--brown); line-height: 1.5; }
  .birthday-banner strong { font-weight: 900; }

body.page-lunchbox .lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,248,237,0.75);
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(3px);
  }

body.page-lunchbox .lock-msg {
    background: var(--brown);
    color: white;
    border-radius: 16px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    line-height: 1.7;
    box-shadow: 0 8px 24px rgba(45,27,14,0.25);
  }

  @media (max-width: 500px) {
    .menu-grid { padding: 0 12px 24px; }
    .date-section { padding: 0 12px; }
    .hero { padding: 28px 16px 16px; }
  }


/* BACK BUTTON */
body.page-lunchbox .back-btn {
  background: none;
  border: none;
  color: rgba(255,248,237,0.7);
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50px;
  transition: color 0.2s;
  justify-self: start;
}
body.page-lunchbox .back-btn:hover { color: var(--cream); transform: translateX(-3px); }


/* ============================================================
   NAPPAN BOX (nappan-box.html)
   ============================================================ */

/* BACK BUTTON */
body.page-nappanbox .back-btn {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  background: rgba(45,27,14,0.9);
  color: #FFF8ED;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,248,237,0.15);
  transition: background 0.2s, transform 0.2s;
}
.back-btn:hover { background: rgba(45,27,14,1); transform: translateX(-3px); }

/* ===== NAPPAN BOX STYLES ===== */

body.page-nappanbox {
    --yellow: #FFD93D;
    --orange: #FF8C42;
    --brown: #2D1B0E;
    --cream: #FFF8ED;
    --dark: #1A1008;
    --purple: #C084FC;
    --pink: #FFB3C6;
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  body { font-family:'Lora',serif; background:var(--dark); color:var(--cream); min-height:100vh; }

  /* HERO */
body.page-nappanbox .nb-hero {
    text-align:center;
    padding: 80px 24px 48px;
    background: radial-gradient(ellipse at 50% 0%, rgba(192,132,252,0.15) 0%, transparent 60%), var(--dark);
    position: relative;
  }
body.page-nappanbox .nb-hero::after {
    content:'';
    position:absolute;
    bottom:0; left:0; right:0;
    height:1px;
    background: linear-gradient(to right, transparent, rgba(192,132,252,0.3), transparent);
  }
body.page-nappanbox .nb-tag {
    display:inline-block;
    border:1.5px solid rgba(192,132,252,0.4);
    color:var(--purple);
    font-size:11px; font-weight:700; letter-spacing:4px;
    text-transform:uppercase; padding:6px 18px;
    border-radius:50px; margin-bottom:20px;
  }
body.page-nappanbox .nb-hero h1 {
    font-family:'Montserrat',serif; font-style:italic;
    font-size:clamp(36px,9vw,64px); line-height:1.05;
    color:var(--cream); margin-bottom:12px;
  }
  .nb-hero h1 span { color:var(--purple); }
body.page-nappanbox .nb-hero p {
    font-size:15px; color:rgba(255,248,237,0.6);
    font-style:italic; max-width:360px; margin:0 auto; line-height:1.8;
  }

  /* TABS */
body.page-nappanbox .tabs {
    display:flex; gap:0;
    max-width:600px; margin:40px auto 0;
    border-radius:16px; overflow:hidden;
    border:1px solid rgba(255,248,237,0.1);
  }
body.page-nappanbox .tab-btn {
    flex:1; padding:14px 20px;
    background:rgba(255,255,255,0.04);
    border:none; cursor:pointer;
    font-family:'Montserrat',serif; font-style:italic;
    font-size:16px; color:rgba(255,248,237,0.45);
    transition:all 0.25s;
  }
body.page-nappanbox .tab-btn.active {
    background:rgba(192,132,252,0.15);
    color:var(--purple);
    border-bottom:2px solid var(--purple);
  }
  .tab-btn:hover:not(.active) { color:var(--cream); background:rgba(255,255,255,0.07); }

  /* CONTENT PANELS */
  .panel { display:none; padding:40px 20px 60px; max-width:860px; margin:0 auto; }
  .panel.active { display:block; }

  /* GALLERY */
body.page-nappanbox .gallery {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:12px; margin-bottom:40px;
  }
body.page-nappanbox .gallery-img {
    border-radius:16px; overflow:hidden;
    aspect-ratio:1/1;
    border:1px solid rgba(255,255,255,0.08);
    transition:transform 0.3s;
  }
  .gallery-img:hover { transform:scale(1.03); }
  .gallery-img img { width:100%; height:100%; object-fit:cover; }

  /* PRICE CARD */
body.page-nappanbox .price-card {
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(192,132,252,0.2);
    border-radius:24px; padding:28px;
    margin-bottom:32px;
    display:flex; flex-wrap:wrap; gap:20px; align-items:flex-start;
  }
  .price-card.premium { border-color:rgba(255,217,61,0.3); }
  .price-info { flex:1; min-width:200px; }
body.page-nappanbox .price-name {
    font-family:'Montserrat',serif; font-style:italic;
    font-size:26px; color:var(--cream); margin-bottom:8px;
  }
body.page-nappanbox .price-amount {
    font-family:'Montserrat',serif; font-style:italic;
    font-size:44px; color:var(--purple); line-height:1;
    margin-bottom:16px;
  }
  .price-card.premium .price-amount { color:var(--yellow); }
  .price-includes { list-style:none; }
body.page-nappanbox .price-includes li {
    font-size:13px; color:rgba(255,248,237,0.7);
    padding:5px 0; border-bottom:1px solid rgba(255,255,255,0.06);
    display:flex; gap:10px; align-items:center;
  }
  .price-includes li:last-child { border:none; }
body.page-nappanbox .price-extra {
    font-size:12px; color:var(--orange); font-weight:700;
    font-style:italic; margin-top:12px;
  }

  /* FORM */
body.page-nappanbox .form-section {
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px; padding:28px;
  }
body.page-nappanbox .form-title {
    font-family:'Montserrat',serif; font-style:italic;
    font-size:22px; color:var(--cream); margin-bottom:24px;
    display:flex; align-items:center; gap:10px;
  }
  .form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .form-field { display:flex; flex-direction:column; gap:6px; }
  .form-field.full { grid-column:1/-1; }
body.page-nappanbox .form-field label {
    font-size:11px; font-weight:700; letter-spacing:2px;
    text-transform:uppercase; color:var(--purple); opacity:0.8;
  }
  .form-field.premium label { color:var(--yellow); opacity:0.8; }
body.page-nappanbox .form-field input, body.page-nappanbox .form-field textarea, body.page-nappanbox .form-field select {
    background:rgba(255,255,255,0.05);
    border:1.5px solid rgba(255,255,255,0.1);
    border-radius:12px; padding:16px 16px;
    font-family:var(--font-sans); font-size:14px;
    line-height: 1.5;
    color:var(--cream); outline:none;
    transition:border-color 0.2s;
  }
body.page-nappanbox .form-field input:focus, body.page-nappanbox .form-field textarea:focus, body.page-nappanbox .form-field select:focus {
    border-color:var(--purple);
  }
body.page-nappanbox .form-field.premium input:focus, body.page-nappanbox .form-field.premium textarea:focus {
    border-color:var(--yellow);
  }
  .form-field textarea { resize:vertical; min-height:90px; }
  .form-field input[type="date"] { color-scheme:dark; }

  /* EXTRAS */
body.page-nappanbox .extras-row {
    display:flex; align-items:center; gap:14px;
    background:rgba(255,255,255,0.04);
    border-radius:14px; padding:14px 16px;
    margin-top:16px;
    border:1.5px solid transparent;
    cursor:pointer; transition:border-color 0.2s, background 0.2s;
  }
  .extras-row.selected { border-color:var(--orange); background:rgba(255,140,66,0.08); }
body.page-nappanbox .check-sq {
    width:22px; height:22px; border-radius:7px;
    border:2px solid rgba(255,255,255,0.2);
    display:flex; align-items:center; justify-content:center;
    font-size:13px; flex-shrink:0; transition:all 0.2s;
    color:white;
  }
  .extras-row.selected .check-sq { background:var(--orange); border-color:var(--orange); }
  .extras-label { flex:1; font-size:13px; font-style:italic; color:rgba(255,248,237,0.8); }
  .extras-price { font-family: var(--font-sans); font-size: 16px; font-weight: var(--font-bold); color: var(--orange); }

  /* EXTRA QTY */
body.page-nappanbox .qty-row {
    display:none;
    align-items:center;
    gap:12px;
    margin-top:10px;
  }
  body.page-nappanbox .qty-row.show { display:flex; }
  .qty-label { font-size:12px; color:rgba(255,248,237,0.5); font-style:italic; }
  .qty-ctrl { display:flex; align-items:center; gap:0; background:rgba(255,255,255,0.06); border-radius:50px; overflow:hidden; }
  .qty-ctrl button { background:none; border:none; color:var(--cream); font-size:18px; font-weight:900; width:36px; height:36px; cursor:pointer; transition:background 0.15s; }
  .qty-ctrl button:hover { background:rgba(255,255,255,0.1); }
  .qty-ctrl span { font-size:15px; font-weight:700; min-width:30px; text-align:center; }

  /* NOTES */
body.page-nappanbox .note-box {
    background:rgba(255,217,61,0.06);
    border:1px solid rgba(255,217,61,0.2);
    border-radius:14px; padding:14px 18px;
    margin-top:16px; font-size:12px;
    color:rgba(255,248,237,0.55); font-style:italic; line-height:1.8;
  }

  /* SUBMIT BTN */
body.page-nappanbox .submit-btn {
    width:100%; margin-top:24px;
    background:linear-gradient(135deg,#25D366,#128C7E);
    color:white; border:none; border-radius:18px;
    padding:18px; font-family:'Montserrat',serif;
    font-style:italic; font-size:20px; cursor:pointer;
    display:flex; align-items:center; justify-content:center; gap:10px;
    transition:transform 0.2s, box-shadow 0.2s;
    box-shadow:0 6px 20px rgba(37,211,102,0.35);
  }
  .submit-btn:hover { transform:translateY(-3px); box-shadow:0 10px 28px rgba(37,211,102,0.45); }

  /* TOAST */
body.page-nappanbox .nb-toast {
    position:fixed; bottom:24px; left:50%;
    transform:translateX(-50%) translateY(80px);
    background:var(--brown); color:var(--cream);
    padding:12px 24px; border-radius:50px;
    font-weight:700; font-size:14px; z-index:9999;
    transition:transform 0.3s; white-space:nowrap;
    font-style:italic;
  }
  .nb-toast.show { transform:translateX(-50%) translateY(0); }

  @media(max-width:600px) {
    .form-grid { grid-template-columns:1fr; }
    .gallery { grid-template-columns:repeat(2,1fr); }
  }



/* ============================================================
   PROTEIN FIT BAR (nappan-fitbar.html)
   ============================================================ */

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

body.page-fitbar {
      font-family: var(--font-sans);
      background: #ffffff;
      color: #1a1a1a;
      line-height: 1.6;
    }

    /* HEADER */
body.page-fitbar header {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: white;
      padding: 16px 20px;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

body.page-fitbar .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }

body.page-fitbar .back-btn {
      background: rgba(218, 165, 32, 0.2);
      color: #DAA520;
      border: 1px solid #DAA520;
      padding: 8px 12px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 18px;
      transition: all 0.3s ease;
    }

body.page-fitbar .back-btn:hover {
      background: #DAA520;
      color: #1a1a1a;
    }

body.page-fitbar header h2 {
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 700;
      flex: 1;
      text-align: center;
    }

body.page-fitbar .spacer {
      width: 46px;
    }

    /* MAIN CONTENT */
body.page-fitbar main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* HERO SECTION */
body.page-fitbar .pfb-hero {
      width: 100%;
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: white;
      border-bottom: 3px solid #DAA520;
      margin: 0 0 40px 0;
    }

body.page-fitbar .pfb-tag {
      font-size: 13px;
      letter-spacing: 2px;
      color: #DAA520;
      text-transform: uppercase;
      margin-bottom: 15px;
      font-style: italic;
    }

body.page-fitbar .pfb-hero-logo {
      width: clamp(280px, 65vw, 480px);
      height: auto;
      display: block;
      margin: 8px auto 0;
    }

body.page-fitbar .pfb-hero p {
      font-size: 16px;
      color: #ccc;
      margin-top: 15px;
      font-style: italic;
    }

body.page-fitbar .pfb-hero-note {
      font-size: 14px;
      color: #FFD93D;
      margin-top: 12px;
      font-weight: 600;
      font-style: normal;
    }

    /* SECTION HEADERS */
body.page-fitbar .section-header {
      text-align: center;
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 2px solid #f0f0f0;
    }

body.page-fitbar .section-icon {
      font-size: 40px;
      display: block;
      margin-bottom: 15px;
    }

body.page-fitbar .section-header h2 {
      font-family: var(--font-sans);
      font-size: 32px;
      font-weight: var(--font-bold);
      line-height: 1.3;
      letter-spacing: -0.5px;
      margin: 0;
      color: #1a1a1a;
    }

body.page-fitbar .section-subtitle {
      font-size: 14px;
      color: #888;
      margin-top: 8px;
      font-style: italic;
      letter-spacing: 0.5px;
    }

    /* PRODUCT SECTION */
body.page-fitbar .product-section {
      margin-bottom: 50px;
      padding: 0 0px;
    }

    /* PRODUCTS GRID */
body.page-fitbar .products-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

    @media (min-width: 768px) {
body.page-fitbar .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
body.page-fitbar .products-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* PRODUCT CARD */
body.page-fitbar .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      border: 1px solid #f0f0f0;
    }

body.page-fitbar .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

body.page-fitbar .product-image {
      height: 420px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: white;
    }

body.page-fitbar .product-image.img-cold-protein-latte { background-image: url('images/cold-protein-latte.webp'); background-size: cover; background-position: center; }
body.page-fitbar .product-image.img-cold-brew          { background-image: url('images/cold-brew.webp'); background-size: cover; background-position: center; }
body.page-fitbar .product-image.img-black-coffee       { background-image: url('images/black-coffee.webp'); background-size: cover; background-position: center; }
body.page-fitbar .product-image.img-power-pancakes     { background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%); }
body.page-fitbar .product-image.img-protein-minis      { background-image: url('images/Protein Minipancakes.webp'); background-size: cover; background-position: center; }

body.page-fitbar .field-full { grid-column: 1 / -1; }

body.page-fitbar .product-img {
      height: 100%;
      width: 100%;
      object-fit: contain;
      object-position: center;
    }

body.page-fitbar .product-info {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

body.page-fitbar .product-info h3 {
      font-family: var(--font-sans);
      font-size: 18px;
      font-weight: var(--font-semibold);
      line-height: 1.4;
      letter-spacing: -0.3px;
      margin: 0 0 8px 0;
      color: #1a1a1a;
    }

body.page-fitbar .product-desc {
      font-size: 13px;
      color: #888;
      margin: 0 0 12px 0;
      line-height: 1.4;
      font-style: italic;
    }

body.page-fitbar .product-price {
      font-family: var(--font-sans);
      font-size: 22px;
      font-weight: var(--font-bold);
      line-height: 1.2;
      letter-spacing: -0.5px;
      color: #DAA520;
      margin: 10px 0;
    }

body.page-fitbar .product-note {
      font-size: 12px;
      color: #DAA520;
      margin: 8px 0 0 0;
    }

body.page-fitbar .product-footer {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-top: auto;
    }

body.page-fitbar .qty-input {
      width: 60px;
      padding: 8px 10px;
      border: 2px solid #DAA520;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      font-family: var(--font-sans);
      color: #1a1a1a;
    }

body.page-fitbar .qty-input:focus {
      outline: none;
      border-color: #1a1a1a;
      box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
    }

body.page-fitbar .add-btn {
      flex: 1;
      padding: 12px 16px;
      background: #1a1a1a;
      color: white;
      border: none;
      border-radius: 8px;
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

body.page-fitbar .add-btn:hover {
      background: #DAA520;
      color: #1a1a1a;
    }

body.page-fitbar .add-btn:active {
      transform: scale(0.98);
    }

    /* COMBOS SECTION */
body.page-fitbar .combos-section {
      background: #f9f9f9;
      padding: 40px 15px;
      margin: 50px -15px 0 -15px;
      border-top: 3px solid #DAA520;
    }

body.page-fitbar .combos-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    @media (min-width: 768px) {
body.page-fitbar .combos-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* COMBO CARD */
body.page-fitbar .combo-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      border: 3px solid transparent;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

body.page-fitbar .combo-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

body.page-fitbar .combo-fit {
      border-color: #C7A17A;
    }

body.page-fitbar .combo-fit:hover {
      background: #FFF8F0;
    }

body.page-fitbar .combo-shots {
      border-color: #7BC043;
    }

body.page-fitbar .combo-shots:hover {
      background: #F0FFF0;
    }

body.page-fitbar .combo-icon {
      font-size: 48px;
      margin-bottom: 15px;
    }

body.page-fitbar .combo-card h3 {
      font-family: var(--font-sans);
      font-size: 24px;
      font-weight: var(--font-bold);
      line-height: 1.3;
      letter-spacing: -0.5px;
      margin: 0 0 12px 0;
      color: #1a1a1a;
    }

body.page-fitbar .combo-items {
      font-size: 14px;
      color: #888;
      margin: 0 0 15px 0;
      line-height: 1.6;
    }

body.page-fitbar .combo-price {
      font-family: var(--font-sans);
      font-size: 32px;
      font-weight: var(--font-extrabold);
      line-height: 1.2;
      letter-spacing: -0.5px;
      color: #DAA520;
      margin: 15px 0;
    }

body.page-fitbar .combo-btn {
      margin-top: 0;
      width: auto;
    }

    /* ORDER SUMMARY */
body.page-fitbar .order-summary {
      margin: 50px 0;
      padding: 30px;
      background: #f9f9f9;
      border-radius: 12px;
      border-left: 5px solid #DAA520;
    }

body.page-fitbar .summary-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

body.page-fitbar .summary-title-with-note {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

body.page-fitbar .summary-header h2 {
      font-family: var(--font-display);
      font-size: 24px;
      margin: 0;
      color: #1a1a1a;
    }

body.page-fitbar .cart-service-note {
      font-size: 14px;
      color: #1a1a1a;
      font-weight: 600;
      margin: 0;
      padding: 0;
      background: none;
    }

body.page-fitbar .clear-cart-btn {
      display: none;
      padding: 8px 16px;
      background: #ff6b6b;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

body.page-fitbar .clear-cart-btn:hover {
      background: #ff5252;
    }

body.page-fitbar .cart-items {
      margin-bottom: 20px;
      max-height: 400px;
      overflow-y: auto;
    }

body.page-fitbar .empty-cart {
      text-align: center;
      color: #888;
      font-style: italic;
      padding: 20px;
    }

body.page-fitbar .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #e0e0e0;
    }

body.page-fitbar .cart-item:last-child {
      border-bottom: none;
    }

body.page-fitbar .cart-item-name {
      font-weight: 600;
      color: #1a1a1a;
    }

body.page-fitbar .cart-item-price {
      color: #DAA520;
      font-weight: 600;
    }

body.page-fitbar .cart-item-remove {
      background: #ff6b6b;
      color: white;
      border: none;
      border-radius: 4px;
      padding: 4px 8px;
      cursor: pointer;
      font-size: 12px;
      margin-left: 10px;
      transition: all 0.3s ease;
    }

body.page-fitbar .cart-item-remove:hover {
      background: #ff5252;
    }

body.page-fitbar .cart-item-thumbnail {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 2px solid #DAA520;
      object-fit: cover;
      object-position: center;
      flex-shrink: 0;
    }

body.page-fitbar .cart-total {
      display: flex;
      justify-content: space-between;
      padding-top: 15px;
      border-top: 2px solid #DAA520;
      font-family: var(--font-display);
      font-size: 24px;
      font-weight: 700;
      color: #1a1a1a;
    }

body.page-fitbar .cart-total span:last-child {
      color: #DAA520;
    }

    /* SECTION TITLE */
body.page-fitbar .section-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      margin: 40px 0 20px 0;
      color: #1a1a1a;
    }

    /* DATE SECTION */
body.page-fitbar .date-section {
      padding: 0 0px 30px 0px;
    }

body.page-fitbar .date-card {
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    @media (min-width: 768px) {
body.page-fitbar .date-card {
        grid-template-columns: repeat(2, 1fr);
      }
    }

body.page-fitbar .date-field {
      display: flex;
      flex-direction: column;
    }

body.page-fitbar .date-field label {
      font-weight: 600;
      margin-bottom: 8px;
      color: #1a1a1a;
      font-size: 14px;
    }

    .date-field input,
body.page-fitbar .date-field textarea {
      padding: 12px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-family: var(--font-sans);
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .date-field input:focus,
body.page-fitbar .date-field textarea:focus {
      outline: none;
      border-color: #DAA520;
      box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
    }

body.page-fitbar .date-field textarea {
      min-height: 100px;
      resize: vertical;
    }

    /* SUBMIT BUTTON */
body.page-fitbar .submit-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: white;
      border: none;
      border-radius: 8px;
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 40px 0;
    }

body.page-fitbar .submit-btn:hover {
      background: linear-gradient(135deg, #DAA520 0%, #F0E68C 100%);
      color: #1a1a1a;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

body.page-fitbar .submit-btn:active {
      transform: translateY(0);
    }

    /* TOAST */
body.page-fitbar .pfb-toast {
      position: fixed;
      bottom: -100px;
      left: 50%;
      transform: translateX(-50%);
      background: #1a1a1a;
      color: white;
      padding: 16px 24px;
      border-radius: 8px;
      font-size: 14px;
      z-index: 9999;
      transition: bottom 0.3s ease;
      max-width: 90%;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

body.page-fitbar .pfb-toast.show {
      bottom: 20px;
    }

body.page-fitbar .pfb-toast.success {
      background: #4CAF50;
    }

body.page-fitbar .pfb-toast.warning {
      background: #FF9800;
    }

body.page-fitbar .pfb-toast.error {
      background: #f44336;
    }

body.page-fitbar .pfb-toast.info {
      background: #2196F3;
    }

    /* RESPONSIVE */
    @media (max-width: 480px) {
body.page-fitbar .pfb-hero h1 {
        font-size: 36px;
      }

body.page-fitbar .pfb-hero h1 span {
        font-size: 28px;
      }

body.page-fitbar .section-header h2 {
        font-size: 28px;
      }

body.page-fitbar .product-info h3 {
        font-size: 18px;
      }

body.page-fitbar .combo-card h3 {
        font-size: 24px;
      }

body.page-fitbar .combo-price {
        font-size: 32px;
      }
    }
  /* ===== OPTION SELECT FIX ===== */

.option {
  cursor: pointer;
  border: 1px solid #ccc;
  padding: 10px;
}

.option.selected {
  border: 2px solid #FFD93D;
  background: #fff3c4;
}
/* Estilo para la opción seleccionada */
.design-option.selected {
    border: 3px solid var(--orange) !important;
    background-color: var(--cream);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Asegurar que el modal del carrito sea visible cuando se activa */
.cart-modal.active {
    display: flex !important; /* O 'block', dependiendo de tu diseño */
    opacity: 1;
}

/* ============================================================
   NAPPAN CHATBOT — Estilos globales
   ============================================================ */

#chatbot-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
  transition: all 0.3s ease;
  color: white;
}

#chatbot-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.4);
}

#chatbot-bubble.active {
  background: var(--dark);
  color: var(--gold);
}

#chatbot-bubble svg {
  stroke-width: 2.5;
}

#chatbot-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 360px;
  height: 520px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  z-index: 9998;
}

#chatbot-widget.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 12px 12px 0 0;
  border-bottom: 2px solid var(--gold);
}

.chat-header h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  font-family: var(--font-sans);
}

#close-chat {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

#close-chat:hover {
  color: var(--gold);
}

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 8px;
  max-width: 85%;
  word-wrap: break-word;
}

.chat-user {
  align-self: flex-end;
  background: var(--gold);
  color: var(--dark);
  border-radius: 12px 4px 8px 8px;
}

.chat-bot {
  align-self: flex-start;
  background: #F5F5F5;
  color: var(--dark);
  border-radius: 4px 12px 8px 8px;
}

.quick-replies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.quick-reply-btn {
  padding: 10px 12px;
  background: #F5F5F5;
  border: 1px solid #DDD;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.quick-reply-btn:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: #F9F9F9;
  border-top: 1px solid #EEE;
  border-radius: 0 0 12px 12px;
}

#chat-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #DDD;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

#chat-input:focus {
  border-color: var(--gold);
}

#send-btn {
  padding: 10px 12px;
  background: var(--gold);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
}

#send-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

#send-btn:active {
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 480px) {
  #chatbot-widget {
    width: calc(100vw - 32px);
    height: 60vh;
    bottom: 80px;
  }

  #chatbot-bubble {
    bottom: 80px;
    right: 16px;
  }
}

/* ===== EVENTOS EN VIVO STYLES ===== */

body.page-eventos {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--cream);
  min-height: 100vh;
  padding-top: 130px;
}

/* HEADER — copia exacta del landing */
body.page-eventos header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 130px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #000000;
}

body.page-eventos .back-btn {
  justify-self: start;
  background: none;
  border: none;
  color: rgba(255,248,237,0.7);
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: italic;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50px;
  transition: color 0.2s;
}
body.page-eventos .back-btn:hover {
  color: var(--cream);
}

body.page-eventos .logo-img {
  height: 120px;
  width: auto;
  mix-blend-mode: normal;
  border-radius: 0;
  display: block;
  filter: none;
}

/* HERO */
body.page-eventos .ev-hero {
  text-align: center;
  padding: 80px 24px 48px;
  background: radial-gradient(ellipse at 50% 0%, rgba(218,165,32,0.15) 0%, transparent 60%), var(--dark);
  position: relative;
}
body.page-eventos .ev-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(218,165,32,0.3), transparent);
}
body.page-eventos .ev-tag {
  display: inline-block;
  border: 1.5px solid rgba(218,165,32,0.4);
  color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; padding: 6px 18px;
  border-radius: 50px; margin-bottom: 20px;
}
body.page-eventos .ev-hero h1 {
  font-family: 'Montserrat', serif; font-style: italic;
  font-size: clamp(36px, 9vw, 64px); line-height: 1.05;
  color: var(--cream); margin-bottom: 12px;
}
body.page-eventos .ev-hero h1 span { color: var(--gold); }
body.page-eventos .ev-hero p {
  font-size: 15px; color: rgba(255,248,237,0.6);
  font-style: italic; max-width: 400px; margin: 0 auto; line-height: 1.8;
}

/* CONTENT WRAPPER */
body.page-eventos .ev-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* SERVICE CARD */
body.page-eventos .ev-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(218,165,32,0.25);
  border-radius: 24px; padding: 28px;
  margin-bottom: 40px;
}
body.page-eventos .ev-service-title {
  font-family: 'Montserrat', serif; font-style: italic;
  font-size: 22px; color: var(--cream); margin-bottom: 18px;
}
body.page-eventos .ev-includes {
  list-style: none;
}
body.page-eventos .ev-includes li {
  font-size: 13px; color: rgba(255,248,237,0.75);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 10px; align-items: center;
}
body.page-eventos .ev-includes li:last-child { border: none; }
body.page-eventos .ev-service-note {
  font-size: 11px; color: rgba(255,248,237,0.4);
  font-style: italic; margin-top: 14px;
}

/* HOW IT WORKS */
body.page-eventos .ev-steps-title {
  font-family: 'Montserrat', serif; font-style: italic;
  font-size: 20px; color: var(--cream);
  text-align: center; margin-bottom: 20px;
}
body.page-eventos .ev-steps {
  display: flex; gap: 16px;
  margin-bottom: 36px;
}
body.page-eventos .ev-step {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(218,165,32,0.15);
  border-radius: 18px; padding: 20px 16px;
  text-align: center;
  position: relative;
}
body.page-eventos .ev-step-num {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--dark);
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
body.page-eventos .ev-step-icon {
  font-size: 28px; margin-bottom: 8px; margin-top: 4px;
}
body.page-eventos .ev-step-name {
  font-size: 13px; font-weight: 700;
  color: var(--cream); margin-bottom: 6px;
}
body.page-eventos .ev-step-desc {
  font-size: 11px; color: rgba(255,248,237,0.5);
  font-style: italic; line-height: 1.5;
}

/* EVENT TYPE PILLS */
body.page-eventos .ev-types {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 24px;
}
body.page-eventos .ev-type-pill {
  background: rgba(218,165,32,0.08);
  border: 1px solid rgba(218,165,32,0.2);
  color: rgba(255,248,237,0.7);
  font-size: 12px; font-weight: 600;
  padding: 8px 18px; border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}
body.page-eventos .ev-type-pill:hover {
  background: rgba(218,165,32,0.18);
  border-color: rgba(218,165,32,0.5);
  color: var(--cream);
  transform: translateY(-2px);
}
body.page-eventos .ev-type-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(218,165,32,0.35);
  transform: translateY(-2px);
}

/* GALERÍA DINÁMICA */
body.page-eventos .ev-gallery {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-bottom: 0;
}
body.page-eventos .ev-gallery.visible {
  max-height: 400px;
  opacity: 1;
  margin-bottom: 32px;
}
body.page-eventos .ev-gallery-label {
  font-family: 'Montserrat', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
  opacity: 0.9;
}
body.page-eventos .ev-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
body.page-eventos .ev-gallery-img {
  aspect-ratio: 4/3;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(218,165,32,0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
body.page-eventos .ev-gallery-img:hover {
  border-color: rgba(218,165,32,0.5);
}
body.page-eventos .ev-gallery-placeholder {
  text-align: center;
  color: rgba(255,248,237,0.25);
  font-size: 28px;
  line-height: 1.8;
}
body.page-eventos .ev-gallery-placeholder span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* Flash de confirmación en el campo select */
body.page-eventos .form-field select.field-flash {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(218,165,32,0.25);
  transition: box-shadow 0.3s, border-color 0.3s;
}

/* FORM */
body.page-eventos .form-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 28px;
}
body.page-eventos .form-title {
  font-family: 'Montserrat', serif; font-style: italic;
  font-size: 22px; color: var(--cream); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
body.page-eventos .form-field label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); opacity: 0.85;
}
body.page-eventos .form-field input,
body.page-eventos .form-field textarea,
body.page-eventos .form-field select {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px;
  font-family: var(--font-sans); font-size: 14px; line-height: 1.5;
  color: var(--cream); outline: none;
  transition: border-color 0.2s;
}
body.page-eventos .form-field input:focus,
body.page-eventos .form-field textarea:focus,
body.page-eventos .form-field select:focus {
  border-color: var(--gold);
}
body.page-eventos .form-field input[type="date"] { color-scheme: dark; }

body.page-eventos .note-box {
  background: rgba(218,165,32,0.05);
  border: 1px solid rgba(218,165,32,0.2);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,248,237,0.5);
  font-style: italic;
  line-height: 1.8;
}

/* GRID DEL FORMULARIO */
body.page-eventos .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

body.page-eventos .form-field.full {
  grid-column: span 2;
}

body.page-eventos .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-eventos .submit-btn {
  width: 100%; margin-top: 24px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border: none; border-radius: 18px;
  padding: 18px; font-family: 'Montserrat', serif;
  font-style: italic; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
body.page-eventos .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
}

/* TOAST */
body.page-eventos .ev-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--brown); color: var(--cream);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 14px; z-index: 9999;
  transition: transform 0.3s; white-space: nowrap;
  font-style: italic;
}
body.page-eventos .ev-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  body.page-eventos .ev-steps { flex-direction: column; }
  body.page-eventos .form-grid { grid-template-columns: 1fr; }
  body.page-eventos .form-field.full { grid-column: 1; }
}

/* ===== FLOATING NAV ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 298;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-modal {
  position: fixed;
  bottom: 88px;
  left: 24px;
  background: #111;
  border-radius: 18px;
  padding: 14px 12px;
  z-index: 299;
  min-width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  border: 1px solid rgba(218,165,32,0.22);
  opacity: 0;
  transform: translateY(14px) scale(0.94);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform-origin: bottom left;
}
.nav-modal.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.nav-modal-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,248,237,0.35);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-left: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,248,237,0.82);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.nav-item:hover {
  background: rgba(218,165,32,0.14);
  color: #FFD93D;
}
.nav-item-icon { font-size: 20px; width: 28px; text-align: center; }

/* Resaltar página activa */
body.page-lunchbox  .nav-item.nav-lunchbox,
body.page-nappanbox .nav-item.nav-nappanbox,
body.page-fitbar    .nav-item.nav-fitbar,
body.page-eventos   .nav-item.nav-eventos {
  opacity: 0.35;
  pointer-events: none;
}

.nav-float-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #DAA520;
  color: #1A1008;
  border: none;
  cursor: pointer;
  z-index: 299;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: transform 0.25s, background 0.25s;
  line-height: 1;
}
.nav-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
}
.nav-float-btn.open {
  background: #444;
  color: #fff;
  transform: rotate(90deg);
}
.nav-float-btn.open:hover {
  transform: rotate(90deg) scale(1.08);
}
