/* ===========================================================
   GORILA SAN - Sushi Japonés
   =========================================================== */

:root {
    --orange: #FF6B1A;
    --orange-light: #FF8A47;
    --orange-dark: #E55A0F;
    --orange-soft: #FFF1E8;
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --black-mid: #2A2A2A;
    --gray: #6B6B6B;
    --gray-light: #B5B5B5;
    --cream: #FAF6F0;
    --cream-2: #F5EFE6;
    --white: #FFFFFF;
    --green-wa: #25D366;

    --font-display: 'Anton', sans-serif;
    --font-bebas: 'Bebas Neue', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(10,10,10,0.08);
    --shadow: 0 8px 24px rgba(10,10,10,0.12);
    --shadow-lg: 0 16px 48px rgba(10,10,10,0.18);
    --shadow-orange: 0 12px 32px rgba(255,107,26,0.35);

    --container: 1280px;
    --header-h: 80px;

    --ease: cubic-bezier(0.7, 0, 0.3, 1);
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--black);
    background: var(--cream);
    overflow-x: hidden;
    max-width: 100vw;
    line-height: 1.6;
    position: relative;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--orange); color: var(--white); }

/* Japanese Wave Pattern Background (Seigaiha) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.08'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/><circle cx='40' cy='40' r='8'/><circle cx='0' cy='40' r='38'/><circle cx='80' cy='40' r='38'/><circle cx='40' cy='0' r='38'/><circle cx='40' cy='80' r='38'/></g></svg>");
    background-size: 120px 120px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ===========================================================
   PRELOADER · Hanko Stamp Animation
   =========================================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    contain: layout paint style;
    will-change: opacity;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.2'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/><circle cx='0' cy='40' r='38'/><circle cx='80' cy='40' r='38'/><circle cx='40' cy='0' r='38'/><circle cx='40' cy='80' r='38'/></g></svg>");
    background-size: 100px 100px;
    opacity: 0.5;
}

.pl-floating-kanji {
    position: absolute;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--orange);
    opacity: 0;
    animation: kanjiDrift 4s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pl-floating-kanji.k-a { top: 12%; left: 12%; font-size: 5rem; opacity: 0; animation-delay: 0s; }
.pl-floating-kanji.k-b { top: 18%; right: 14%; font-size: 4rem; animation-delay: 0.6s; }
.pl-floating-kanji.k-c { bottom: 18%; left: 18%; font-size: 4.5rem; animation-delay: 1.2s; }
.pl-floating-kanji.k-d { bottom: 14%; right: 12%; font-size: 5rem; animation-delay: 1.8s; }

@keyframes kanjiDrift {
    0% { opacity: 0; transform: translateY(20px) scale(0.8); }
    30%, 70% { opacity: 0.18; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-20px) scale(1.05); }
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* === Hanko Stamp Wrapper === */
.pl-stamp {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pulsing rings outside the disk */
.pl-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--orange);
    opacity: 0;
    animation: plPulse 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pl-pulse-1 { animation-delay: 0.5s; }
.pl-pulse-2 { animation-delay: 1.4s; }

@keyframes plPulse {
    0% { transform: scale(0.85) translateZ(0); opacity: 0; }
    20% { opacity: 0.8; }
    100% { transform: scale(1.7) translateZ(0); opacity: 0; }
}

/* Main disk that "stamps" in */
.pl-disk {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #FAF1E4 0%, #F5E8D3 100%);
    box-shadow:
        0 0 60px rgba(255,107,26,0.45),
        inset 0 -8px 20px rgba(255,107,26,0.1);
    transform: scale(0) rotate(-30deg);
    animation: plDiskStamp 0.9s 0.2s var(--bounce) forwards, plDiskFloat 2.5s 1.2s ease-in-out infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pl-disk::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><g fill='none' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.25'><circle cx='20' cy='20' r='18'/><circle cx='20' cy='20' r='12'/><circle cx='20' cy='20' r='6'/></g></svg>");
    background-size: 40px 40px;
    opacity: 0;
    animation: plPatternIn 0.6s 0.6s ease forwards;
}

@keyframes plDiskStamp {
    0% { transform: scale(0) rotate(-30deg); }
    60% { transform: scale(1.15) rotate(8deg); }
    80% { transform: scale(0.93) rotate(-3deg); }
    100% { transform: scale(1) rotate(0); }
}

@keyframes plDiskFloat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.02) translateY(-4px); }
}

@keyframes plPatternIn {
    to { opacity: 1; }
}

/* Logo inside the disk */
.pl-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64%;
    height: 64%;
    object-fit: contain;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: plLogoIn 0.7s 0.7s var(--bounce) forwards;
    filter: drop-shadow(0 6px 16px rgba(255,107,26,0.4));
    z-index: 3;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes plLogoIn {
    0% { transform: translate(-50%, -50%) scale(0) rotate(-90deg); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1) rotate(0); opacity: 1; }
}

