/* Restaurant Home Page Styles — extracted from restaurant_home.html */
/* CSS variables are set inline in the template <style> block (tenant-specific) */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; overflow-x: hidden; width: 100%; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--cream);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(245, 197, 24, 0.3); color: var(--cream); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }

/* ===== GRAIN OVERLAY (desktop only) ===== */
.grain {
    position: fixed; top: -50%; left: -50%; right: -50%; bottom: -50%;
    width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: 0.4;
    animation: grain 8s steps(10) infinite;
}
@keyframes grain {
    0%,100%{transform:translate(0,0)} 10%{transform:translate(-5%,-10%)} 30%{transform:translate(7%,-25%)}
    50%{transform:translate(-15%,10%)} 70%{transform:translate(0%,15%)} 90%{transform:translate(-10%,10%)}
}
@media (max-width: 768px) {
    .grain { display: none !important; }
    .aurora-orb { display: none !important; }
    .glass, .glass-strong { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
    .floating-badge { animation: none !important; }
    .hero-title .char { opacity: 1 !important; transform: none !important; }
    .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== GLASS ===== */
.glass { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.08); }
.glass-strong { background: rgba(10,10,10,0.8); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border: 1px solid rgba(255,255,255,0.1); }

/* ===== AURORA ORBS ===== */
.aurora-orb { position: fixed; border-radius: 50%; filter: blur(60px); opacity: 0.15; pointer-events: none; will-change: transform; animation: floatOrb 25s ease-in-out infinite; }
@keyframes floatOrb { 0%,100%{transform:translate3d(0,0,0) scale(1)} 33%{transform:translate3d(40px,30px,0) scale(1.05)} 66%{transform:translate3d(-30px,-20px,0) scale(0.95)} }

/* ===== NAV ===== */
.site-nav { position: fixed; top: 0; width: 100%; max-width: 100vw; z-index: 100; padding: 1.5rem 0; transition: all 0.5s cubic-bezier(0.33,1,0.68,1); }
.site-nav.scrolled { background: rgba(10,10,10,0.9); backdrop-filter: blur(30px); padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-logo { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 0.25em; color: var(--brand); text-decoration: none; }
.nav-logo small { display: block; font-family: var(--font); font-size: 0.5rem; letter-spacing: 0.35em; color: rgba(250,240,230,0.4); text-transform: uppercase; }
.nav-link-custom { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,240,230,0.6); text-decoration: none; font-weight: 500; position: relative; transition: color 0.3s; background: none; border: none; cursor: pointer; }
.nav-link-custom:hover { color: var(--brand); }
.nav-link-custom::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--brand); transition: width 0.3s; }
.nav-link-custom:hover::after { width: 100%; }
.btn-nav-book { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; border: none; color: var(--bg); padding: 0.5rem 1.5rem; border-radius: 50px; background: var(--brand); text-decoration: none; transition: all 0.3s; font-weight: 700; cursor: pointer; box-shadow: 0 2px 15px rgba(245,197,24,0.3); animation: bookBtnGlow 3s ease-in-out infinite; }
.btn-nav-book:hover { box-shadow: 0 4px 25px rgba(245,197,24,0.5); transform: scale(1.05); color: var(--bg); }
.btn-nav-order { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid rgba(250,240,230,0.2); color: var(--cream); padding: 0.5rem 1.5rem; border-radius: 50px; background: transparent; text-decoration: none; transition: all 0.3s; font-weight: 600; cursor: pointer; }
.btn-nav-order:hover { background: var(--cream); color: var(--bg); border-color: var(--cream); }
@keyframes bookBtnGlow { 0%,100%{box-shadow:0 2px 15px rgba(245,197,24,0.3)} 50%{box-shadow:0 2px 25px rgba(245,197,24,0.5)} }

