/* ========================================
   CLUB BABY SHOW - ULTRA PREMIUM STYLES
   Navy & Gold — Expandable Packages
   ======================================== */

:root {
    --primary-navy: #0f1b3d;
    --primary-navy-light: #1a2d5a;
    --primary-navy-dark: #0a1229;
    --accent-gold: #d4af37;
    --accent-gold-light: #f0d77c;
    --accent-gold-dark: #b8941e;
    --accent-gold-glow: rgba(212, 175, 55, 0.15);
    --bg-black: #060a14;
    --bg-dark: #0b1124;
    --bg-card: #111b38;
    --bg-card-hover: #162247;
    --bg-detail: #0d1730;
    --text-white: #ffffff;
    --text-gray: #b8c4d8;
    --text-light-gray: #7a8aa6;
    --success-green: #25d366;
    --vip-purple: #9b59b6;
    --shadow-navy: rgba(15, 27, 61, 0.5);
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d77c 50%, #d4af37 100%);
    --gradient-navy: linear-gradient(180deg, #111b38 0%, #060a14 100%);
    --gradient-premium: linear-gradient(135deg, #0f1b3d 0%, #1a2d5a 50%, #0f1b3d 100%);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   WELCOME SCREEN
   ======================================== */
.welcome-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-black);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; overflow: hidden;
}
.welcome-bg-pattern {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(15,27,61,0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212,175,55,0.03) 0%, transparent 70%);
    animation: bgPulse 8s ease-in-out infinite;
}
.welcome-particles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}
.particle {
    position: absolute; width: 4px; height: 4px;
    background: var(--accent-gold); border-radius: 50%; opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    30% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}
@keyframes bgPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}
.welcome-content {
    position: relative; z-index: 2;
    text-align: center; padding: 20px;
    animation: fadeInUp 1.2s ease;
}
.welcome-logo { margin-bottom: 30px; }
.logo-img {
    width: 180px; height: 180px; object-fit: contain;
    border-radius: 50%;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 30px rgba(212,175,55,0.4));
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.welcome-brand { margin-top: 20px; }
.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 4px;
}
.welcome-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 12px 0;
}
.divider-diamond {
    color: var(--accent-gold); font-size: 8px;
}
.welcome-divider::before, .welcome-divider::after {
    content: ''; width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.welcome-tagline {
    font-size: 13px; font-weight: 500;
    color: var(--accent-gold-light);
    letter-spacing: 3px; text-transform: uppercase;
}
.welcome-location {
    font-size: 11px; color: var(--text-light-gray);
    margin-top: 8px; letter-spacing: 2px;
}
.welcome-ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 25px 0;
}
.ornament-line {
    width: 50px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}
.ornament-star {
    font-size: 20px; color: var(--accent-gold);
    animation: starPulse 2s ease-in-out infinite;
}
@keyframes starPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}
.enter-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 40px;
    background: var(--gradient-gold); color: var(--primary-navy-dark);
    border: none; border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    cursor: pointer; transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(212,175,55,0.4);
    text-transform: uppercase;
}
.enter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.6);
}
.welcome-whatsapp {
    margin-top: 20px;
}
.wa-link {
    color: var(--success-green);
    text-decoration: none; font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.3s;
}
.wa-link:hover { opacity: 0.8; }