/* Particles flying outward when stamp lands */
.pl-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px rgba(255,107,26,0.6);
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.pl-particle.p1 { animation: particle 0.8s 1s ease-out forwards; --tx: 110px; --ty: -30px; }
.pl-particle.p2 { animation: particle 0.8s 1s ease-out forwards; --tx: 80px; --ty: -80px; width: 6px; height: 6px; }
.pl-particle.p3 { animation: particle 0.8s 1s ease-out forwards; --tx: 30px; --ty: -110px; }
.pl-particle.p4 { animation: particle 0.8s 1s ease-out forwards; --tx: -30px; --ty: -100px; width: 5px; height: 5px; }
.pl-particle.p5 { animation: particle 0.8s 1s ease-out forwards; --tx: -100px; --ty: -50px; }
.pl-particle.p6 { animation: particle 0.8s 1s ease-out forwards; --tx: -110px; --ty: 20px; width: 6px; height: 6px; }
.pl-particle.p7 { animation: particle 0.8s 1s ease-out forwards; --tx: -80px; --ty: 80px; }
.pl-particle.p8 { animation: particle 0.8s 1s ease-out forwards; --tx: 90px; --ty: 70px; width: 5px; height: 5px; }

@keyframes particle {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    20% { opacity: 1; transform: translate(calc(-50% + var(--tx) * 0.3), calc(-50% + var(--ty) * 0.3)) scale(1.3); }
    100% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0); opacity: 0; }
}

/* Title */
.pl-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 2.6rem;
    letter-spacing: 6px;
    margin-bottom: 6px;
    overflow: hidden;
    line-height: 1;
}

.pl-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotate(8deg);
    animation: letterReveal 0.6s var(--bounce) forwards;
}

.pl-title span.space { width: 14px; }

.pl-title span:nth-child(1) { animation-delay: 1.2s; }
.pl-title span:nth-child(2) { animation-delay: 1.25s; }
.pl-title span:nth-child(3) { animation-delay: 1.3s; }
.pl-title span:nth-child(4) { animation-delay: 1.35s; }
.pl-title span:nth-child(5) { animation-delay: 1.4s; }
.pl-title span:nth-child(6) { animation-delay: 1.45s; }
.pl-title span:nth-child(7) { animation-delay: 1.5s; }
.pl-title span:nth-child(8) { animation-delay: 1.55s; }
.pl-title span:nth-child(9) { animation-delay: 1.6s; }
.pl-title span:nth-child(10) { animation-delay: 1.65s; }

@keyframes letterReveal {
    to { opacity: 1; transform: translateY(0) rotate(0); }
}

.pl-jp {
    font-family: var(--font-jp);
    color: var(--orange);
    font-size: 1.3rem;
    letter-spacing: 6px;
    font-weight: 500;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeIn 0.5s 1.7s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.pl-bar {
    width: 220px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    margin: 0 auto 14px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.4s 1.8s forwards;
}

.pl-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 4px;
    animation: barFill 1.6s 1.85s cubic-bezier(0.7, 0, 0.3, 1) forwards;
    box-shadow: 0 0 8px var(--orange);
}

@keyframes barFill {
    0% { width: 0; }
    100% { width: 100%; }
}

.pl-loading {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    animation: fadeIn 0.4s 2s forwards;
}

/* Mobile preloader sizing */
@media (max-width: 720px) {
    .pl-stamp { width: 140px; height: 140px; margin-bottom: 22px; }
    .pl-title { font-size: 2rem; letter-spacing: 4px; }
    .pl-jp { font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 22px; }
    .pl-bar { width: 180px; }
    .pl-floating-kanji.k-a { font-size: 3rem; }
    .pl-floating-kanji.k-b { font-size: 2.5rem; }
    .pl-floating-kanji.k-c { font-size: 2.8rem; }
    .pl-floating-kanji.k-d { font-size: 3rem; }
    .pl-particle { width: 6px; height: 6px; }
    .pl-particle.p1 { --tx: 75px; --ty: -20px; }
    .pl-particle.p2 { --tx: 55px; --ty: -55px; }
    .pl-particle.p3 { --tx: 20px; --ty: -75px; }
    .pl-particle.p4 { --tx: -20px; --ty: -70px; }
    .pl-particle.p5 { --tx: -70px; --ty: -35px; }
    .pl-particle.p6 { --tx: -75px; --ty: 15px; }
    .pl-particle.p7 { --tx: -55px; --ty: 55px; }
    .pl-particle.p8 { --tx: 60px; --ty: 50px; }
}

/* ===========================================================
   FLOATING KANJI BACKGROUND
   =========================================================== */