.cart-badge { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; background: var(--pink); color: #fff; font-size: 10px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; transform: scale(0); transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.cart-badge.visible { transform: scale(1); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; transition: transform 0.1s; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.5), transparent 40%, rgba(10,10,10,1)); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.hero-sub { font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(250,240,230,0.35); margin-bottom: 1.5rem; }
.hero-title { font-family: 'Cinzel', serif; font-size: clamp(3.5rem, 13vw, 10rem); font-weight: 700; letter-spacing: 0.15em; line-height: 1; color: var(--cream); }
.hero-title .char { display: inline-block; opacity: 0; transform: translateY(80px) rotateX(-90deg); }
.hero-tagline { font-size: 1.1rem; color: rgba(250,240,230,0.5); margin-top: 1.5rem; letter-spacing: 0.1em; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-line { width: 60px; height: 1px; margin: 2rem auto; background: linear-gradient(90deg, transparent, var(--brand), transparent); }
.btn-hero-primary { padding: 1rem 2.5rem; background: var(--brand); color: var(--bg); font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 50px; border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s; font-weight: 700; cursor: pointer; box-shadow: 0 4px 25px rgba(245,197,24,0.4); animation: bookBtnGlow 3s ease-in-out infinite; }
.btn-hero-primary:hover { box-shadow: 0 6px 35px rgba(245,197,24,0.6); transform: translateY(-2px); color: var(--bg); }
.btn-hero-outline { padding: 1rem 2.5rem; background: transparent; color: var(--cream); font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 50px; border: 1px solid rgba(250,240,230,0.15); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s; font-weight: 600; cursor: pointer; }
.btn-hero-outline:hover { border-color: var(--pink); color: var(--pink); }
.scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; color: rgba(250,240,230,0.25); }
.scroll-indicator span { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; display: block; margin-bottom: 0.5rem; }

/* ===== SECTIONS ===== */
.section { padding: 8rem 0; position: relative; }
.section-label { font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--brand); margin-bottom: 1rem; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; letter-spacing: 0.1em; color: var(--cream); }
.section-jp { font-size: 0.75rem; color: rgba(250,240,230,0.2); letter-spacing: 0.2em; margin-top: 0.3rem; }
.yuzu-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(245,197,24,0.2), transparent); margin: 0 auto; }

/* ===== ABOUT ===== */
.about-text { font-size: 1.15rem; line-height: 1.8; color: rgba(250,240,230,0.7); }
.about-text-en { font-size: 0.95rem; line-height: 1.7; color: rgba(250,240,230,0.4); }
.about-badge { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(250,240,230,0.5); font-size: 0.8rem; letter-spacing: 0.1em; }
.about-img-wrap { position: relative; overflow: hidden; border-radius: 1rem; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-img-wrap:hover img { transform: scale(1.05); }
.floating-badge { position: absolute; z-index: 5; animation: floatBadge 4s ease-in-out infinite; }
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ===== MENU ===== */
#catTabsWrapper.stuck {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#catTabsPlaceholder { display: none; }
#catTabsPlaceholder.active { display: block; }
.cat-tabs { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 1rem; scrollbar-width: none; -ms-overflow-style: none; position: relative; max-width: 900px; margin: 0 auto; }
.cat-tabs::-webkit-scrollbar { display: none; }

/* In-cart item highlight */
.menu-item.in-cart { border-left: 3px solid var(--brand) !important; background: rgba(245,197,24,0.06) !important; }
.menu-item .cart-qty-badge {
    position: absolute; top: 8px; right: 8px;
    background: var(--brand); color: var(--bg);
    font-size: 0.65rem; font-weight: 800;
    min-width: 22px; height: 22px; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(245,197,24,0.4);
    z-index: 5;
}
.menu-item.in-cart .cart-qty-badge { display: flex; }
.cat-tab { flex-shrink: 0; padding: 0.6rem 1.25rem; border-radius: 50px; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.1); color: rgba(250,240,230,0.5); background: transparent; cursor: pointer; transition: all 0.3s; font-weight: 500; white-space: nowrap; }
.cat-tab:hover { border-color: rgba(245,197,24,0.3); color: var(--brand); }
.cat-tab.active { background: var(--brand); color: var(--bg); border-color: var(--brand); font-weight: 700; }
.cat-fade-r { position: absolute; right: 0; top: 0; bottom: 1rem; width: 60px; background: linear-gradient(to left, var(--bg), transparent); pointer-events: none; }
.menu-cat-header { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--brand); font-weight: 700; padding: 1.5rem 0 0.5rem; letter-spacing: 0.05em; border-bottom: 1px solid rgba(245,197,24,0.15); margin-bottom: 0.75rem; }
.menu-item { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1rem; display: flex; align-items: center; gap: 0.75rem; cursor: pointer; border-radius: 0.5rem; transition: background 0.3s; }
.menu-item:hover { background: rgba(255,255,255,0.03); }
.menu-item-info { flex: 1; min-width: 0; }
.menu-item-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; margin-left: auto; }
.menu-item-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--cream); transition: color 0.3s; margin: 0; }
.menu-item:hover .menu-item-name { color: var(--brand); }
.menu-item-desc { font-size: 0.82rem; color: rgba(250,240,230,0.4); margin-top: 0.25rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; cursor: pointer; transition: all 0.2s; }
.menu-item-desc.expanded { -webkit-line-clamp: unset; display: block; overflow: visible; color: rgba(250,240,230,0.6); }
.menu-item-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-top: 0.4rem; }
.menu-item-tag { display: inline-flex; align-items: center; gap: 3px; font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 50px; }
.tag-popular { background: rgba(255,45,123,0.15); color: var(--pink); }
.tag-new { background: rgba(0,217,126,0.15); color: var(--emerald); }
.menu-item-price { font-family: 'Cinzel', serif; font-size: 1.05rem; color: var(--brand); font-weight: 700; }
.btn-add-item { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(245,197,24,0.3); background: transparent; color: var(--brand); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; font-size: 1rem; }
.btn-add-item:hover { background: var(--brand); color: var(--bg); }
.menu-item-media { width: 70px; height: 70px; border-radius: 0.5rem; object-fit: cover; flex-shrink: 0; margin-right: 0.75rem; }
.menu-item-video { width: 70px; height: 70px; border-radius: 0.5rem; object-fit: cover; flex-shrink: 0; margin-right: 0.75rem; }
@media (max-width: 576px) { .menu-item-media, .menu-item-video { width: 60px; height: 60px; } }
.menu-items-list { transition: opacity 0.3s ease; }
.menu-items-list.fading { opacity: 0; }