/* ========================================
   HEADER
   ======================================== */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(6,10,20,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,175,55,0.15);
    padding: 10px 16px;
}
.header-content {
    display: flex; align-items: center; gap: 12px;
    max-width: 800px; margin: 0 auto;
}
.header-logo-img {
    width: 42px; height: 42px; object-fit: contain;
    border-radius: 50%; border: 2px solid var(--accent-gold);
}
.header-text { flex: 1; }
.restaurant-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: var(--accent-gold); letter-spacing: 2px;
}
.restaurant-subtitle {
    font-size: 9px; color: var(--text-light-gray);
    letter-spacing: 2px; text-transform: uppercase;
}
.header-wa {
    width: 38px; height: 38px;
    background: var(--success-green); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.header-wa:hover { transform: scale(1.1); }

/* ========================================
   CATEGORY NAV
   ======================================== */
.category-nav {
    position: sticky; top: 62px; z-index: 99;
    background: rgba(6,10,20,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,175,55,0.1);
    padding: 10px 0;
}
.category-scroll {
    display: flex; gap: 8px; overflow-x: auto;
    padding: 0 16px; scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-scroll::-webkit-scrollbar { display: none; }
.cat-btn {
    flex-shrink: 0; padding: 8px 16px;
    border: 1px solid rgba(212,175,55,0.2);
    background: transparent; color: var(--text-gray);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 600;
    cursor: pointer; transition: all 0.3s ease;
    white-space: nowrap; letter-spacing: 0.5px;
}
.cat-btn.active {
    background: var(--gradient-gold); color: var(--primary-navy-dark);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}
.cat-btn:hover:not(.active) {
    border-color: var(--accent-gold); color: var(--accent-gold);
}
.cat-btn i { margin-right: 4px; }

/* ========================================
   MENU CONTAINER
   ======================================== */
.menu-container {
    max-width: 800px; margin: 0 auto;
    padding: 16px; padding-bottom: 140px;
}
.menu-section { margin-bottom: 40px; }
.menu-section.hidden { display: none; }

.section-header {
    text-align: center; margin-bottom: 24px;
    padding: 24px 10px 16px; position: relative;
}
.section-icon {
    font-size: 28px; margin-bottom: 8px;
    color: var(--accent-gold);
}
.section-icon i { filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3)); }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 800;
    color: var(--accent-gold); letter-spacing: 3px;
}
.section-subtitle {
    font-size: 11px; color: var(--text-light-gray);
    letter-spacing: 2px; margin-top: 5px;
    text-transform: uppercase;
}
.section-line {
    width: 60px; height: 2px; margin: 12px auto 0;
    background: var(--gradient-gold); border-radius: 1px;
}

/* ========================================
   PACKAGE CARDS — THE MAIN REDESIGN
   ======================================== */
.menu-items {
    display: flex; flex-direction: column; gap: 20px;
}
.pkg-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-card:hover {
    border-color: rgba(212,175,55,0.2);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.pkg-card.expanded {
    border-color: var(--accent-gold);
    box-shadow: 0 12px 50px rgba(212,175,55,0.12);
}
.pkg-card.selected {
    border-color: var(--accent-gold);
    box-shadow: 0 0 25px rgba(212,175,55,0.15);
}

/* Card Main (always visible) */
.pkg-card-main {
    display: flex; flex-direction: column;
}
.pkg-image {
    position: relative; width: 100%;
    height: 200px; overflow: hidden;
}
.pkg-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-image img {
    transform: scale(1.05);
}
.pkg-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 14px; border-radius: 20px;
    font-size: 10px; font-weight: 800;
    letter-spacing: 1.5px; text-transform: uppercase;
}
.pkg-badge.premium {
    background: linear-gradient(135deg, #0f1b3d, #1a2d5a);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}
.pkg-badge.signature {
    background: var(--gradient-gold);
    color: var(--primary-navy-dark);
}
.pkg-badge.popular {
    background: var(--success-green); color: #fff;
}
.pkg-badge.bestseller {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
    color: #fff;
}
.pkg-badge.vip {
    background: linear-gradient(135deg, #9b59b6, #c39bd3);
    color: #fff;
}
.pkg-price-tag {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(6,10,20,0.9); backdrop-filter: blur(10px);
    padding: 8px 16px; border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px; font-weight: 900;
    color: var(--accent-gold);
    border: 1px solid rgba(212,175,55,0.3);
}
.pkg-price-tag span {
    font-size: 10px; font-weight: 600;
    color: var(--text-light-gray);
    margin-left: 2px;
}

/* Summary */
.pkg-summary {
    padding: 16px 18px 14px;
}
.pkg-header-row {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 6px;
}
.pkg-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: var(--text-white); letter-spacing: 1px;
}
.pkg-duration {
    font-size: 11px; color: var(--accent-gold-light);
    font-weight: 600; white-space: nowrap;
}
.pkg-duration i { margin-right: 3px; }
.pkg-tagline {
    font-size: 12px; color: var(--text-light-gray);
    line-height: 1.5; margin-bottom: 10px;
}

/* Quick features chips */
.pkg-quick-features {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 12px;
}
.qf {
    font-size: 10px; color: var(--accent-gold-light);
    background: rgba(212,175,55,0.08);
    padding: 4px 10px; border-radius: 20px;
    white-space: nowrap; font-weight: 500;
}
.qf i {
    font-size: 9px; margin-right: 3px;
    color: var(--accent-gold);
}

/* Expand button */
.pkg-expand-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.12));
    border: 1px dashed rgba(212,175,55,0.25);
    border-radius: 10px;
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pkg-expand-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: var(--accent-gold);
}
.pkg-expand-btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 11px;
}
.pkg-card.expanded .pkg-expand-btn i {
    transform: rotate(180deg);
}
.pkg-card.expanded .pkg-expand-btn span::before {
    content: 'Ocultar detalles';
}
.pkg-card.expanded .pkg-expand-btn span {
    font-size: 0;
}
.pkg-card.expanded .pkg-expand-btn span::before {
    font-size: 12px;
}