.floating-kanji {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.kanji {
    position: absolute;
    font-family: var(--font-jp);
    color: var(--orange);
    opacity: 0.04;
    font-weight: 900;
    user-select: none;
}

.k1 { top: 8%; left: 4%; font-size: 12rem; }
.k2 { top: 28%; right: 6%; font-size: 8rem; }
.k3 { top: 55%; left: 8%; font-size: 10rem; }
.k4 { top: 75%; right: 4%; font-size: 9rem; }
.k5 { top: 92%; left: 30%; font-size: 11rem; }
.k6 { top: 5%; right: 25%; font-size: 7rem; }
.k7 { top: 42%; left: 45%; font-size: 14rem; opacity: 0.025; }

/* ===========================================================
   NAVBAR
   =========================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250,246,240,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10,10,10,0.05);
    transition: all 0.3s var(--ease);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.nav-logo:hover { transform: scale(1.05); }

.nav-logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--orange); }
.nav-link:hover::after { width: 100%; }

/* Cotizador CTA in navbar */
.nav-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px !important;
    background: var(--orange);
    color: var(--white);
    border-radius: 999px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 14px rgba(255,107,26,0.3);
}

.nav-link-cta::after { display: none !important; }

.nav-link-cta:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.nav-link-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: currentColor;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.nav-link-icon.icon-domicilio {
    -webkit-mask-image: url('adomicilio.svg?v=20260424-12');
    mask-image: url('adomicilio.svg?v=20260424-12');
}

/* Mobile cotizador CTA */
.mobile-nav-cta {
    color: var(--orange) !important;
}

.mobile-nav-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: currentColor;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    margin-right: 6px;
    vertical-align: middle;
}

.mobile-nav-icon.icon-domicilio {
    -webkit-mask-image: url('adomicilio.svg?v=20260424-12');
    mask-image: url('adomicilio.svg?v=20260424-12');
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.cart-btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cream);
    transition: all 0.3s var(--bounce);
}

.cart-btn:hover .cart-count {
    background: var(--white);
    color: var(--orange);
    border-color: var(--orange);
}

.cart-count.bump {
    animation: bump 0.5s var(--bounce);
}

@keyframes bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover { background: var(--orange); }

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.12'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/><circle cx='0' cy='40' r='38'/><circle cx='80' cy='40' r='38'/><circle cx='40' cy='0' r='38'/><circle cx='40' cy='80' r='38'/></g></svg>");
    background-size: 100px 100px;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
}

.mobile-menu.active .mobile-menu-bg {
    transform: translateY(0);
}

.mobile-menu-inner {
    position: relative;
    height: 100vh;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s 0.3s ease;
}

.mobile-menu.active .mobile-menu-header {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.mobile-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,107,26,0.15);
    border: 1px solid var(--orange);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    transition: all 0.3s ease;
}

.mobile-close:hover {
    background: var(--orange);
    transform: rotate(90deg);
}

.mobile-jp {
    font-family: var(--font-jp);
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0;
    transition: all 0.4s 0.4s ease;
}

.mobile-menu.active .mobile-jp {
    opacity: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 18px 0;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
    position: relative;
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.4s; opacity: 1; transform: translateX(0); }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.45s; opacity: 1; transform: translateX(0); }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.5s; opacity: 1; transform: translateX(0); }
.mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.55s; opacity: 1; transform: translateX(0); }
.mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.6s; opacity: 1; transform: translateX(0); }

.mobile-nav-link .num {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    letter-spacing: 2px;
}

.mobile-nav-link:hover {
    color: var(--orange);
    padding-left: 12px;
}

.mobile-cta {
    margin-top: 32px;
    background: var(--orange);
    color: var(--white);
    padding: 20px 32px;
    border-radius: 999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s 0.7s ease;
}

.mobile-menu.active .mobile-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-cta:hover {
    background: var(--white);
    color: var(--orange);
}

.mobile-menu-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0;
    transition: all 0.4s 0.8s ease;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
}

.mobile-menu-footer p {
    color: var(--gray-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.mobile-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.mobile-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.mobile-social a:hover {
    background: var(--orange);
    color: var(--white);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--header-h) + 60px) 0 80px;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><path d='M0,50 Q25,0 50,50 T100,50' stroke='%23FF6B1A' stroke-width='1' fill='none' opacity='0.15'/><path d='M0,70 Q25,20 50,70 T100,70' stroke='%23FF6B1A' stroke-width='1' fill='none' opacity='0.1'/><path d='M0,30 Q25,-20 50,30 T100,30' stroke='%23FF6B1A' stroke-width='1' fill='none' opacity='0.1'/></svg>");
    background-size: 200px 200px;
    opacity: 0.6;
    animation: bgScroll 30s linear infinite reverse;
}

.hero-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--orange);
    filter: blur(80px);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.c1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.c2 { width: 500px; height: 500px; top: 30%; right: -200px; opacity: 0.1; animation-delay: 2s; }
.c3 { width: 300px; height: 300px; bottom: -50px; left: 30%; opacity: 0.12; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 140px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255,107,26,0.1);
    border: 1px solid rgba(255,107,26,0.2);
    border-radius: 999px;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-tag .dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.95;
    color: var(--black);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-wrap: balance;
}