/* ===== BOOKING ===== */
.booking-cta-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 1.5rem; padding: 3rem; text-align: center; backdrop-filter: blur(20px); }
.booking-info-overlay { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; border-radius: 0.75rem; padding: 1rem; }
.booking-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.booking-overlay.open { opacity: 1; pointer-events: auto; }
.booking-modal { position: fixed; z-index: 201; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); width: 95%; max-width: 480px; max-height: 85vh; background: rgba(10,10,10,0.9); backdrop-filter: blur(40px); border: 1px solid rgba(255,255,255,0.1); border-radius: 1.5rem; display: flex; flex-direction: column; overflow: hidden; opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.booking-overlay.open + .booking-modal, .booking-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.booking-header { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.booking-header h3 { font-family: 'Cinzel', serif; font-size: 1.15rem; letter-spacing: 0.1em; color: var(--cream); margin: 0; }
.booking-header small { font-size: 0.7rem; color: rgba(250,240,230,0.3); letter-spacing: 0.1em; }
.booking-close { background: none; border: none; color: rgba(250,240,230,0.5); font-size: 1.3rem; cursor: pointer; transition: color 0.3s; padding: 0.25rem; }
.booking-close:hover { color: var(--cream); }
.booking-progress { display: flex; gap: 0.5rem; padding: 1rem 1.5rem 0; }
.booking-progress-bar { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.1); transition: background 0.5s; }
.booking-progress-bar.active { background: var(--brand); }
.booking-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.booking-footer { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.date-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
@media (min-width: 576px) { .date-grid { grid-template-columns: repeat(7, 1fr); } }
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.guest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
.pick-btn { display: flex; flex-direction: column; align-items: center; padding: 0.75rem 0.5rem; border-radius: 0.75rem; background: rgba(255,255,255,0.05); border: none; color: rgba(250,240,230,0.6); cursor: pointer; transition: all 0.2s; font-family: var(--font); }
.pick-btn:hover { background: rgba(255,255,255,0.1); }
.pick-btn.selected { background: var(--brand); color: var(--bg); }
.pick-btn .label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; }
.pick-btn .value { font-family: 'Cinzel', serif; font-size: 1.1rem; margin-top: 0.25rem; }
.pick-btn.closed { opacity: 0.25; cursor: not-allowed; text-decoration: line-through; }
.pick-btn.closed:hover { background: rgba(255,255,255,0.05); }
.booking-input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 0.75rem 1rem; color: var(--cream); font-family: var(--font); font-size: 0.85rem; transition: border-color 0.3s; }
.booking-input:focus { outline: none; border-color: rgba(245,197,24,0.5); }
.booking-input::placeholder { color: rgba(250,240,230,0.2); }
.booking-input.prefilled { border-color: rgba(25,135,84,0.3); background: rgba(25,135,84,0.05); }
.booking-label { display: flex; align-items: center; gap: 0.5rem; color: rgba(250,240,230,0.6); font-size: 0.8rem; margin-bottom: 0.5rem; }
.btn-booking-next { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.6rem 1.5rem; border-radius: 50px; font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.15em; border: none; cursor: pointer; transition: all 0.3s; font-weight: 600; }
.btn-booking-next.primary { background: var(--brand); color: var(--bg); }
.btn-booking-next.primary:hover { box-shadow: 0 0 20px rgba(245,197,24,0.3); }
.btn-booking-next.success { background: var(--emerald); color: var(--bg); }
.btn-booking-next.success:hover { box-shadow: 0 0 20px rgba(0,217,126,0.3); }
.btn-booking-next:disabled { background: rgba(255,255,255,0.05); color: rgba(250,240,230,0.2); cursor: not-allowed; box-shadow: none; }
.btn-booking-back { background: none; border: none; color: rgba(250,240,230,0.5); font-size: 0.8rem; cursor: pointer; transition: color 0.3s; }
.btn-booking-back:hover { color: var(--cream); }
.booking-summary { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 0.75rem; padding: 1rem; margin-top: 0.75rem; }