/* ========================================
   DETAILS PANEL (expandable)
   ======================================== */
.pkg-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-card.expanded .pkg-details {
    max-height: 2000px;
}
.pkg-details-inner {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(212,175,55,0.1);
    margin-top: 0;
    padding-top: 18px;
}

/* Details sections */
.details-section {
    margin-bottom: 20px;
}
.details-section:last-of-type {
    margin-bottom: 16px;
}
.details-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px; font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
    letter-spacing: 0.5px;
}
.details-title i {
    font-size: 13px; width: 20px; text-align: center;
}

/* Includes Grid */
.includes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.include-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 12px;
    background: rgba(212,175,55,0.04);
    border-radius: var(--radius-sm);
    border-left: 3px solid rgba(212,175,55,0.15);
    transition: all 0.3s;
}
.include-item:hover {
    background: rgba(212,175,55,0.08);
}
.include-item.highlight {
    background: rgba(212,175,55,0.08);
    border-left-color: var(--accent-gold);
}
.include-item i {
    color: var(--accent-gold);
    font-size: 13px; width: 18px; min-width: 18px;
    text-align: center; margin-top: 2px;
}
.include-item span {
    font-size: 12px; color: var(--text-gray);
    line-height: 1.4;
}
.include-item.highlight span {
    color: var(--text-white); font-weight: 500;
}

/* Repertoire Tags */
.repertoire-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.rep-tag {
    font-size: 11px; color: var(--text-gray);
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.12);
    padding: 5px 12px; border-radius: 20px;
    transition: all 0.3s;
}
.rep-tag:hover {
    background: rgba(212,175,55,0.15);
    color: var(--accent-gold);
}

/* Info Notes */
.info-notes {
    display: flex; flex-direction: column; gap: 8px;
}
.info-notes p {
    font-size: 12px; color: var(--text-gray);
    display: flex; align-items: center; gap: 8px;
    line-height: 1.4;
}
.info-notes p i {
    color: var(--accent-gold); font-size: 12px;
    width: 18px; min-width: 18px; text-align: center;
}