.hero-title em {
    font-style: normal;
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(255,107,26,0.2);
    z-index: -1;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: inline-block;
    transform: translateY(100%);
    animation: lineUp 0.9s var(--ease) forwards;
}

.hero-title .line-1 { animation: lineUp 0.9s 0.3s var(--ease) forwards; opacity: 0; transform: translateY(40px); }
.hero-title .line-2 { animation: lineUp 0.9s 0.45s var(--ease) forwards; opacity: 0; transform: translateY(40px); }
.hero-title .line-3 { animation: lineUp 0.9s 0.6s var(--ease) forwards; opacity: 0; transform: translateY(40px); }

@keyframes lineUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 460px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s forwards;
    text-wrap: balance;
}

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

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.85s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-lg { padding: 22px 44px; font-size: 1.15rem; }

.btn-primary {
    background: var(--orange);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--black);
    border-radius: 50%;
    transition: all 0.5s var(--ease);
    transform: translate(-50%, -50%);
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--green-wa);
    color: var(--white);
    width: 100%;
    padding: 20px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.3);
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 1s forwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--black);
    line-height: 1;
}

.stat-unit {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--orange);
}

.stat p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-circle {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #FAF1E4 0%, #F5E8D3 100%);
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.18'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/><circle cx='0' cy='40' r='38'/><circle cx='80' cy='40' r='38'/><circle cx='40' cy='0' r='38'/><circle cx='40' cy='80' r='38'/></g></svg>"),
        linear-gradient(135deg, #FAF1E4 0%, #F5E8D3 100%);
    background-size: 100px 100px, cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: heroCircle 1s 0.5s var(--bounce) backwards, heroGlow 3s ease-in-out infinite;
    box-shadow:
        0 0 0 0 rgba(255,107,26,0.5),
        0 30px 80px rgba(255,107,26,0.25);
}

@keyframes heroCircle {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes heroGlow {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(255,107,26,0.45),
            0 0 60px 10px rgba(255,107,26,0.2),
            0 30px 80px rgba(255,107,26,0.25);
    }
    50% {
        box-shadow:
            0 0 0 25px rgba(255,107,26,0),
            0 0 100px 30px rgba(255,107,26,0.35),
            0 30px 80px rgba(255,107,26,0.35);
    }
}

.hero-logo-img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    animation: floatY 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255,107,26,0.35));
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-image-jp {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    font-family: var(--font-jp);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    letter-spacing: 4px;
    white-space: nowrap;
    opacity: 0;
    animation: fadeUp 0.7s 1.2s forwards;
}

.floating-element {
    position: absolute;
    font-family: var(--font-jp);
    font-weight: 900;
    color: var(--black);
    background: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    animation: floatY 5s ease-in-out infinite;
}

.fe-1 {
    top: 5%;
    right: 0;
    background: var(--white);
    color: var(--orange);
    animation-delay: 0.5s;
}

.fe-2 {
    bottom: 15%;
    left: -20px;
    background: var(--black);
    color: var(--orange);
    animation-delay: 1s;
}

.fe-3 {
    top: 50%;
    right: -30px;
    background: var(--orange);
    color: var(--white);
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    animation-delay: 1.5s;
}

.hero-side-text {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
    color: var(--orange);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.5;
    display: flex;
    gap: 30px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 5;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--orange);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===========================================================
   MARQUEE
   =========================================================== */
.marquee {
    background: var(--black);
    color: var(--white);
    padding: 20px 0;
    overflow: hidden;
    border-top: 4px solid var(--orange);
    border-bottom: 4px solid var(--orange);
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    align-items: center;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.marquee-track .dot-sep {
    color: var(--orange);
    font-size: 0.8rem;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===========================================================
   SECTION HEADERS
   =========================================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.section-tag.center { justify-content: center; display: flex; }

.tag-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--orange);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-wrap: balance;
}

.section-title.center { text-align: center; }

.section-title em {
    font-style: normal;
    color: var(--orange);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    text-wrap: balance;
}

.section-head { margin-bottom: 64px; }

/* ===========================================================
   ABOUT
   =========================================================== */
.about {
    padding: 120px 0;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.about-bg-circle {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: var(--orange);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(100px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    aspect-ratio: 4/5;
}

.about-image-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FAF1E4 0%, #F5E8D3 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: aboutGlow 3s ease-in-out infinite;
}

@keyframes aboutGlow {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(255,107,26,0.4),
            0 0 50px 8px rgba(255,107,26,0.15),
            var(--shadow-lg);
    }
    50% {
        box-shadow:
            0 0 0 22px rgba(255,107,26,0),
            0 0 90px 24px rgba(255,107,26,0.3),
            var(--shadow-lg);
    }
}

.about-image-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.15'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/><circle cx='0' cy='40' r='38'/><circle cx='80' cy='40' r='38'/><circle cx='40' cy='0' r='38'/><circle cx='40' cy='80' r='38'/></g></svg>");
    background-size: 100px 100px;
}

