/* =========================================================
   MARCHICHA SUSHI LOUNGE - PREMIUM TEMPLATE STYLESHEET
   Based 100% on Mayava template style, layout & animations
   ========================================================= */

:root {
    --black:      #111114;
    --dark:       #18161A;
    --card-bg:    #1D1B20;
    --border:     #2D2830;
    --gold:       #C9A84C;
    --gold-light: #E8C97A;
    --red:        #C8102E;
    --green:      #009246;
    --cream:      #F5F0EA;
    --muted:      #9A939E;
}

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

body {
    font-family: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--black);
    color: var(--cream);
    overflow-x: hidden;
}

/* ===== ACCENT BAR ===== */
.flag-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 33.3%, var(--gold-light) 33.3%, var(--gold-light) 66.6%, var(--gold) 66.6%);
}

/* ===== TOPBAR ===== */
#topbar {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

#topbar.scrolled {
    background: rgba(17, 17, 20, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

#topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.25), transparent);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    height: 62px;
}

.topbar-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    line-height: 1;
    text-decoration: none;
}

.topbar-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.topbar-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.topbar-brand-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 45%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topbar-brand-sub {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.52em;
    font-style: italic;
    color: rgba(201, 168, 76, 0.65);
    letter-spacing: 2px;
    margin-top: 4px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switcher {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-right: 4px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    padding: 2px 3px;
    border-radius: 4px;
    opacity: 0.45;
    transition: opacity 0.2s, transform 0.2s;
    line-height: 1;
}

.lang-btn:hover {
    opacity: 0.8;
    transform: scale(1.18);
}

.lang-btn.active {
    opacity: 1;
    transform: scale(1.12);
}

.hamburger {
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.5px;
    width: 38px;
    height: 38px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.hamburger:hover {
    border-color: rgba(201, 168, 76, 0.6);
    background: rgba(201, 168, 76, 0.06);
}

.hamburger span {
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A84C, transparent);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger span:nth-child(1) { width: 18px; }
.hamburger span:nth-child(2) { width: 14px; }
.hamburger span:nth-child(3) { width: 18px; }

.hamburger.open span:nth-child(1) {
    width: 18px;
    transform: translateY(5.5px) rotate(45deg);
    background: #C9A84C;
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    width: 18px;
    transform: translateY(-5.5px) rotate(-45deg);
    background: #C9A84C;
}

.dropdown-menu {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(24, 22, 26, 0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    z-index: 299;
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu.open {
    max-height: 340px;
}

.dropdown-menu a {
    color: rgba(245, 240, 234, 0.75);
    text-decoration: none;
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 18px 32px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    transition: color 0.25s, padding-left 0.25s, background 0.25s;
    position: relative;
}

.dropdown-menu a::before {
    content: '—';
    color: var(--gold);
    margin-right: 14px;
    opacity: 0;
    transition: opacity 0.25s;
}

.dropdown-menu a:hover {
    color: var(--gold);
    padding-left: 40px;
    background: rgba(201, 168, 76, 0.05);
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
    margin: 4px 0;
}

.dropdown-livraison {
    display: block;
    padding: 14px 32px;
    font-size: 0.65em;
    letter-spacing: 2px;
    color: rgba(201, 168, 76, 0.65);
    text-transform: uppercase;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #231C16 0%, #131215 60%, #0D0C0E 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.2) 70%,
        var(--black) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px 20px 45px;
}

.hero-top-block {
    text-align: center;
    margin-top: 0px;
    padding-top: 55px;
}

.hero-bottom-block {
    text-align: center;
}

.hero-title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.hero-deco-line {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 220px;
    opacity: 0;
    animation: fadeIn 0.6s ease 1.4s forwards;
}

.hero-deco-line span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
}

.hero-deco-line em {
    font-style: normal;
    color: var(--gold);
    font-size: 0.55em;
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.7);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scaleX(0.6); }
    to   { opacity: 1; transform: scaleX(1); }
}

.hero-word {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.4em, 6vw, 4.6em);
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    display: flex;
    gap: 0px;
    justify-content: center;
}

.hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-40px) scale(1.4);
    animation: letterDrop 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    color: #C9A84C;
    text-shadow:
        0 0 10px rgba(201, 168, 76, 0.9),
        0 0 30px rgba(201, 168, 76, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.9);
}