/* ===== CART ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 400px; z-index: 151; display: flex; flex-direction: column; background: rgba(10,10,10,0.9); backdrop-filter: blur(40px); border-left: 1px solid rgba(255,255,255,0.1); transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.33,1,0.68,1); }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cart-header h3 { font-family: 'Cinzel', serif; font-size: 1.1rem; letter-spacing: 0.1em; color: var(--cream); margin: 0; display: flex; align-items: center; gap: 0.75rem; }
.cart-count { font-size: 0.7rem; background: var(--brand); color: var(--bg); padding: 0.1rem 0.5rem; border-radius: 50px; font-weight: 700; font-family: var(--font); }
.cart-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; color: rgba(250,240,230,0.3); }
.cart-empty i { font-size: 3rem; opacity: 0.3; margin-bottom: 1rem; }
.cart-item { display: flex; gap: 0.75rem; padding: 0.75rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 0.75rem; margin-bottom: 0.75rem; }
.cart-item-img { width: 56px; height: 56px; border-radius: 0.5rem; object-fit: cover; flex-shrink: 0; }
.cart-item-img-placeholder { width: 56px; height: 56px; border-radius: 0.5rem; flex-shrink: 0; background: linear-gradient(135deg, rgba(245,197,24,0.1), rgba(255,45,123,0.05)); display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: 1rem; opacity: 0.4; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-family: 'Cinzel', serif; color: var(--brand); font-size: 0.85rem; margin-top: 0.2rem; }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; }

/* Cart modifier pills */
.cart-item-mods { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-top: 0.25rem; }
.cart-mod-pill { font-size: 0.6rem; padding: 0.1rem 0.4rem; border-radius: 2rem; background: rgba(245,197,24,0.08); border: 1px solid rgba(245,197,24,0.15); color: rgba(250,240,230,0.6); white-space: nowrap; }
.cart-mod-price { color: var(--brand); font-weight: 600; }