/* Action Bar inside details */
.pkg-action-bar {
    display: flex; justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(15,27,61,0.3));
    border-radius: var(--radius-md);
    border: 1px solid rgba(212,175,55,0.15);
    margin-top: 4px;
}
.pkg-total-price .label {
    font-size: 9px; color: var(--text-light-gray);
    letter-spacing: 2px; display: block;
    text-transform: uppercase; font-weight: 600;
}
.pkg-total-price .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px; font-weight: 900;
    color: var(--accent-gold);
}
.pkg-total-price .price small {
    font-size: 12px; font-weight: 600;
    color: var(--text-light-gray);
}

/* Cart Actions */
.pkg-cart-actions {
    display: flex; align-items: center; gap: 14px;
}
.btn-decrease, .btn-increase {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid rgba(212,175,55,0.3);
    background: transparent; color: var(--accent-gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s ease;
    font-size: 14px;
}
.btn-increase {
    background: var(--accent-gold);
    color: var(--primary-navy-dark);
    border-color: var(--accent-gold);
}
.btn-decrease:hover { background: rgba(212,175,55,0.1); }
.btn-increase:hover {
    background: var(--accent-gold-light);
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
    transform: scale(1.05);
}
.item-quantity {
    font-size: 18px; font-weight: 800;
    color: var(--text-white);
    min-width: 24px; text-align: center;
}
.pkg-card.selected .item-quantity {
    color: var(--accent-gold);
}

/* ========================================
   COMPACT CARDS (Extras)
   ======================================== */
.pkg-card.compact {
    border-radius: var(--radius-md);
}
.pkg-card.compact .pkg-card-main { }
.compact-summary {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px !important;
    flex-wrap: wrap;
}
.compact-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: rgba(212,175,55,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-gold); font-size: 20px;
}
.compact-info {
    flex: 1; min-width: 0;
}
.compact-info .pkg-name {
    font-size: 13px; letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.compact-info .pkg-tagline {
    font-size: 11px; margin-bottom: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.compact-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px; font-weight: 900;
    color: var(--accent-gold);
    white-space: nowrap;
}
.compact-price small {
    font-size: 9px; font-weight: 600;
    color: var(--text-light-gray); display: block;
    text-align: right;
}
.compact-summary .pkg-cart-actions {
    gap: 10px;
}
.compact-summary .btn-decrease,
.compact-summary .btn-increase {
    width: 34px; height: 34px;
}
.compact-summary .item-quantity {
    font-size: 15px; min-width: 20px;
}

@media (max-width: 480px) {
    .compact-summary {
        flex-wrap: wrap;
    }
    .compact-info .pkg-tagline {
        white-space: normal;
    }
}

/* ========================================
   ADD ANIMATION
   ======================================== */
.pkg-card.added {
    animation: addPulse 0.35s ease;
}
@keyframes addPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.015); }
    100% { transform: scale(1); }
}

/* ========================================
   REVIEW BAR
   ======================================== */