.about-img-logo {
    width: 75%;
    height: 75%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: floatY 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(255,107,26,0.3));
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: rotate(-3deg);
    transition: transform 0.4s var(--ease);
}

.about-badge:hover { transform: rotate(0); }

.badge-jp {
    display: block;
    font-family: var(--font-jp);
    color: var(--orange);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
    text-wrap: pretty;
}

.about-text strong { color: var(--black); }
.about-text em { font-style: normal; color: var(--orange); font-weight: 600; }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature h4 {
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 4px;
}

.feature p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===========================================================
   SIGNATURE DISHES
   =========================================================== */
.signature {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.signature-bg-jp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-jp);
    font-size: 30rem;
    font-weight: 900;
    color: var(--orange);
    opacity: 0.04;
    z-index: 1;
    user-select: none;
    line-height: 1;
}

.signature .section-title { color: var(--white); }
.signature .section-subtitle { color: var(--gray-light); }

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.sig-card {
    background: var(--black-soft);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sig-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sig-card:hover::before { opacity: 1; }

.sig-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
}

.sig-card-img {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sig-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.2'><circle cx='30' cy='30' r='28'/><circle cx='30' cy='30' r='20'/><circle cx='30' cy='30' r='12'/></g></svg>");
    background-size: 80px 80px;
}

.sig-card-icon {
    font-family: var(--font-jp);
    font-size: 5rem;
    color: var(--white);
    font-weight: 900;
    z-index: 2;
    position: relative;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.5s var(--bounce);
}

.sig-card:hover .sig-card-icon { transform: scale(1.15) rotate(-5deg); }

.sig-card-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.sig-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-wrap: balance;
}

.sig-card p {
    color: var(--gray-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 70px;
    text-wrap: pretty;
}

.sig-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.sig-card-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange);
}

.sig-card-add {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    font-size: 1.5rem;
}

.sig-card-add:hover {
    background: var(--white);
    color: var(--orange);
    transform: rotate(90deg);
}

/* ===========================================================
   MENU
   =========================================================== */
.menu {
    padding: 120px 0;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.menu-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.06'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/></g></svg>");
    background-size: 80px 80px;
}

/* === Custom Category Selector === */
.menu-select {
    position: relative;
    max-width: 460px;
    margin: 0 auto 48px;
    z-index: 5;
}

.menu-select-trigger {
    width: 100%;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 999px;
    padding: 12px 22px 12px 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s var(--ease);
    font-family: inherit;
}

.menu-select-trigger:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.menu-select.open .menu-select-trigger {
    border-color: var(--orange);
    box-shadow: var(--shadow-orange);
}

.menu-select-kanji {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-jp);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(255,107,26,0.35);
    transition: transform 0.3s var(--bounce);
}

.menu-select-trigger:hover .menu-select-kanji {
    transform: rotate(-8deg) scale(1.05);
}

.menu-select-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.menu-select-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}

.menu-select-current {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-select-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease;
}

.menu-select.open .menu-select-arrow {
    transform: rotate(180deg);
    background: var(--orange);
    color: var(--white);
}

/* Dropdown Panel */
.menu-select-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(10,10,10,0.18), 0 0 0 1px rgba(255,107,26,0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
    transform-origin: top center;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s ease;
    z-index: 10;
}

.menu-select.open .menu-select-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.menu-select-list {
    max-height: 380px;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--orange) transparent;
}

.menu-select-list::-webkit-scrollbar { width: 6px; }
.menu-select-list::-webkit-scrollbar-track { background: transparent; }
.menu-select-list::-webkit-scrollbar-thumb { background: rgba(255,107,26,0.4); border-radius: 4px; }

.menu-select-option {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: all 0.2s var(--ease);
    color: var(--black);
}

.menu-select-option:hover {
    background: var(--orange-soft);
    transform: translateX(4px);
}

.menu-select-option.active {
    background: var(--orange);
    color: var(--white);
}

.menu-select-option.active:hover {
    transform: translateX(0);
}

.menu-select-option-kanji {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-jp);
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    transition: all 0.2s ease;
}

.menu-select-option.active .menu-select-option-kanji {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.menu-select-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.menu-select-option-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.menu-select-option-jp {
    font-family: var(--font-jp);
    font-size: 0.75rem;
    opacity: 0.6;
    line-height: 1;
}

.menu-select-option.active .menu-select-option-jp { opacity: 0.85; }

.menu-select-option-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.3s var(--bounce);
}

.menu-select-option.active .menu-select-option-check {
    opacity: 1;
    transform: scale(1);
}

/* Backdrop overlay (mobile-friendly) */
.menu-select-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 4;
    display: none;
}

.menu-select.open .menu-select-backdrop { display: block; }