@keyframes letterDrop {
    0%   { opacity: 0; transform: translateY(-40px) scale(1.4); }
    60%  { opacity: 1; transform: translateY(4px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-letter.done {
    animation: glowGold 2.5s ease-in-out infinite;
}

@keyframes glowGold {
    0%, 100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        color: #C9A84C;
        text-shadow: 0 0 8px rgba(201,168,76,0.7), 0 0 20px rgba(201,168,76,0.3), 0 3px 6px rgba(0,0,0,0.9);
    }
    50% {
        opacity: 1;
        transform: translateY(0) scale(1);
        color: #E8C97A;
        text-shadow: 0 0 20px rgba(232,201,122,1), 0 0 50px rgba(232,201,122,0.6), 0 3px 6px rgba(0,0,0,0.9);
    }
}

.hero-cta {
    background: transparent;
    border: 1px solid #C9A84C;
    color: #C9A84C;
    padding: 14px 38px;
    font-size: 0.82em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero-cta:hover {
    background: #C9A84C;
    color: #000;
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.4em;
}

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

/* ===== STICKY CATEGORY NAV ===== */
#main-nav {
    background: #18161A;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 62px;
    z-index: 100;
    scrollbar-width: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#main-nav::-webkit-scrollbar {
    display: none;
}

.nav-inner {
    display: inline-flex;
    min-width: 100%;
    justify-content: center;
    padding: 0 16px;
    gap: 4px;
}

.category-btn {
    padding: 16px 18px;
    border: none;
    background: transparent;
    color: rgba(245, 240, 234, 0.6);
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.78em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-btn::before {
    content: '';
    position: absolute;
    inset: 6px 8px;
    border: 1px solid rgba(201, 168, 76, 0);
    border-radius: 2px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

@media (hover: hover) {
    .category-btn:hover { color: #FFFFFF; }
    .category-btn:hover::before {
        border-color: rgba(201, 168, 76, 0.3);
        background: rgba(201, 168, 76, 0.05);
    }
}

.category-btn.active {
    color: #FFFFFF;
    text-shadow: 0 0 16px rgba(201, 168, 76, 0.6);
}

.category-btn.active::before {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.1);
}

/* ===== MAIN CONTENT & MENU GRID ===== */
main {
    background: var(--black);
    min-height: 150vh;
}

.category-section {
    padding: 70px 30px;
    max-width: 1300px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
}

.category-section:last-child {
    border-bottom: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.6em;
    margin-bottom: 8px;
    letter-spacing: 1px;
    background: linear-gradient(90deg,
        #C9A84C 0%, #E8C97A 25%,
        #9B7E35 50%, #E8C97A 75%,
        #C9A84C 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFlow 4s linear infinite;
}

@keyframes titleFlow {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.section-subtitle {
    font-size: 0.72em;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px auto 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 20px;
}

.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #C9A84C 33%, #E8C97A 33%, #E8C97A 66%, #C9A84C 66%);
    z-index: 10;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(201, 168, 76, 0.18), 0 0 0 1px rgba(201, 168, 76, 0.35);
}

.card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 200px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    position: relative;
    overflow: hidden;
    color: #E8C97A;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.card-img.poke-bowls {
    aspect-ratio: 4 / 3;
    max-height: 260px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    will-change: transform, filter;
}

.card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}

.menu-card:hover .card-img::after {
    left: 150%;
    transition: left 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

.item-bat-vip .card-img {
    height: auto !important;
    max-height: none !important;
    background: transparent !important;
    border-bottom: none !important;
}
.item-bat-vip .card-img img {
    height: auto !important;
    display: block;
}

.item-spr-3 .card-img img {
    transform: scale(1.35) translateX(12%) !important;
}
.menu-card.item-spr-3:hover .card-img img {
    transform: scale(1.45) translateX(12%) !important;
}

.menu-card:hover .card-img img {
    transform: scale(1.12);
    filter: brightness(1.08) contrast(1.06);
}

/* Distinct dark luxury gradient tones per category */
.card-img.sushi    { background: linear-gradient(135deg, #18090A 0%, #2A1014 50%, #461720 100%); }
.card-img.sashimi  { background: linear-gradient(135deg, #1A1208 0%, #302010 50%, #4D3316 100%); }
.card-img.maki     { background: linear-gradient(135deg, #0A1810 0%, #112F1F 50%, #1A4D30 100%); }
.card-img.rolls    { background: linear-gradient(135deg, #150F1E 0%, #251838 50%, #392258 100%); }
.card-img.hot      { background: linear-gradient(135deg, #1C1008 0%, #351C0F 50%, #522914 100%); }
.card-img.drinks   { background: linear-gradient(135deg, #0A141E 0%, #12263A 50%, #1D3B5C 100%); }

.card-content {
    padding: 15px 18px 18px;
}

.card-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2em;
    color: var(--cream);
    margin-bottom: 6px;
    font-weight: 700;
}

.card-desc {
    font-size: 0.82em;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 12px;
    min-height: 38px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.price {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.45em;
    font-weight: 700;
    color: var(--gold);
}

.add-btn {
    background: linear-gradient(135deg, #C9A84C, #E8C97A);
    border: none;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    font-size: 1.3em;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 10px rgba(201, 168, 76, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.add-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(201, 168, 76, 0.5);
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--black);
    padding: 60px 30px;
    border-top: 1px solid var(--border);
}

.map-section-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2em;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #C9A84C 0%, #E8C97A 25%, #9B7E35 50%, #E8C97A 75%, #C9A84C 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFlow 4s linear infinite;
    margin-bottom: 6px;
}

.map-sub {
    font-size: 0.72em;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

/* ===== BOTTOM SECTION (ORGANIZED 2-COLUMN LAYOUT) ===== */
#bottom-section {
    padding: 70px 20px 80px;
    background: radial-gradient(circle at center, #1B171A 0%, #121014 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.bottom-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.bottom-card {
    background: rgba(20, 18, 22, 0.75);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.card-deco-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.card-deco-header span {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.card-deco-header em {
    font-style: normal;
    color: var(--gold);
    font-size: 0.8em;
}

.section-card-title {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--gold);
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.section-card-sub {
    color: rgba(245, 240, 234, 0.7);
    font-size: 0.88em;
    text-align: center;
    margin-bottom: 25px;
}

/* Reservation Form */
.res-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 12px;
}

.res-label {
    color: rgba(201, 168, 76, 0.9);
    font-size: 0.82em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.res-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    background: rgba(10, 9, 12, 0.8);
    color: var(--cream);
    font-family: inherit;
    font-size: 0.95em;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.res-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.2);
}

.res-btn {
    background: linear-gradient(135deg, #C9A84C, #E8C97A);
    color: #000;
    font-weight: bold;
    padding: 15px;
    border: none;
    border-radius: 12px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 1.05em;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.res-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(201, 168, 76, 0.5);
}

/* Location Card */
.map-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: auto;
}

.info-box {
    background: rgba(10, 9, 12, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    font-size: 1.3em;
}

.info-text strong {
    display: block;
    font-size: 0.78em;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text p {
    font-size: 0.82em;
    color: rgba(245, 240, 234, 0.85);
    margin: 2px 0 0;
}

.info-text a {
    color: inherit;
    text-decoration: none;
}

.info-text a:hover {
    color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
    background: #0B0A0C;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 35px 20px;
    text-align: center;
}

.footer-bottom {
    max-width: 600px;
    margin: 0 auto;
}

.footer-brand {
    font-family: Georgia, serif;
    font-size: 1.4em;
    font-weight: 700;
    letter-spacing: 3px;
    color: #FFF;
    margin-bottom: 6px;
}

.footer-brand span {
    color: var(--gold);
}

.footer-quote {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.88em;
    color: rgba(201, 168, 76, 0.7);
    margin-bottom: 16px;
}

.footer-bottom-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 180px;
    margin: 0 auto 16px;
}

.footer-bottom-line span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.footer-bottom-line em {
    font-style: normal;
    color: var(--gold);
    font-size: 0.7em;
}

.footer-copy {
    font-size: 0.65em;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}
    margin-bottom: 8px;
}

.footer-bottom-copy {
    font-size: 0.6em;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

/* ===== BOTTOM BAR (CART FLOATING ACTION) ===== */
.bottom-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateY(150%) translateX(-50%);
    left: 50%;
    width: calc(100% - 24px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
    pointer-events: none;
}

.bottom-bar.visible {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 760px) {
    .bottom-bar {
        max-width: 560px;
    }
}

.cart-fab {
    background: rgba(24, 22, 26, 0.96);
    border: 1px solid rgba(201, 168, 76, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.75);
    border-radius: 28px;
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-fab:active {
    transform: scale(0.98);
}

.cart-fab-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 45%, #C9A84C 100%);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.35);
}

.cart-fab-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

.cart-fab-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-fab-title {
    display: block;
    font-weight: 800;
    font-size: 1.05em;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
}

.cart-fab-summary {
    display: block;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-fab-total {
    font-weight: 800;
    color: #C9A84C;
    font-size: 1.1em;
    padding-right: 8px;
}

/* ===== DRAWER STYLES ===== */
.drawer {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 2000;
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    justify-content: center;
}

.drawer.open {
    transform: translateY(0);
}

.drawer-content {
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    width: 100%;
    max-width: 560px;
    border-radius: 34px 34px 0 0;
    max-height: 86vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(201, 168, 76, 0.08);
    color: var(--cream);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.12);
}

.qty-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(201, 168, 76, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
}

.qty-btn {
    background: none;
    border: none;
    color: #C9A84C;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    padding: 0 8px;
}

.order-type-btn {
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: #AAA;
    padding: 12px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    flex: 1;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-type-btn.active {
    background: linear-gradient(135deg, #C9A84C, #E8C97A);
    border-color: transparent;
    color: #000;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.order-field {
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--cream);
    padding: 12px;
    border-radius: 12px;
    font-family: inherit;
    resize: none;
    outline: none;
}

.order-field:focus {
    border-color: #C9A84C;
}

/* ===== PREMIUM ROLLS EXTRA BOX & LEGEND (FROM SUSHI.JPG) ===== */
.card-badge {
    display: inline-block;
    font-size: 0.9em;
    margin-left: 6px;
    vertical-align: middle;
}

.add-extra-box {
    max-width: 950px;
    margin: 45px auto 30px;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 12px;
    padding: 24px 30px;
    background: rgba(201, 168, 76, 0.04);
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.add-extra-title {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 30px;
    border-right: 1px solid rgba(201, 168, 76, 0.3);
}

.add-extra-title-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1.2;
}

.extra-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px 24px;
}

.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85em;
    color: var(--cream);
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: border-color 0.2s, background 0.2s;
}

.extra-item:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.08);
}

.extra-name {
    color: rgba(245, 240, 234, 0.85);
}

.extra-price {
    font-family: Georgia, serif;
    font-weight: 700;
    color: var(--gold);
    margin-left: 10px;
}

.extra-add-btn {
    background: linear-gradient(135deg, #C9A84C, #E8C97A);
    border: none;
    border-radius: 6px;
    width: 24px;
    height: 24px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    font-size: 1.1em;
    display: grid;
    place-items: center;
    margin-left: 10px;
    transition: transform 0.2s;
}

.extra-add-btn:hover {
    transform: scale(1.15);
}

.legend-bar {
    max-width: 950px;
    margin: 0 auto 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 16px 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Georgia, serif;
    font-size: 0.82em;
    color: rgba(201, 168, 76, 0.85);
    letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-word { font-size: 2.5em; letter-spacing: 6px; }
    .menu-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
    .category-section { padding: 45px 16px; }
    .section-title { font-size: 2em; }
    .footer-inner { flex-direction: column; gap: 30px; }
    .footer-divider-v { display: none; }
    .add-extra-box { flex-direction: column; text-align: center; gap: 20px; padding: 20px; }
    .add-extra-title { border-right: none; border-bottom: 1px solid rgba(201, 168, 76, 0.3); padding-right: 0; padding-bottom: 14px; width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .menu-grid { grid-template-columns: 1fr; }
    .extra-grid { grid-template-columns: 1fr; }
}

/* ===== WORLDS INTRO BANNER & ANIMATIONS ===== */
.worlds-intro-banner {
    padding: 70px 20px 45px;
    background: radial-gradient(circle at center, #1E1A22 0%, #111013 70%, #0B0A0C 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    border-top: 1px solid rgba(201,168,76,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ===== EXTRAS SCROLL LIST (CART DRAWER) ===== */
.extras-scroll-container {
    display: flex; 
    gap: 12px; 
    overflow-x: auto; 
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.extras-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.extra-item {
    min-width: 90px; 
    width: 90px;
    background: rgba(13,12,14,0.8); 
    border: 1px solid rgba(201,168,76,0.25); 
    border-radius: 8px; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.2s;
}

.extra-item .item-title {
    font-weight: bold; 
    color: #F5F0EA; 
    font-size: 0.65em; 
    text-align: center;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
}

.extra-item:active {
    transform: scale(0.95);
}

.worlds-tag {
    font-family: Georgia, serif;
    font-size: 0.85em;
    letter-spacing: 4px;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 8px 22px;
    border-radius: 30px;
    margin-bottom: 16px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.15);
    animation: tagPulse 3s ease-in-out infinite;
}

.worlds-main-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.5em;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 8px 0 16px;
    background: linear-gradient(135deg, #F5F0EA 0%, #E8C97A 50%, #C9A84C 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 5s ease infinite;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.worlds-deco {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 240px;
}

.worlds-deco span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.8), transparent);
    animation: linePulse 3s ease-in-out infinite;
}

.worlds-deco em {
    font-style: normal;
    color: var(--gold);
    font-size: 1.1em;
    animation: spinGlow 6s linear infinite;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(201, 168, 76, 0.15); }
    50% { transform: scale(1.04); box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35); }
}

@keyframes linePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes spinGlow {
    0% { transform: rotate(0deg); color: var(--gold); }
    50% { transform: rotate(180deg); color: #FFF; }
    100% { transform: rotate(360deg); color: var(--gold); }
}

@media (max-width: 768px) {
    .worlds-main-title { font-size: 1.8em; letter-spacing: 2px; }
    .worlds-intro-banner { padding: 50px 16px 35px; }
}

/* ===== STICKY PINNED SCROLL SHOWCASE ===== */
.worlds-wrapper {
    position: relative;
    width: 100%;
    height: 300vh; /* 3 full heights for smooth pinned scroll */
    background: #000;
}

.worlds-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.world-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1) contrast(1);
    will-change: clip-path;
}

.world-layer.layer-1 {
    z-index: 1;
}

.world-layer.layer-2 {
    z-index: 2;
    clip-path: inset(100% 0 0 0); /* Start hidden from bottom */
}

.world-layer.layer-3 {
    z-index: 3;
    clip-path: inset(100% 0 0 0); /* Start hidden from bottom */
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 85px 24px;
    background: radial-gradient(circle at center, #19161F 0%, #111013 70%, #0A090B 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-tag {
    font-family: Georgia, serif;
    font-size: 0.82em;
    letter-spacing: 4px;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.reviews-title {
    font-family: Georgia, serif;
    font-size: 2.3em;
    color: #F5F0EA;
    margin-bottom: 14px;
    font-weight: 700;
}

.reviews-deco {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 200px;
    margin-bottom: 24px;
}
.reviews-deco span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent); }
.reviews-deco em { font-style: normal; color: var(--gold); }

/* Google Rating Badge */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(13, 12, 14, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 12px 24px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.15);
}

.google-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    padding: 8px;
    border-radius: 50%;
}

.google-rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.rating-num {
    font-weight: bold;
    font-size: 1.15em;
    color: var(--gold);
    font-family: Georgia, serif;
}

.stars-row {
    color: #FFC107;
    font-size: 1em;
    letter-spacing: 2px;
    margin: 2px 0;
}

.rating-sub {
    font-size: 0.78em;
    color: rgba(245, 240, 234, 0.7);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: rgba(13, 12, 14, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(201, 168, 76, 0.25);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A2530, #3B3445);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    font-weight: bold;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar.gold-bg {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.9), rgba(232, 201, 122, 0.9));
    color: #000;
}

.reviewer-name {
    font-family: Georgia, serif;
    font-size: 1.05em;
    color: #F5F0EA;
    margin: 0 0 2px 0;
    font-weight: bold;
}

.review-date {
    font-size: 0.75em;
    color: rgba(245, 240, 234, 0.5);
}

.verified-badge {
    font-size: 0.72em;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.review-stars {
    color: #FFC107;
    font-size: 1.1em;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 0.95em;
    color: rgba(245, 240, 234, 0.85);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