.review-bar {
    position: fixed; bottom: -100px; left: 0;
    width: 100%; z-index: 200;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-bar.active { bottom: 0; }
.review-bar-content {
    max-width: 800px; margin: 0 auto;
    padding: 14px 16px;
    display: flex; justify-content: space-between;
    align-items: center;
    background: rgba(15,27,61,0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--accent-gold);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
}
.review-label {
    font-size: 9px; color: var(--text-light-gray);
    letter-spacing: 2px; display: block;
}
.review-total {
    font-size: 24px; font-weight: 900;
    color: var(--accent-gold);
}
.review-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 24px;
    background: var(--gradient-gold); color: var(--primary-navy-dark);
    border: none; border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease;
    letter-spacing: 1px; text-transform: uppercase;
}
.review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}
.btn-kanji { font-size: 16px; }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.wa-float {
    position: fixed; bottom: 90px; right: 20px;
    width: 56px; height: 56px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 199;
    transition: all 0.3s;
    animation: waPulse 2s ease-in-out infinite;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.wa-float.hidden { display: none; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(212,175,55,0.1);
    padding: 40px 16px; text-align: center;
}
.footer-content {
    max-width: 600px; margin: 0 auto;
}
.footer-logo {
    display: flex; flex-direction: column;
    align-items: center; gap: 8px; margin-bottom: 12px;
}
.footer-logo-img {
    width: 55px; height: 55px; object-fit: contain;
    border-radius: 50%;
}
.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: var(--accent-gold); letter-spacing: 3px;
}
.footer-tagline {
    font-size: 10px; color: var(--text-light-gray);
    letter-spacing: 2px; text-transform: uppercase;
}
.footer-divider {
    width: 60px; height: 1px; margin: 16px auto;
    background: var(--gradient-gold);
}
.footer-contact {
    display: flex; flex-direction: column;
    gap: 10px; margin-bottom: 16px;
}
.footer-contact-item {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 12px; color: var(--text-gray);
}
.footer-contact-item.wa-item {
    color: var(--success-green); font-weight: 600;
    text-decoration: none;
}
a.footer-contact-item { text-decoration: none; }
.footer-contact-item i {
    color: var(--accent-gold); width: 16px;
}
.wa-item i { color: var(--success-green) !important; }
.footer-handle {
    font-size: 12px; color: var(--text-light-gray);
    margin-bottom: 16px;
}
.footer-links { margin-bottom: 16px; }
.admin-link {
    font-size: 11px; color: var(--text-light-gray);
    text-decoration: none; transition: color 0.3s ease;
    display: inline-flex; align-items: center; gap: 5px;
}
.admin-link:hover { color: var(--accent-gold); }
.footer-copy {
    font-size: 10px; color: rgba(122,138,166,0.5);
    letter-spacing: 0.5px;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); z-index: 500;
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal.active { opacity: 1; visibility: visible; }
.modal-content {
    background: var(--bg-dark);
    border-radius: 24px 24px 0 0;
    width: 100%; max-width: 600px; max-height: 90vh;
    display: flex; flex-direction: column;
    border-top: 2px solid var(--accent-gold);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal.active .modal-content { transform: translateY(0); }

.modal-header {
    display: flex; justify-content: space-between;
    align-items: center; padding: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.1);
}
.modal-title {
    display: flex; align-items: center; gap: 10px;
}
.modal-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; color: var(--text-white);
}
.modal-kanji { font-size: 20px; color: var(--accent-gold); }
.modal-close {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.2);
    background: transparent; color: var(--text-gray);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s ease;
}
.modal-close:hover {
    background: rgba(212,175,55,0.1); color: var(--accent-gold);
}

.modal-body {
    flex: 1; overflow-y: auto; padding: 20px;
}

/* Order items */
.order-items { margin-bottom: 20px; }
.order-item {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 12px; gap: 10px;
    border-bottom: 1px solid rgba(212,175,55,0.06);
}
.order-item-info { flex: 1; min-width: 0; }
.order-item-name {
    font-size: 13px; font-weight: 600;
    color: var(--text-white);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.order-item-price-unit {
    font-size: 11px; color: var(--text-light-gray);
}
.order-item-controls {
    display: flex; align-items: center; gap: 8px;
}
.order-qty-btn {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.3);
    background: transparent; color: var(--accent-gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 11px; transition: all 0.2s ease;
}
.order-qty-btn.increase {
    background: var(--accent-gold);
    color: var(--primary-navy-dark);
    border-color: var(--accent-gold);
}
.order-item-qty {
    font-weight: 700; color: var(--accent-gold);
    min-width: 20px; text-align: center; font-size: 14px;
}
.order-item-subtotal {
    font-weight: 700; color: var(--accent-gold);
    font-size: 14px; white-space: nowrap;
}
.empty-order {
    text-align: center; padding: 40px;
    color: var(--text-light-gray);
}
.empty-order i { font-size: 40px; margin-bottom: 10px; display: block; }

.order-summary {
    background: rgba(212,175,55,0.05);
    border-radius: 12px; padding: 16px; margin-bottom: 20px;
}
.summary-row.total {
    display: flex; justify-content: space-between;
    font-size: 18px; font-weight: 700;
    color: var(--text-white);
}
.total-amount { color: var(--accent-gold); font-size: 24px; }

.name-label {
    font-size: 12px; color: var(--text-gray); margin-bottom: 8px;
}
.name-input-container { margin-bottom: 15px; }
.customer-name-input {
    width: 100%; padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px; color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; transition: border-color 0.3s ease;
}
.customer-name-input:focus {
    outline: none; border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.1);
}
.customer-name-input::placeholder { color: var(--text-light-gray); }