@media (max-width: 720px) {
    .menu-select { max-width: 100%; margin-bottom: 36px; }
    .menu-select-trigger { padding: 10px 18px 10px 10px; gap: 12px; }
    .menu-select-kanji { width: 48px; height: 48px; font-size: 1.4rem; }
    .menu-select-current { font-size: 1.25rem; }
    .menu-select-eyebrow { font-size: 0.65rem; letter-spacing: 2px; }
    .menu-select-arrow { width: 32px; height: 32px; }
    .menu-select-list { max-height: 60vh; }
    .menu-select-option { padding: 10px 12px; gap: 12px; }
    .menu-select-option-kanji { width: 36px; height: 36px; font-size: 1rem; }
    .menu-select-option-name { font-size: 1rem; }
}

.menu-content { position: relative; min-height: 400px; }

.menu-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category.active { display: block; }

.menu-category-head {
    text-align: center;
    margin-bottom: 48px;
}

.menu-category-jp {
    font-family: var(--font-jp);
    font-size: 2rem;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 8px;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-wrap: balance;
}

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

.menu-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.4s var(--ease);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.menu-item:hover::before { transform: scaleX(1); }

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255,107,26,0.2);
}

.menu-item-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item-name .badge {
    display: inline-block;
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 1px;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--orange);
    flex-shrink: 0;
    line-height: 1;
}

.menu-item-desc {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    text-wrap: pretty;
}

.menu-item-add {
    margin-top: auto;
    padding: 12px 20px;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
}

.menu-item-add:hover {
    background: var(--orange);
    color: var(--white);
}

.menu-item-add svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--bounce);
}

.menu-item-add:hover svg { transform: rotate(180deg); }

/* ===========================================================
   CTA SECTION
   =========================================================== */