/* Cart per-item notes */
.cart-item-note-row { margin-top: 0.25rem; }
.cart-note-toggle { background: none; border: none; color: rgba(250,240,230,0.25); font-size: 0.6rem; cursor: pointer; padding: 0; display: flex; align-items: center; gap: 0.15rem; transition: color 0.2s; }
.cart-note-toggle:hover { color: rgba(250,240,230,0.5); }
.cart-note-preview { color: rgba(250,240,230,0.45); font-style: italic; max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; vertical-align: bottom; }
.cart-note-input-wrap { margin-top: 0.2rem; }
.cart-note-input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 0.4rem; padding: 0.25rem 0.4rem; color: var(--cream); font-size: 0.65rem; font-family: var(--font); }
.cart-note-input:focus { outline: none; border-color: rgba(245,197,24,0.3); }
.cart-note-input::placeholder { color: rgba(250,240,230,0.2); }
.cart-qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); background: none; color: rgba(250,240,230,0.5); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.cart-qty-btn:hover { border-color: var(--brand); color: var(--brand); }
.cart-qty-btn.remove:hover { border-color: #ef4444; color: #ef4444; }
.cart-qty-value { font-size: 0.85rem; color: var(--cream); width: 20px; text-align: center; }
.cart-delete-btn { margin-left: auto; background: none; border: none; color: rgba(250,240,230,0.2); cursor: pointer; transition: color 0.2s; font-size: 0.9rem; }
.cart-delete-btn:hover { color: #ef4444; }
.cart-footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 1.5rem; }
.cart-clear { background: none; border: none; color: rgba(250,240,230,0.3); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; cursor: pointer; transition: color 0.2s; margin-bottom: 0.75rem; }
.cart-clear:hover { color: #ef4444; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.cart-total-label { color: rgba(250,240,230,0.5); font-size: 0.85rem; }
.cart-total-value { font-family: 'Cinzel', serif; color: var(--cream); font-size: 1.1rem; }
.btn-checkout { width: 100%; padding: 1rem; background: var(--brand); color: var(--bg); font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 50px; border: none; cursor: pointer; transition: box-shadow 0.3s; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-checkout:hover { box-shadow: 0 0 40px rgba(245,197,24,0.3); }
.cart-input { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.5rem; padding: 0.5rem 0.75rem; color: var(--cream); font-size: 0.8rem; transition: border-color 0.3s; }
.cart-input:focus { outline: none; border-color: var(--brand); }
.cart-input::placeholder { color: rgba(250,240,230,0.25); }
select.cart-input { color: var(--cream); -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23faf0e6' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; }
select.cart-input option { background: #1a1a2e; color: #faf0e6; padding: 0.5rem; }

/* ===== ADDRESS AUTOCOMPLETE ===== */
.addr-autocomplete-dropdown { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 100; background: #1a1a2e; border: 1px solid rgba(245,197,24,0.15); border-radius: 0 0 0.5rem 0.5rem; max-height: 180px; overflow-y: auto; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.addr-autocomplete-dropdown.open { display: block; }
.addr-autocomplete-item { padding: 0.5rem 0.75rem; font-size: 0.75rem; color: var(--cream); cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.1s; }
.addr-autocomplete-item:hover { background: rgba(245,197,24,0.08); }
.addr-autocomplete-item i { color: var(--brand); margin-right: 0.4rem; font-size: 0.65rem; }

/* ===== REVIEWS ===== */
.review-card-premium { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 1rem; padding: 2rem; border-left: 3px solid var(--brand); transition: all 0.3s; }
.review-card-premium:hover { border-color: var(--brand); }
.review-stars { color: var(--brand); font-size: 0.85rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.9rem; color: rgba(250,240,230,0.6); line-height: 1.6; font-style: italic; }
.review-author { font-size: 0.8rem; font-weight: 700; color: var(--cream); margin-top: 0.75rem; }

/* ===== TEAM ===== */
.team-card { text-align: center; padding: 1.5rem; }
.team-avatar { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); margin: 0 auto 1rem; transition: transform 0.3s; }
.team-card:hover .team-avatar { transform: scale(1.08); }

/* ===== INFO BAR ===== */
.info-bar-premium { background: linear-gradient(135deg, rgba(245,197,24,0.08), rgba(255,45,123,0.05)); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 3rem 0; }
.info-item-premium { text-align: center; }
.info-item-premium i { font-size: 1.2rem; color: var(--brand); margin-bottom: 0.5rem; display: block; }
.info-item-premium .label { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(250,240,230,0.3); margin-bottom: 0.25rem; }
.info-item-premium .value { font-weight: 600; font-size: 0.9rem; color: var(--cream); }

/* ===== CONTACT ===== */
.contact-link { color: rgba(250,240,230,0.5); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; display: block; margin-bottom: 0.5rem; }
.contact-link:hover { color: var(--brand); }
.social-link { color: rgba(250,240,230,0.25); font-size: 1.3rem; transition: color 0.3s; }
.social-link:hover { color: var(--pink); }

/* ===== FOOTER ===== */
.massive-text { font-family: 'Cinzel', serif; font-size: clamp(4rem, 18vw, 14rem); font-weight: 800; letter-spacing: 0.2em; color: rgba(250,240,230,0.02); line-height: 1; text-align: center; user-select: none; }
.site-footer { background: transparent; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.04); }
.site-footer, .site-footer a { color: rgba(250,240,230,0.2); font-size: 0.75rem; }
.site-footer a:hover { color: var(--brand); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== ANIMATIONS ===== */
@keyframes checkPop { 0%{transform:scale(0)} 50%{transform:scale(1.15)} 100%{transform:scale(1)} }
.booking-success-icon { animation: checkPop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.2s both; }
@keyframes preorderSlideIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes preorderBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
@keyframes preorderGlow { 0%,100%{box-shadow:0 4px 20px rgba(245,197,24,0.3)} 50%{box-shadow:0 4px 30px rgba(245,197,24,0.5)} }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title { letter-spacing: 0.08em; }
    .section { padding: 5rem 0; }
    .hero-cta-wrap { flex-direction: column; }
    .d-md-flex-only { display: none !important; }
}