.event-date-container { margin-bottom: 10px; }
.event-label {
    font-size: 12px; color: var(--text-gray);
    display: block; margin-bottom: 8px;
}
.event-date-input {
    width: 100%; padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px; color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; transition: border-color 0.3s ease;
}
.event-date-input:focus {
    outline: none; border-color: var(--accent-gold);
}

.modal-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(212,175,55,0.1);
}
.send-order-btn {
    width: 100%; padding: 16px;
    background: var(--success-green); color: #fff;
    border: none; border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: flex; align-items: center;
    justify-content: center; gap: 10px;
}
.send-order-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.send-order-btn:not(:disabled):hover {
    background: #1fba5a;
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
    transform: translateY(-2px);
}
.send-order-btn i { font-size: 20px; }

/* ========================================
   SUCCESS MODAL
   ======================================== */
.success-modal {
    border-radius: 24px; text-align: center;
    padding: 40px 20px; align-items: center;
    margin: auto 16px;
    border: 1px solid rgba(212,175,55,0.2);
}
.success-icon { margin-bottom: 20px; }
.check-circle {
    font-size: 60px; animation: bounceIn 0.6s ease;
}
@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px; color: var(--accent-gold);
    margin-bottom: 10px;
}
.success-message {
    font-size: 16px; color: var(--text-white); margin-bottom: 5px;
}
.success-submessage {
    font-size: 13px; color: var(--text-gray);
    margin-bottom: 10px; line-height: 1.5;
}
.success-thanks {
    font-size: 14px; color: var(--accent-gold);
    font-weight: 600; margin-bottom: 25px;
}
.success-buttons { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.order-number-display {
    background: rgba(212,175,55,0.1);
    padding: 10px 20px; border-radius: 8px;
    font-size: 14px; color: var(--accent-gold);
    font-weight: 600;
}
.success-btn {
    padding: 14px 40px;
    background: var(--gradient-gold);
    color: var(--primary-navy-dark);
    border: none; border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease;
    letter-spacing: 1px;
}
.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.menu-section {
    animation: fadeInUp 0.5s ease both;
}
.menu-section:nth-child(2) { animation-delay: 0.1s; }
.menu-section:nth-child(3) { animation-delay: 0.2s; }
.menu-section:nth-child(4) { animation-delay: 0.3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (min-width: 768px) {
    .logo-img { width: 220px; height: 220px; }
    .welcome-title { font-size: 36px; }
    .welcome-tagline { font-size: 15px; }
    .menu-container { padding: 24px; }
    .pkg-image { height: 260px; }
    .section-title { font-size: 26px; }
    .includes-grid { grid-template-columns: 1fr 1fr; }
    .pkg-name { font-size: 19px; }
    .pkg-price-tag { font-size: 26px; }
    .compact-info .pkg-tagline { white-space: normal; }
}

@media (max-width: 380px) {
    .pkg-name { font-size: 14px; }
    .pkg-price-tag { font-size: 18px; padding: 6px 12px; }
    .review-btn { padding: 12px 16px; font-size: 10px; }
    .cat-btn { padding: 6px 12px; font-size: 10px; }
    .pkg-expand-btn { font-size: 11px; }
    .compact-summary { gap: 10px; }
    .compact-price { font-size: 16px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,0.5); }