.cta-section {
    padding: 80px 0;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.cta-box {
    background: var(--orange);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.15'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/><circle cx='0' cy='40' r='38'/><circle cx='80' cy='40' r='38'/><circle cx='40' cy='0' r='38'/><circle cx='40' cy='80' r='38'/></g></svg>");
    background-size: 100px 100px;
    animation: bgScroll 20s linear infinite;
}

.cta-jp {
    font-family: var(--font-jp);
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 6px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    text-wrap: balance;
}

.cta-box h2 em {
    font-style: normal;
    color: var(--black);
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-box .btn {
    background: var(--white);
    color: var(--orange);
    position: relative;
    z-index: 2;
}

.cta-box .btn::before { background: var(--black); }
.cta-box .btn:hover { color: var(--white); }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-info .section-title { margin-bottom: 36px; }

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h4 {
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-card-big {
    background: var(--black);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-card-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.15'><circle cx='40' cy='40' r='38'/><circle cx='40' cy='40' r='28'/><circle cx='40' cy='40' r='18'/></g></svg>");
    background-size: 80px 80px;
}

.contact-iso {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    animation: floatY 4s ease-in-out infinite;
}

.contact-card-big h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.contact-card-big p {
    color: var(--gray-light);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.contact-card-big .btn {
    position: relative;
    z-index: 2;
}

.contact-card-jp {
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-family: var(--font-jp);
    font-size: 1.1rem;
    color: var(--orange);
    opacity: 0.6;
    z-index: 3;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><g fill='none' stroke='%23FF6B1A' stroke-width='1' stroke-opacity='0.05'><circle cx='50' cy='50' r='48'/><circle cx='50' cy='50' r='38'/><circle cx='50' cy='50' r='28'/></g></svg>");
    background-size: 100px 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 70px;
    width: auto;
    max-width: 100%;
    margin-bottom: 16px;
}

.footer-jp {
    font-family: var(--font-jp);
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.footer-text {
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--orange);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col li, .footer-col a {
    color: var(--gray-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    color: var(--gray-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-social a:hover { color: var(--orange); }

/* ===========================================================
   CART SIDEBAR
   =========================================================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 60px rgba(0,0,0,0.2);
}

.cart-sidebar.active { transform: translateX(0); }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1;
}

.cart-jp {
    font-family: var(--font-jp);
    color: var(--orange);
    font-size: 0.95rem;
    margin-top: 4px;
}

.cart-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--black);
    font-size: 28px;
    line-height: 1;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: var(--orange);
    color: var(--white);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
}

.cart-empty {
    text-align: center;
    padding: 40px 16px;
}

.cart-empty-icon {
    color: var(--gray-light);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.cart-empty h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cart-empty p {
    color: var(--gray);
    margin-bottom: 24px;
}

.cart-empty.hide { display: none; }

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cart-item.entering {
    animation: cartItemIn 0.35s var(--bounce);
}

.cart-item.removing {
    animation: cartItemOut 0.28s ease forwards;
    pointer-events: none;
}

.cart-item.bump .qty-num {
    animation: qtyBump 0.3s var(--bounce);
}

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

@keyframes cartItemOut {
    from { opacity: 1; transform: translateX(0); max-height: 200px; margin-bottom: 0; }
    to { opacity: 0; transform: translateX(40px); max-height: 0; margin-bottom: -16px; padding-top: 0; padding-bottom: 0; }
}

@keyframes qtyBump {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); color: var(--orange); }
    100% { transform: scale(1); }
}

.cart-item-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-jp);
    font-size: 1.4rem;
    font-weight: 900;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--black);
}

.cart-item-price {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover { background: var(--orange); color: var(--white); }

.qty-num {
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    align-self: flex-start;
    width: 28px;
    height: 28px;
    color: var(--gray);
    background: transparent;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover { color: var(--orange); }

.cart-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid #f0f0f0;
    display: none;
}

.cart-footer.active { display: block; }

.cart-delivery {
    margin-bottom: 16px;
}

.cart-delivery-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 700;
}

.cart-delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    background: var(--cream);
    padding: 5px;
    border-radius: 14px;
}

.cart-delivery-option {
    padding: 11px 10px;
    border-radius: 10px;
    background: transparent;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
    line-height: 1;
    font-family: inherit;
}

.cart-delivery-option:hover:not(.active) {
    color: var(--orange);
}

.cart-delivery-option.active {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 6px 14px rgba(255,107,26,0.35);
    transform: translateY(-1px);
}

.cart-delivery-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: currentColor;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background 0.3s ease;
}

.icon-recoger {
    -webkit-mask-image: url('recoger.svg?v=20260424-8');
    mask-image: url('recoger.svg?v=20260424-8');
}

.icon-domicilio {
    -webkit-mask-image: url('adomicilio.svg?v=20260424-8');
    mask-image: url('adomicilio.svg?v=20260424-8');
}

.cart-delivery-option.active .cart-delivery-icon { background: var(--white); }

.cart-location {
    margin-bottom: 16px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s var(--ease), opacity 0.3s ease, margin 0.3s ease;
}

.cart-location.active {
    max-height: 320px;
    opacity: 1;
}

.cart-location-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.cart-location-btn {
    padding: 11px 12px;
    border: 1.5px solid rgba(255,107,26,0.25);
    background: var(--white);
    color: var(--black);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
    text-decoration: none;
    font-family: inherit;
    line-height: 1.2;
    text-align: center;
}

.cart-location-btn svg {
    flex-shrink: 0;
    color: var(--orange);
    transition: color 0.3s ease;
}

.cart-location-btn:hover {
    border-color: var(--orange);
    background: var(--orange-soft);
    transform: translateY(-1px);
}

.cart-location-btn.active {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.cart-location-btn.active svg { color: var(--white); }

.cart-location-input {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), opacity 0.3s ease, margin 0.3s ease;
}

.cart-location-input.active {
    max-height: 220px;
    opacity: 1;
    margin-top: 6px;
}

.cart-location-input textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: var(--cream);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--black);
    line-height: 1.45;
    resize: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.cart-location-input textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
}

.cart-location-input textarea::placeholder {
    color: var(--gray-light);
}

.cart-location-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.4;
}

/* === Saved location card === */
.cart-location-saved {
    display: none;
    background: linear-gradient(135deg, #FFF8F2 0%, #FFFFFF 100%);
    border: 1.5px solid rgba(255,107,26,0.3);
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 4px;
}

.cart-location.saved-active .cart-location-actions,
.cart-location.saved-active .cart-location-input { display: none; }

.cart-location.saved-active .cart-location-saved { display: block; }

.saved-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.saved-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.saved-text { flex: 1; min-width: 0; }

.saved-text strong {
    display: block;
    font-size: 0.78rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.saved-text p {
    font-size: 0.85rem;
    color: var(--black);
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
}

.saved-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 0;
    margin-bottom: 10px;
    border-top: 1px dashed rgba(255,107,26,0.25);
    border-bottom: 1px dashed rgba(255,107,26,0.25);
}

.saved-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 0.66rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.meta-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1;
}

.meta-value-orange { color: var(--orange); }

.cart-location-change {
    width: 100%;
    padding: 9px 12px;
    background: transparent;
    color: var(--orange);
    border: 1.5px solid rgba(255,107,26,0.3);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: inherit;
}

.cart-location-change:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* === Cart summary === */
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--gray);
}

.cart-summary-row span:last-child {
    font-weight: 700;
    color: var(--black);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-total span:first-child {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.cart-total-amount {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--orange);
}

.cart-note {
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 16px;
    text-align: center;
}

/* ===========================================================
   FLOATING WHATSAPP
   =========================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green-wa);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: all 0.3s var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--green-wa);
    opacity: 0.4;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ===========================================================
   WINI EASTER EGG MODAL
   =========================================================== */
.wini-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wini-modal.active {
    opacity: 1;
    visibility: visible;
}

.wini-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wini-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 28px 36px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 4px var(--orange);
    text-align: center;
    transform: scale(0.7) rotate(-4deg);
    transition: transform 0.45s var(--bounce);
}

.wini-modal.active .wini-modal-content {
    transform: scale(1) rotate(0);
}

.wini-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 26px;
    line-height: 1;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
    z-index: 5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4), 0 0 0 3px var(--white);
}

.wini-modal-close:hover {
    background: var(--orange);
    transform: rotate(90deg);
}

.wini-modal-img-wrap {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    margin-bottom: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.wini-modal-img-wrap::before {
    content: '🚫';
    position: absolute;
    font-size: 5rem;
    opacity: 0.2;
}

.wini-modal-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.wini-modal-text {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-wrap: balance;
}

.wini-modal-text::before {
    content: '🦍 ';
}

.wini-modal-text::after {
    content: ' 🍣';
}

@media (max-width: 720px) {
    .wini-modal { padding: 16px; }
    .wini-modal-content { padding: 22px 22px 28px; }
    .wini-modal-text { font-size: 1.4rem; }
}

/* ===========================================================
   TOAST
   =========================================================== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--black);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s var(--bounce);
    pointer-events: none;
    max-width: 90vw;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-icon {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-content strong {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.toast-content span {
    font-size: 0.85rem;
    color: var(--gray-light);
}

/* ===========================================================
   REVEAL ON SCROLL
   =========================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.in-view > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: 0.45s; }

/* ===========================================================
   RESPONSIVE - TABLET
   =========================================================== */
@media (max-width: 1024px) {
    .nav-links { gap: 24px; }
    .nav-link { font-size: 0.9rem; }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 64px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-tag, .hero-cta, .hero-stats {
        justify-content: center;
    }

    .hero-stats { display: flex; justify-content: center; }

    .hero-image { max-width: 380px; margin: 0 auto; width: 100%; }

    .hero-image-circle { max-width: 380px; }

    .hero-side-text { display: none; }

    .scroll-indicator { display: none; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .about-image-frame { max-width: 400px; margin: 0 auto; }

    .signature-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ===========================================================
   RESPONSIVE - MOBILE
   =========================================================== */
@media (max-width: 720px) {
    .container, .nav-container, .hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-links { display: none; }

    .mobile-toggle { display: flex; }

    .nav-logo-img { height: 40px; }

    .cart-btn { width: 44px; height: 44px; }

    .mobile-toggle { width: 44px; height: 44px; }

    .hero {
        padding: calc(var(--header-h) + 30px) 0 60px;
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 4.5rem);
    }

    .hero-subtitle { font-size: 1rem; }

    .hero-cta { flex-direction: column; gap: 12px; }
    .hero-cta .btn { width: 100%; }

    .hero-stats {
        gap: 16px;
        justify-content: space-between;
        width: 100%;
    }

    .stat-num { font-size: 2.2rem; }
    .stat span:nth-child(2) { font-size: 1.2rem; }
    .stat p { font-size: 0.7rem; letter-spacing: 1px; }

    .hero-image { max-width: 240px; }
    .hero-image-circle { max-width: 240px; }
    .floating-element { width: 46px; height: 46px; font-size: 1.1rem; }
    .fe-3 { width: 38px; height: 38px; font-size: 0.95rem; right: -10px; }
    .fe-1 { right: -8px; }
    .fe-2 { left: -8px; }
    .hero-image-jp {
        font-size: 0.9rem;
        padding: 8px 18px;
        letter-spacing: 2px;
        bottom: -14px;
    }

    .marquee-track span { font-size: 1.1rem; }

    .about, .signature, .menu, .contact { padding: 80px 0; }

    .signature-grid { grid-template-columns: 1fr; }

    .signature-bg-jp { font-size: 16rem; }

    .menu-grid { grid-template-columns: 1fr; }

    .menu-tabs { justify-content: flex-start; padding: 4px 20px; }
    .menu-tab { padding: 10px 16px; font-size: 0.85rem; gap: 8px; }
    .menu-tab .tab-jp { font-size: 0.85rem; }

    .cta-box { padding: 56px 24px; }

    .contact-card-big { padding: 32px 24px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand,
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
        display: block;
    }

    .footer-jp,
    .footer-text { margin-left: auto; margin-right: auto; max-width: 320px; }

    .footer-col h4 { text-align: center; }

    .footer-col ul {
        align-items: center;
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-social { justify-content: center; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cart-sidebar { width: 100%; }

    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; left: 20px; }

    .toast { right: 20px; left: 20px; bottom: 20px; }

    .about-badge { right: 0; padding: 16px 20px; }

    .badge-jp { font-size: 1.3rem; }

    .k1, .k2, .k3, .k4, .k5, .k6, .k7 { font-size: 6rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3.5rem; letter-spacing: -2px; }
    .section-title { font-size: 2.2rem; }

    .stat { gap: 0; }
    .stat-num { font-size: 1.8rem; }

    .menu-item-name { font-size: 1.3rem; }
    .menu-item-price { font-size: 1.4rem; }

    .sig-card h3 { font-size: 1.5rem; }
    .sig-card-price { font-size: 1.6rem; }

    .mobile-nav-link { font-size: 2rem; }
}
