:root {
    --bg-color: #FEFAF6;      
    --text-color: #0A0A0A;    
    --rosa: #FF2E93;          
    --tequila: #FFB30F;       
    --agave: #00E676;         
    --ocean: #00E5FF;         
    --chili: #E63946;         
    
    --border-width: 4px;
    --border-radius: 24px;
    --shadow-color: #0A0A0A;
    --shadow-offset: 8px;
    
    --font-head: 'Archivo Black', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-color); border-left: 2px solid var(--text-color); }
::-webkit-scrollbar-thumb { background: var(--ocean); border: 2px solid var(--text-color); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--rosa); }

body {
    background-color: var(--bg-color); color: var(--text-color); font-family: var(--font-body);
    overflow-x: hidden; background-image: radial-gradient(var(--text-color) 1.5px, transparent 1.5px);
    background-size: 32px 32px; padding-bottom: 0;
}

body.modal-open { overflow: hidden; }
h1, h2, h3 { font-family: var(--font-head); text-transform: uppercase; line-height: 1; }

@keyframes float-slow { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes float-fast { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-8px) rotate(-3deg); } }

/* ----------------------------------------------------
   NAVIGATSIOON
---------------------------------------------------- */
.navbar {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 95%; max-width: 1400px; background: rgba(254, 250, 246, 0.95);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: var(--border-width) solid var(--text-color); border-radius: 50px;
    height: 70px; display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; box-shadow: 4px 4px 0px var(--shadow-color); transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0 30px;
}
.navbar:hover { transform: translateX(-50%) translate(-2px, -2px); box-shadow: 8px 8px 0px var(--ocean); }

.logo-wrapper {
    position: absolute; left: 30px; top: -15px; width: 104px; height: 104px;
    background: var(--bg-color); border: var(--border-width) solid var(--text-color);
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    box-shadow: 6px 6px 0px var(--rosa); transition: transform 0.4s ease;
    z-index: 1001; padding: 5px; transform: rotate(-3deg);
}
.logo-wrapper:hover { transform: scale(1.15) rotate(5deg); box-shadow: 8px 8px 0px var(--ocean); }
.logo-wrapper img { width: 100%; height: 100%; object-fit: contain; }

.nav-right-cluster { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; gap: 15px; }

.btn-nav {
    background: var(--tequila); color: var(--text-color); font-weight: 800;
    padding: 10px 24px; border: 2px solid var(--text-color); border-radius: 50px;
    box-shadow: 3px 3px 0px var(--shadow-color); transition: all 0.3s ease; cursor: pointer;
    text-transform: uppercase; font-size: 0.9rem; text-decoration: none; display: flex; align-items: center;
}
.btn-nav:hover { background: var(--agave); transform: translate(-3px, -3px); box-shadow: 6px 6px 0px var(--shadow-color); }

.lang-switcher { position: relative; display: inline-block; }
.lang-current {
    background: var(--bg-color); border: 2px solid var(--text-color); padding: 8px 18px;
    border-radius: 50px; display: flex; align-items: center; gap: 8px; cursor: pointer;
    font-weight: 800; font-size: 0.9rem; box-shadow: 2px 2px 0px var(--shadow-color); transition: all 0.3s ease;
}
.lang-current:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0px var(--shadow-color); background: var(--rosa); color: white; }

.lang-dropdown {
    position: absolute; top: 130%; right: 0; background: var(--bg-color); border: 3px solid var(--text-color);
    border-radius: 16px; box-shadow: 6px 6px 0px var(--shadow-color); display: flex; flex-direction: column;
    opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.4s ease; min-width: 130px; z-index: 1001;
}
.lang-switcher:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
    display: flex; align-items: center; gap: 12px; padding: 12px 15px; text-decoration: none;
    color: var(--text-color); font-weight: 800; font-size: 0.9rem; border-bottom: 2px solid var(--text-color); transition: all 0.2s ease;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--tequila); padding-left: 20px; }

/* MOBIILI APP-LIKE TAB BAR */
.mobile-tab-bar {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(254, 250, 246, 0.98); backdrop-filter: blur(15px);
    border-top: var(--border-width) solid var(--text-color);
    z-index: 2000; padding: 10px 20px; justify-content: space-around; align-items: center;
    box-shadow: 0px -4px 20px rgba(0,0,0,0.15); padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.tab-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--text-color); text-decoration: none; font-weight: 800; font-size: 0.75rem; gap: 4px;
    transition: color 0.2s ease, transform 0.1s ease; cursor: pointer; border: none; background: transparent;
}
.tab-item:active { transform: scale(0.9); }
.tab-item svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s ease; }
.tab-item:hover { color: var(--rosa); }

/* SÜLEARVUTI JA MOBIILI NAV KOHANDUSED */
@media (max-width: 1440px) {
    .navbar { height: 60px; }
    .logo-wrapper { width: 95px; height: 95px; top: -10px; }
    .btn-nav { padding: 8px 18px; font-size: 0.85rem; }
    .lang-current { padding: 6px 14px; font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } 
    .mobile-tab-bar { display: flex; }
    body { padding-bottom: 70px; } 
    .logo-wrapper { width: 80px; height: 80px; top: -5px; left: 15px; border-radius: 16px; border-width: 3px; box-shadow: 4px 4px 0px var(--rosa); }
    .navbar { padding: 0 15px; top: 15px; height: 55px; border-width: 3px; box-shadow: 3px 3px 0px var(--shadow-color); }
    .lang-switcher { margin-left: auto; }
}

/* ----------------------------------------------------
   MEGA HERO: KINEMAATILINE SPLIT-SCREEN
---------------------------------------------------- */
.mega-hero {
    min-height: 84vh; padding: 96px 2% 36px 5%; max-width: 1680px; margin: 0 auto;
    display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 40px; position: relative;
}

.hero-left { position: relative; z-index: 20; display: flex; flex-direction: column; align-items: flex-start; }
.badge-new {
    background: var(--ocean); color: var(--text-color); padding: 8px 20px; border-radius: 50px;
    border: 2px solid var(--text-color); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.1em;
    margin-bottom: 25px; box-shadow: 4px 4px 0px var(--text-color); transform: rotate(-2deg); transition: transform 0.3s ease;
}
.badge-new:hover { transform: rotate(0deg) scale(1.05); }
.hero-title-new {
    font-size: clamp(2.8rem, 4.4vw, 4.5rem); color: var(--text-color); display: flex; flex-direction: column;
    line-height: 0.92; margin-bottom: 25px; text-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}
.hero-title-new .line-1 { transform: rotate(-1deg); }
.hero-title-new .line-2 { transform: rotate(1deg); color: var(--bg-color); -webkit-text-stroke: 2px var(--text-color); text-shadow: 6px 6px 0px var(--rosa); }
.hero-title-new .line-3 { transform: rotate(-2deg); }

.hero-desc-new {
    font-size: clamp(1rem, 1.2vw, 1.2rem); font-weight: 600; line-height: 1.6; max-width: 500px; margin-bottom: 30px;
    color: #222; background: rgba(254, 250, 246, 0.95); padding: 15px 20px; border-radius: 16px; border: 3px solid var(--text-color);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1); backdrop-filter: blur(5px);
}

.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
    font-family: var(--font-head); font-size: 1.1rem; text-decoration: none; padding: 15px 30px;
    border: var(--border-width) solid var(--text-color); border-radius: 50px; transition: all 0.3s ease; cursor: pointer; text-transform: uppercase;
}
.btn-primary { background: var(--tequila); color: var(--text-color); box-shadow: 6px 6px 0px var(--ocean); }
.btn-primary:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0px var(--rosa); }
.btn-secondary { background: var(--bg-color); color: var(--text-color); box-shadow: 4px 4px 0px var(--text-color); }
.btn-secondary:hover { background: var(--agave); transform: translate(-3px, -3px); box-shadow: 6px 6px 0px var(--text-color); }

.hero-right-massive { position: relative; width: 100%; height: 58vh; display: flex; justify-content: center; align-items: center; z-index: 5; }
.massive-window {
    width: 100%; height: 100%; border-radius: 32px; border: var(--border-width) solid var(--text-color);
    box-shadow: 12px 12px 0px var(--rosa); overflow: hidden; position: relative; background: var(--text-color); z-index: 2; transition: box-shadow 0.4s ease;
}
.massive-window:hover { box-shadow: 16px 16px 0px var(--ocean); }

.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 1; overflow: hidden; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide video, .hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(110%) saturate(120%); transform: scale(1); transition: transform 8s linear; }
.hero-slide.active img, .hero-slide.active video { transform: scale(1.1); }

.hero-float-container { position: absolute; inset: 0; z-index: 15; pointer-events: none; }
.hero-float-food { position: absolute; left: -15%; bottom: 0%; width: 30%; max-width: 200px; filter: drop-shadow(15px 15px 10px rgba(0,0,0,0.6)); transform: rotate(-5deg); animation: float-slow 6s ease-in-out infinite; }
.decor-cactus { position: absolute; right: -5%; bottom: -5%; height: 195px; filter: drop-shadow(8px 8px 0px rgba(0,0,0,0.8)); transform-origin: bottom center; animation: float-fast 5s ease-in-out infinite; }
.decor-sombrero { position: absolute; top: -30px; right: 15%; width: 120px; height: 120px; background-color: var(--agave); border: 3px solid var(--text-color); border-radius: 50%; box-shadow: 6px 6px 0px var(--text-color); display: flex; align-items: center; justify-content: center; padding: 10px; animation: float-slow 7s ease-in-out infinite reverse; }
.decor-sombrero svg { width: 80%; transform: rotate(10deg); }
.decor-chili { position: absolute; top: 25%; left: -8%; width: 100px; height: 100px; background-color: var(--tequila); border: 3px solid var(--text-color); border-radius: 50%; box-shadow: 5px 5px 0px var(--text-color); display: flex; align-items: center; justify-content: center; padding: 15px; animation: float-fast 4s ease-in-out infinite; }
.decor-chili svg { width: 70%; transform: rotate(-15deg); }

/* SÜLEARVUTI (13" / 14") OPTIMEERIMINE HERO ALAL */
@media (max-width: 1440px), (max-height: 900px) {
    .mega-hero { padding: 110px 3% 40px 4%; gap: 30px; min-height: 90vh; }
    .hero-title-new { font-size: clamp(3.5rem, 5.5vw, 5.5rem); margin-bottom: 20px; }
    .badge-new { padding: 6px 16px; font-size: 0.85rem; margin-bottom: 20px; }
    .hero-desc-new { font-size: 1rem; padding: 12px 18px; margin-bottom: 25px; max-width: 450px; }
    .btn-primary, .btn-secondary { font-size: 1rem; padding: 12px 24px; border-width: 3px; }
    .hero-right-massive { height: 65vh; }
    .massive-window { border-radius: 36px; border-width: 3px; box-shadow: 15px 15px 0px var(--rosa); }
    .hero-float-food { max-width: 270px; left: -6%; }
    .decor-cactus { height: 155px; right: -2%; }
    .decor-sombrero { width: 90px; height: 90px; top: -20px; right: 10%; padding: 8px; border-width: 3px;}
    .decor-chili { width: 80px; height: 80px; top: 15%; left: -5%; padding: 12px; border-width: 3px;}
}

/* MOBIIL HERO ALAL */
@media (max-width: 1024px) {
    .mega-hero { grid-template-columns: 1fr; text-align: center; min-height: auto; }
    .hero-left { align-items: center; margin-bottom: 20px; }
    .badge-new { align-self: center; }
    .hero-actions { justify-content: center; } /* Tahvlil näita CTA-sid */
    .hero-right-massive { height: 45vh; margin-top: 10px; width: 95%; margin: 0 auto; }
}
@media (max-width: 768px) { 
    .hero-actions { display: none; }
    .hero-title-new { font-size: clamp(3rem, 10vw, 4rem); line-height: 0.95; }
    .hero-desc-new { border-width: 2px; box-shadow: 3px 3px 0px rgba(0,0,0,0.1); font-size: 0.95rem; }
    .massive-window { border-radius: 24px; box-shadow: 10px 10px 0px var(--rosa); }
    .hero-float-food { width: 70%; max-width: 300px; left: -5%; bottom: -10%; filter: drop-shadow(8px 8px 5px rgba(0,0,0,0.5)); }
    .decor-cactus { height: 140px; right: -2%; bottom: -2%; }
    .decor-sombrero { width: 70px; height: 70px; top: -15px; right: 5%; padding: 6px; box-shadow: 4px 4px 0px var(--text-color); }
    .decor-chili { width: 65px; height: 65px; top: 15%; left: -5%; padding: 10px; box-shadow: 4px 4px 0px var(--text-color); }
}

/* ----------------------------------------------------
   MARQUEE
---------------------------------------------------- */
.marquee {
    background: var(--text-color); color: var(--bg-color); padding: 25px 0; overflow: hidden; display: flex; white-space: nowrap;
    transform: rotate(-1.5deg) scale(1.05); margin: 50px 0; border-top: var(--border-width) solid var(--text-color); border-bottom: var(--border-width) solid var(--text-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.marquee-inner { font-family: var(--font-head); font-size: 2.5rem; color: transparent; -webkit-text-stroke: 2px var(--agave); animation: marquee 20s linear infinite; }
.marquee-inner span { color: var(--bg-color); -webkit-text-stroke: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

@media (max-width: 1440px) { .marquee { padding: 15px 0; margin: 40px 0; } .marquee-inner { font-size: 3rem; -webkit-text-stroke: 1.5px var(--agave); } }
@media (max-width: 768px) { .marquee { border-width: 3px; } .marquee-inner { font-size: 2.2rem; -webkit-text-stroke: 1px var(--agave); } }

/* ----------------------------------------------------
   RITUALS (TUESDAY & SATURDAY)
---------------------------------------------------- */
.rituals-section { max-width: 1320px; margin: 56px auto; padding: 0 20px; }
.ritual-card {
    position: sticky; top: 100px; background: var(--bg-color); border: var(--border-width) solid var(--text-color);
    border-radius: 28px; box-shadow: 10px 10px 0px var(--shadow-color); padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
    margin-bottom: 40px; overflow: hidden;
}
.ritual-tuesday { background: var(--agave); color: var(--text-color); }
.ritual-saturday { background: var(--tequila); color: var(--text-color); margin-top: 50px; }

.ritual-content { display: flex; flex-direction: column; justify-content: center; }
.ritual-badge {
    background: var(--text-color); color: var(--bg-color); font-family: var(--font-head); display: inline-block; padding: 10px 20px;
    border-radius: 50px; font-size: 1.2rem; align-self: flex-start; margin-bottom: 20px; transform: rotate(-2deg);
}
.ritual-title { font-size: clamp(1.9rem, 2.8vw, 3rem); line-height: 0.9; margin-bottom: 20px; color: white; -webkit-text-stroke: 2px var(--text-color); text-shadow: 4px 4px 0px var(--text-color); }
.ritual-desc { font-size: 1.1rem; font-weight: 600; line-height: 1.5; max-width: 450px; }
.ritual-visual { background: var(--bg-color); border: var(--border-width) solid var(--text-color); border-radius: 30px; overflow: hidden; box-shadow: 8px 8px 0px rgba(0,0,0,0.5); }
.ritual-visual img { width: 100%; height: 100%; object-fit: cover; filter: contrast(110%); }

@media (max-width: 1440px) {
    .rituals-section { margin: 60px auto; }
    .ritual-card { padding: 40px; gap: 30px; border-radius: 32px; box-shadow: 10px 10px 0px var(--shadow-color); }
    .ritual-badge { font-size: 1rem; padding: 8px 16px; margin-bottom: 15px; }
    .ritual-title { font-size: 3.5rem; margin-bottom: 15px; text-shadow: 3px 3px 0px var(--text-color); }
    .ritual-desc { font-size: 1rem; }
}
@media (max-width: 900px) {
    .ritual-card { position: relative; top: auto; grid-template-columns: 1fr; padding: 25px; border-radius: 24px; margin-bottom: 30px; border-width: 3px; box-shadow: 6px 6px 0px var(--shadow-color); }
    .ritual-saturday { margin-top: 0; }
    .ritual-visual { height: 250px; border-radius: 16px; border-width: 3px; }
}

/* ----------------------------------------------------
   BENTO GRID MENÜÜ (Highlight kaardid)
---------------------------------------------------- */
.bento-section { max-width: 1400px; margin: 0 auto; padding: 0 20px 60px; }
.bento-section h2 { font-size: clamp(2rem, 3vw, 3rem); text-align: center; margin-bottom: 50px; text-shadow: 4px 4px 0px var(--rosa); -webkit-text-stroke: 2px var(--text-color); color: white; }

.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; grid-auto-rows: minmax(240px, auto); }

.card { background: var(--bg-color); border: var(--border-width) solid var(--text-color); border-radius: var(--border-radius); box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--shadow-color); padding: 40px; display: flex; flex-direction: column; justify-content: space-between; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; z-index: 1; }
.card:hover { transform: translate(-8px, -8px); box-shadow: 18px 18px 0px var(--shadow-color); z-index: 5; }

.bg-tequila { background-color: var(--tequila); } .bg-ocean { background-color: var(--ocean); }
.bg-agave { background-color: var(--agave); } .bg-chili { background-color: var(--chili); color: white;} .bg-rosa { background-color: var(--rosa); color: white;}
.span-2 { grid-column: span 2; } 

.food-img { position: absolute; top: -32px; right: -18px; width: 150px; height: 150px; object-fit: contain; filter: drop-shadow(10px 10px 5px rgba(0,0,0,0.4)); transform: rotate(5deg); transition: transform 0.5s ease; pointer-events: none; }
.food-img.large { width: 205px; height: 205px; top: -42px; right: -14px; }
.card:hover .food-img { transform: rotate(0deg) scale(1.15) translateY(-10px); }

.card-content { position: relative; z-index: 2; width: 65%; } .card-content.full { width: 100%; }

.card-tag { display: inline-block; background: var(--text-color); color: var(--bg-color); padding: 6px 15px; border-radius: 20px; font-weight: 800; font-size: 0.85rem; margin-bottom: 15px; box-shadow: 3px 3px 0px rgba(0,0,0,0.2); }
.card-title { font-size: clamp(1.4rem, 1.9vw, 1.95rem); margin-bottom: 15px; line-height: 1.1; }
.bg-ocean .card-title, .bg-tequila .card-title, .bg-agave .card-title, .bg-chili .card-title, .bg-rosa .card-title { color: white; -webkit-text-stroke: 2px var(--text-color); text-shadow: 3px 3px 0px var(--text-color); }

.card-price { font-family: var(--font-head); font-size: 1.5rem; background: var(--bg-color); color: var(--text-color); padding: 5px 15px; border: 3px solid var(--text-color); border-radius: 12px; display: inline-block; margin-top: 15px; box-shadow: 4px 4px 0px var(--text-color); }
.card-desc { font-size: 1.05rem; font-weight: 600; line-height: 1.5; }
.bg-chili .card-desc, .bg-rosa .card-desc { color: white; text-shadow: 1px 1px 0px var(--text-color); }

.hours-list { list-style: none; width: 100%; margin-top: 20px; background: white; padding: 20px; border-radius: 16px; border: 3px solid var(--text-color); box-shadow: 5px 5px 0px var(--rosa);}
.hours-list li { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 800; padding: 10px 0; border-bottom: 2px dashed var(--text-color); color: var(--text-color);}
.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list li.party { color: var(--rosa); font-size: 1.2rem; }

/* SÜLEARVUTI KOHANDUSED BENTOLE */
@media (max-width: 1440px) {
    .bento-section h2 { font-size: 3.5rem; margin-bottom: 30px; text-shadow: 3px 3px 0px var(--rosa); -webkit-text-stroke: 1.5px var(--text-color); }
    .bento-grid { gap: 20px; grid-auto-rows: minmax(280px, auto); }
    .card { padding: 30px; border-radius: 20px; box-shadow: 8px 8px 0px var(--shadow-color); }
    .card:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0px var(--shadow-color); }
    .card-title { font-size: 2.2rem; margin-bottom: 10px; }
    .card-desc { font-size: 0.95rem; }
    .card-price { font-size: 1.5rem; padding: 4px 12px; margin-top: 10px; }
    .food-img { width: 132px; height: 132px; right: -16px; top: -22px; }
    .food-img.large { width: 178px; height: 178px; top: -30px; right: -12px; }
    .hours-list { padding: 15px; margin-top: 15px; }
    .hours-list li { font-size: 1rem; padding: 8px 0; }
    .hours-list li.party { font-size: 1.1rem; }
}

@media (max-width: 992px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { 
    .bento-section { padding: 0 15px 40px; }
    .bento-section h2 { font-size: 2.5rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .span-2 { grid-column: span 1; }
    .card { padding: 25px; border-width: 3px; box-shadow: 6px 6px 0px var(--shadow-color); border-radius: 20px; }
    .card-content { width: 100%; }
    .food-img { width: 140px; height: 140px; right: -5px; top: -20px; filter: drop-shadow(5px 5px 3px rgba(0,0,0,0.3)); } 
    .food-img.large { width: 180px; height: 180px; right: -5px; top: -30px; }
    .hours-list li { flex-direction: column; gap: 2px; }
}

/* ----------------------------------------------------
   TACO DIY (APP-LIKE CONFIGURATOR)
---------------------------------------------------- */
.diy-section {
    background: var(--text-color); color: var(--bg-color); padding: 62px 20px; margin: 56px 0;
    border-top: var(--border-width) solid var(--text-color); border-bottom: var(--border-width) solid var(--text-color);
}
.diy-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 44px; }

.diy-info h2 { font-size: clamp(2rem, 3vw, 3rem); color: var(--rosa); margin-bottom: 20px; text-shadow: 3px 3px 0px var(--ocean); }
.diy-info p { font-size: 1.1rem; font-weight: 600; line-height: 1.5; color: #ddd; margin-bottom: 30px; }
.diy-instructions { background: var(--bg-color); color: var(--text-color); padding: 20px; border-radius: 16px; border: 3px solid var(--ocean); box-shadow: 6px 6px 0px var(--ocean); font-size: 0.95rem; line-height: 1.4; }

.diy-box { background: var(--bg-color); border: var(--border-width) solid var(--tequila); border-radius: 24px; padding: 30px; color: var(--text-color); box-shadow: 10px 10px 0px var(--ocean); }
.diy-step-title { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.diy-step-title span { background: var(--text-color); color: var(--bg-color); border-radius: 50%; width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; }

.diy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 30px; }
.diy-item { border: 3px solid var(--text-color); border-radius: 16px; padding: 15px; cursor: pointer; transition: all 0.2s ease; display: flex; flex-direction: column; gap: 5px; background: white; }
.diy-item:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0px var(--text-color); }
.diy-item.selected { background: var(--agave); box-shadow: 4px 4px 0px var(--text-color); transform: translate(-2px, -2px); border-color: var(--text-color); }
.diy-item-title { font-weight: 800; font-size: 1rem; }
.diy-item-price { font-family: var(--font-head); color: var(--ocean); font-size: 1.1rem; }
.diy-item.selected .diy-item-price { color: var(--text-color); }

.diy-input { width: 100%; padding: 15px; border: 3px solid var(--text-color); border-radius: 12px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 15px; background: white; outline: none; transition: border-color 0.2s; }
.diy-input:focus { border-color: var(--rosa); box-shadow: 4px 4px 0px var(--rosa); }

.diy-total { font-family: var(--font-head); font-size: 1.7rem; color: var(--rosa); margin: 20px 0; text-align: right; }
.btn-submit { width: 100%; text-align: center; font-size: 1.3rem; border: none; padding: 18px; border-radius: 16px; font-family: var(--font-head); color: white; background: var(--rosa); border: 3px solid var(--text-color); box-shadow: 5px 5px 0px var(--text-color); cursor: pointer; transition: transform 0.2s; text-transform: uppercase;}
.btn-submit:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0px var(--ocean); }

@media (max-width: 1440px) {
    .diy-section { padding: 60px 20px; margin: 50px 0; }
    .diy-container { gap: 30px; }
    .diy-info h2 { font-size: 3.5rem; text-shadow: 2px 2px 0px var(--ocean); }
    .diy-box { padding: 30px; border-radius: 24px; box-shadow: 10px 10px 0px var(--ocean); }
    .diy-item { padding: 12px; }
    .diy-total { font-size: 2rem; }
    .btn-submit { font-size: 1.1rem; padding: 15px; }
}
@media (max-width: 900px) { .diy-container { grid-template-columns: 1fr; } }
@media (max-width: 768px) { 
    .diy-section { padding: 40px 15px; border-width: 3px; }
    .diy-info h2 { font-size: 2.5rem; }
    .diy-instructions { padding: 15px; border-width: 2px; box-shadow: 4px 4px 0px var(--ocean); }
    .diy-box { padding: 20px; border-width: 3px; box-shadow: 6px 6px 0px var(--ocean); }
    .diy-grid { grid-template-columns: 1fr; }
    .diy-item { border-width: 2px; }
    .diy-input { padding: 12px; border-width: 2px; font-size: 0.95rem; }
    .diy-total { font-size: 1.8rem; text-align: left; }
}

/* ----------------------------------------------------
   ÜRITUSTE BÄNNER
---------------------------------------------------- */
.events-banner { max-width: 1400px; margin: 0 auto 64px; background: var(--rosa); border: var(--border-width) solid var(--text-color); border-radius: 40px; box-shadow: 12px 12px 0px var(--text-color); padding: 56px 36px; text-align: center; color: var(--bg-color); }
.events-banner h2 { font-size: clamp(2rem, 3.4vw, 3.3rem); margin-bottom: 20px; -webkit-text-stroke: 2px var(--text-color); text-shadow: 5px 5px 0px var(--text-color); color: white; }
.events-banner p { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 800; color: var(--text-color); max-width: 700px; margin: 0 auto 30px; line-height: 1.5; }

@media (max-width: 1440px) {
    .events-banner { padding: 60px 30px; margin-bottom: 60px; border-radius: 32px; box-shadow: 12px 12px 0px var(--text-color); }
    .events-banner h2 { font-size: 4rem; text-shadow: 4px 4px 0px var(--text-color); }
}
@media (max-width: 768px) { 
    .events-banner { margin: 0 15px 50px; padding: 40px 20px; border-radius: 24px; border-width: 3px; box-shadow: 8px 8px 0px var(--text-color); } 
    .events-banner h2 { font-size: 2.5rem; text-shadow: 3px 3px 0px var(--text-color); -webkit-text-stroke: 1px var(--text-color); } 
}

/* ----------------------------------------------------
   LUKSUSLIK PILDIGALERII (ÄÄRENI, SOLIIDNE)
---------------------------------------------------- */
.lux-gallery {
    position: relative; width: 100%; max-width: 100%;
    height: clamp(440px, 78vh, 820px);
    margin: 0 0 0px; overflow: hidden;
    background: #050505;
    border-top: var(--border-width) solid var(--text-color);
    border-bottom: var(--border-width) solid var(--text-color);
}
.lux-gallery__track { position: absolute; inset: 0; }
.lux-gallery__slide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 2.4s ease-in-out, visibility 0s linear 2.4s;
}
.lux-gallery__slide.active {
    opacity: 1; visibility: visible;
    transition: opacity 2.4s ease-in-out, visibility 0s;
    z-index: 1;
}
.lux-gallery__slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transform: scale(1.03);
}
/* Soliidne sügavus: õrn vinjett ül- ja allservas */
.lux-gallery__vignette {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(5,5,5,0.40) 0%, rgba(5,5,5,0) 22%, rgba(5,5,5,0) 70%, rgba(5,5,5,0.55) 100%),
        radial-gradient(120% 100% at 50% 50%, rgba(5,5,5,0) 60%, rgba(5,5,5,0.45) 100%);
}
/* Minimalistlikud peened indikaatorjooned */
.lux-gallery__dots {
    position: absolute; left: 0; right: 0; bottom: 26px; z-index: 3;
    display: flex; justify-content: center; gap: 14px; pointer-events: auto;
}
.lux-gallery__dot {
    width: 34px; height: 3px; border: none; padding: 0; cursor: pointer;
    background: rgba(255,255,255,0.35);
    transition: background 0.4s ease, transform 0.4s ease;
}
.lux-gallery__dot:hover { background: rgba(255,255,255,0.65); }
.lux-gallery__dot.active { background: #fff; transform: scaleY(1.6); }
@media (max-width: 768px) {
    .lux-gallery { height: clamp(340px, 60vh, 560px); margin-bottom: 40px; border-width: 3px; }
    .lux-gallery__dots { bottom: 18px; gap: 10px; }
    .lux-gallery__dot { width: 26px; }
}
@media (prefers-reduced-motion: reduce) {
    .lux-gallery__slide { transition: opacity 0.8s ease-in-out; }
}

/* ----------------------------------------------------
   DIY KOLLANE CTA (LAIENEB KOHAPEAL)
---------------------------------------------------- */
.diy-cta-section { padding: 0 20px; margin: 56px 0; }
.diy-cta {
    max-width: 1100px; margin: 0 auto; text-align: center;
    background: var(--tequila); color: var(--text-color);
    border: var(--border-width) solid var(--text-color); border-radius: 40px;
    box-shadow: 12px 12px 0px var(--text-color);
    padding: 56px 40px;
}
.diy-cta h2 {
    font-size: clamp(2rem, 3.6vw, 3.4rem); margin-bottom: 20px; color: #fff;
    -webkit-text-stroke: 2px var(--text-color); text-shadow: 5px 5px 0px var(--text-color);
}
.diy-cta p {
    font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; line-height: 1.55;
    color: var(--text-color); max-width: 760px; margin: 0 auto 32px;
}
.btn-diy-open {
    font-family: var(--font-head); text-transform: uppercase; font-size: 1.25rem;
    color: #fff; background: var(--text-color);
    border: 3px solid var(--text-color); border-radius: 16px;
    padding: 18px 40px; cursor: pointer;
    box-shadow: 6px 6px 0px var(--bg-color), 6px 6px 0 7px var(--text-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex; align-items: center; gap: 12px;
}
.btn-diy-open:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0px var(--bg-color), 9px 9px 0 7px var(--text-color); }
.btn-diy-open__chev { transition: transform 0.3s ease; }
.btn-diy-open[aria-expanded="true"] .btn-diy-open__chev { transform: rotate(180deg); }
/* Sujuv kohapeal-avanemine */
.diy-configurator[hidden] { display: none; }
.diy-configurator.revealing {
    animation: diyReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes diyReveal {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .diy-cta { margin: 0 4px; padding: 40px 22px; border-radius: 28px; border-width: 3px; box-shadow: 8px 8px 0px var(--text-color); }
    .diy-cta h2 { -webkit-text-stroke: 1px var(--text-color); text-shadow: 3px 3px 0px var(--text-color); }
    .btn-diy-open { font-size: 1.05rem; padding: 15px 28px; }
}

/* ----------------------------------------------------
   GALERII
---------------------------------------------------- */
.gallery-section { max-width: 1400px; margin: 0 auto; padding: 0 20px 64px; }
.gallery-header { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.gallery-title { font-size: clamp(1.9rem, 3.4vw, 3.2rem); color: var(--text-color); transform: rotate(-2deg); text-shadow: 3px 3px 0px var(--ocean); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; grid-auto-rows: 210px; }
.gallery-item { border: var(--border-width) solid var(--text-color); border-radius: 16px; box-shadow: 6px 6px 0px var(--shadow-color); overflow: hidden; position: relative; background: var(--text-color); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: var(--ocean); opacity: 0; mix-blend-mode: multiply; transition: opacity 0.4s ease; pointer-events: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: contrast(110%); }
.gallery-item:hover { transform: translate(-4px, -4px); box-shadow: 10px 10px 0px var(--tequila); z-index: 2; }
.gallery-item:hover::after { opacity: 0.2; }
.gallery-item:hover img { transform: scale(1.1); }
.g-span-2-row { grid-row: span 2; } .g-span-2-col { grid-column: span 2; }

@media (max-width: 1440px) {
    .gallery-grid { grid-auto-rows: 200px; gap: 15px; }
    .gallery-title { font-size: 4rem; }
}
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { 
    .gallery-section { padding: 0 15px 50px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 12px; } 
    .gallery-title { font-size: 2.5rem; text-shadow: 2px 2px 0px var(--ocean); }
    .gallery-item { border-width: 2px; border-radius: 12px; box-shadow: 4px 4px 0px var(--shadow-color); }
}
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; } }

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer { background-color: var(--text-color); color: var(--bg-color); padding: 56px 20px 36px; position: relative; overflow: hidden; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; position: relative; z-index: 10; }

.footer-brand h2 { font-size: clamp(2rem, 3.1vw, 2.8rem); color: var(--tequila); text-shadow: 3px 3px 0px var(--rosa); margin-bottom: 20px; transform: rotate(-2deg); }
.footer-brand p { font-size: 1.1rem; font-weight: 600; max-width: 450px; margin-bottom: 25px; line-height: 1.6;}

.footer-col h3 { color: var(--agave); margin-bottom: 20px; font-size: 1.4rem; }
.footer-col p { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

.social-btn {
    background: var(--bg-color); color: var(--text-color); font-family: var(--font-head); padding: 12px 20px;
    border: 3px solid var(--text-color); border-radius: 12px; text-decoration: none; box-shadow: 4px 4px 0px var(--ocean); transition: all 0.3s ease; font-size: 1rem; display: inline-block;
}
.social-btn:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0px var(--rosa); }

.map-btn.waze { background: #00E5FF; } .map-btn.google { background: #00E676; }

.footer-bottom { max-width: 1400px; margin: 50px auto 0; padding-top: 20px; border-top: 2px dashed rgba(255,255,255,0.2); text-align: center; font-weight: 600; color: #888; font-size: 0.9rem; }

@media (max-width: 1440px) {
    footer { padding: 60px 20px 30px; }
    .footer-brand h2 { font-size: 3rem; }
    .social-btn { padding: 10px 16px; font-size: 0.9rem; border-width: 2px; box-shadow: 3px 3px 0px var(--ocean); }
}
@media (max-width: 900px) { 
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; } 
    .footer-brand p { margin: 0 auto 25px; }
    .footer-socials { justify-content: center; }
}
@media (max-width: 768px) { footer { padding: 50px 15px 25px; } }

/* ----------------------------------------------------
   LUKSUSLIK MENÜÜ MODAL (APP-LIKE KOGEMUS)
---------------------------------------------------- */
.menu-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 9999;
    display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease;
}
.menu-modal-overlay.active { opacity: 1; visibility: visible; }

.menu-modal-container {
    width: 92%; max-width: 1300px; height: 88vh; background: var(--bg-color);
    border: var(--border-width) solid var(--text-color); border-radius: 36px; box-shadow: 16px 16px 0px var(--rosa);
    position: relative; transform: translateY(50px) scale(0.95); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden; display: flex; flex-direction: column;
    background-image: radial-gradient(var(--text-color) 1px, transparent 1px); background-size: 30px 30px; 
}
.menu-modal-overlay.active .menu-modal-container { transform: translateY(0) scale(1); }

.modal-close {
    position: absolute; top: 25px; right: 25px; width: 50px; height: 50px; background: var(--text-color); color: var(--bg-color);
    font-size: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 20;
    border: 3px solid var(--text-color); transition: all 0.3s ease; font-family: var(--font-head); box-shadow: 4px 4px 0px var(--ocean);
}
.modal-close:hover { background: var(--chili); transform: scale(1.1) rotate(90deg); box-shadow: 6px 6px 0px var(--text-color); }

.modal-header {
    padding: 30px 40px; border-bottom: 4px dashed var(--text-color); background: var(--tequila);
    color: var(--text-color); display: flex; align-items: center; gap: 20px; flex-shrink: 0;
}
.modal-header h2 { font-size: clamp(1.8rem, 2.4vw, 2.6rem); text-shadow: 3px 3px 0px white; margin: 0; }

.modal-content { display: flex; flex: 1; overflow: hidden; background: rgba(254, 250, 246, 0.95); }

.modal-left-sidebar {
    width: 300px; border-right: 4px solid var(--text-color); padding: 30px; background: rgba(255, 255, 255, 0.7); overflow-y: auto; flex-shrink: 0; position: relative;
}
.sidebar-sticky-inner { position: sticky; top: 0; }

.modal-right-menu { flex: 1; padding: 40px; overflow-y: auto; scroll-behavior: smooth; }

.modal-right-menu::-webkit-scrollbar { width: 10px; }
.modal-right-menu::-webkit-scrollbar-track { background: transparent; border-left: 2px dashed var(--text-color); }
.modal-right-menu::-webkit-scrollbar-thumb { background: var(--rosa); border: 2px solid var(--text-color); border-radius: 10px; }

.styles_categoryItem__f_XKF {
    display: block; padding: 12px 18px; margin-bottom: 12px; font-weight: 800; color: var(--text-color); font-size: 1.05rem;
    text-decoration: none; border-radius: 16px; border: 3px solid transparent; transition: all 0.2s ease; text-transform: uppercase;
}
.styles_categoryItem__f_XKF:hover { background: var(--ocean); border-color: var(--text-color); box-shadow: 4px 4px 0px var(--text-color); transform: translateX(5px); }

.DefaultView_categoryName__81kTs {
    font-family: var(--font-head); font-size: 1.8rem; color: var(--rosa); margin-bottom: 25px;
    -webkit-text-stroke: 1px var(--text-color); text-shadow: 3px 3px 0px var(--text-color);
}

.section-list-item {
    background: white; border: 3px solid var(--text-color); border-radius: 20px; padding: 20px;
    margin-bottom: 25px; box-shadow: 5px 5px 0px var(--text-color); display: flex; justify-content: space-between; gap: 20px; transition: all 0.2s ease;
}
.section-list-item:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0px var(--ocean); }

.MenuItemInner_menuItemTitle__tUg2o { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; line-height: 1.2; }
.MenuItemInner_menuItemPrice__n_0uT { font-family: var(--font-head); font-size: 1.4rem; color: var(--agave); -webkit-text-stroke: 1px var(--text-color); margin-bottom: 10px; display: inline-block; background: var(--bg-color); padding: 4px 12px; border: 2px solid var(--text-color); border-radius: 10px; }
.MenuItemInner_menuItemDescription__Npe2q { font-size: 0.95rem; color: #444; line-height: 1.4; font-weight: 600; }
.MenuItemInner_previewImage__hJkXM { width: 130px; height: 130px; border-radius: 12px; border: 2px solid var(--text-color); object-fit: cover; box-shadow: 3px 3px 0px var(--text-color); }
/* Pildita toote tagasihoidlik kohatäide (brändi klaasi-ikoon pastelsel taustal) */
.menu-item-noimg { width: 130px; height: 130px; flex-shrink: 0; border-radius: 12px; border: 2px solid var(--text-color); box-shadow: 3px 3px 0px var(--text-color); display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--text-color); }
.menu-item-noimg svg { width: 56%; height: 56%; opacity: 0.55; }

.add-item-to-cart {
    background: var(--tequila); color: var(--text-color); border: 2px solid var(--text-color); font-weight: 800; font-size: 1rem;
    padding: 10px 20px; border-radius: 50px; cursor: pointer; margin-top: 15px; width: 100%; transition: all 0.2s; text-transform: uppercase;
}
.add-item-to-cart:hover { background: var(--agave); box-shadow: 4px 4px 0px var(--text-color); transform: translateY(-2px); }

/* SÜLEARVUTI KOHANDUSED MODALILE */
@media (max-width: 1440px) {
    .menu-modal-container { height: 85vh; border-radius: 24px; box-shadow: 15px 15px 0px var(--rosa); }
    .modal-header { padding: 20px 30px; }
    .modal-header h2 { font-size: 2.5rem; }
    .modal-left-sidebar { width: 260px; padding: 25px 20px; }
    .modal-right-menu { padding: 30px; }
    .styles_categoryItem__f_XKF { padding: 10px 15px; font-size: 0.95rem; margin-bottom: 10px; }
    .DefaultView_categoryName__81kTs { font-size: 2rem; margin-bottom: 20px; }
    .section-list-item { padding: 15px; border-radius: 16px; margin-bottom: 20px; gap: 15px; }
    .MenuItemInner_previewImage__hJkXM, .menu-item-noimg { width: 110px; height: 110px; }
    .MenuItemInner_menuItemTitle__tUg2o { font-size: 1.1rem; }
    .MenuItemInner_menuItemPrice__n_0uT { font-size: 1.2rem; }
}

/* MOBIILI MODAL */
@media (max-width: 768px) {
    .menu-modal-container { width: 100%; height: 100%; border-radius: 0; border: none; transform: translateY(100%); }
    .modal-header { padding: 20px; flex-direction: column; align-items: flex-start; gap: 10px;} 
    .modal-header h2 { font-size: 2.2rem; }
    .modal-content { flex-direction: column; }
    .modal-left-sidebar { width: 100%; height: auto; display: block; overflow-x: auto; border-right: none; border-bottom: 3px solid var(--text-color); padding: 15px; white-space: nowrap; -webkit-overflow-scrolling: touch; }
    .sidebar-sticky-inner { display: flex; gap: 10px; }
    .modal-right-menu { padding: 15px; padding-bottom: 100px;} 
    .styles_categoryItem__f_XKF { margin-bottom: 0 !important; font-size: 0.95rem !important; padding: 10px 15px !important; }
    .modal-close { top: 15px; right: 15px; width: 40px; height: 40px; font-size: 1.5rem; }
    .section-list-item { flex-direction: column-reverse; padding: 15px; border-radius: 16px; } 
    .MenuItemInner_previewImage__hJkXM, .menu-item-noimg { width: 100% !important; height: 180px !important; }
    .DefaultView_categoryName__81kTs { font-size: 1.8rem; }
}



/* ----------------------------------------------------
           BRONEERIMISE MODAL JA SAALIPLAAN
        ---------------------------------------------------- */
        .booking-modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); z-index: 9999;
            display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease;
        }
        .booking-modal-overlay.active { opacity: 1; visibility: visible; }

        .booking-modal-container {
            width: 94%; max-width: 880px; height: 90vh; max-height: 940px; background: var(--bg-color);
            border: var(--border-width) solid var(--text-color); border-radius: 36px; box-shadow: 25px 25px 0px var(--ocean);
            position: relative; transform: translateY(50px) scale(0.95); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden; display: flex; flex-direction: column;
            background-image: radial-gradient(var(--text-color) 1px, transparent 1px); background-size: 30px 30px; 
        }
        .booking-modal-overlay.active .booking-modal-container { transform: translateY(0) scale(1); }

        .booking-steps-container {
            flex: 1; padding: 40px; overflow-y: auto; background: rgba(254, 250, 246, 0.95);
        }

        .booking-step { display: none; animation: fadeInStep 0.4s ease forwards; }
        .booking-step.active { display: block; }

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

        .step-title { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; color: var(--rosa); text-shadow: 2px 2px 0px var(--text-color); -webkit-text-stroke: 1px var(--text-color); }
        .step-title span { background: var(--text-color); color: var(--ocean); border-radius: 50%; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; text-shadow: none; -webkit-text-stroke: 0; }

        .b-form-group { margin-bottom: 20px; }
        .b-form-group label { display: block; font-weight: 800; margin-bottom: 8px; font-size: 1.1rem; }
        
        .step-actions { display: flex; justify-content: space-between; margin-top: 40px; gap: 15px; }
        .btn-next { width: 100%; text-align: center; }

        /* Saaliplaan & Tabelid */
        .table-choice-toggles { display: flex; gap: 10px; margin-bottom: 25px; background: white; padding: 5px; border: 3px solid var(--text-color); border-radius: 12px; }
        .t-toggle { flex: 1; text-align: center; padding: 12px; font-weight: 800; cursor: pointer; border-radius: 8px; transition: all 0.2s; }
        .t-toggle.active { background: var(--ocean); color: var(--text-color); box-shadow: 3px 3px 0px var(--text-color); border: 2px solid var(--text-color); }

        .large-group-banner { background: var(--tequila); padding: 15px; border: 3px solid var(--text-color); border-radius: 12px; font-weight: 800; margin-bottom: 20px; box-shadow: 4px 4px 0px var(--text-color); }

        .table-map-container { position: relative; width: 100%; height: 340px; background: #ddd; border: 4px solid var(--text-color); border-radius: 20px; overflow: hidden; box-shadow: inset 5px 5px 15px rgba(0,0,0,0.1); margin-bottom: 20px; }
        .table-map { width: 100%; height: 100%; position: relative; background: url('https://www.transparenttextures.com/patterns/wood-pattern.png'); }
        
        .table-item {
            position: absolute; background: white; border: 3px solid var(--text-color); border-radius: 50%;
            width: 70px; height: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center;
            font-weight: 800; cursor: pointer; box-shadow: 4px 4px 0px var(--text-color); transition: all 0.2s ease;
            text-align: center; line-height: 1.1;
        }
        .table-item:hover { transform: translateY(-3px); box-shadow: 6px 6px 0px var(--ocean); }
        .table-item.selected { background: var(--agave); border-color: var(--text-color); box-shadow: 4px 4px 0px var(--text-color) inset; transform: scale(0.95); }
        .table-item.disabled { opacity: 0.5; cursor: not-allowed; background: #ccc; box-shadow: none; filter: grayscale(100%); }
        
        .table-error-msg { display: none; color: white; background: var(--chili); padding: 10px; text-align: center; font-weight: 800; border: 2px solid var(--text-color); border-radius: 10px; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); width: 90%; z-index: 10; }

        /* Ootel Laadija (Step 4) */
        .pending-step { text-align: center; padding-top: 50px; }
        .loader-spinner {
            width: 80px; height: 80px; border: 8px solid var(--bg-color); border-top: 8px solid var(--ocean);
            border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto; box-shadow: 0 0 0 4px var(--text-color);
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        @media (max-width: 768px) {
            .booking-modal-container { width: 100%; height: 100%; border-radius: 0; }
            .booking-steps-container { padding: 20px; }
            .step-actions { flex-direction: column-reverse; }
            .btn-next { padding: 15px; }
        }


/* ----------------------------------------------------
   LISANDUSED: peidetud honeypot, vormiteated, klikitavad read/kaardid
---------------------------------------------------- */
.diy-hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-msg { margin: 12px 0 4px; font-weight: 800; font-size: 0.95rem; min-height: 1.2em; }
.form-msg.ok  { color: #1ECB15; }
.form-msg.err { color: var(--chili); }
.hours-list li.party { cursor: pointer; transition: transform .15s ease, color .15s ease; }
.hours-list li.party:hover { transform: translateX(6px); color: var(--rosa); }
.hours-list li.party::after { content: " \2197"; font-weight: 800; opacity: .6; }
.hours-list li.party:focus-visible { outline: 3px solid var(--ocean); outline-offset: 2px; border-radius: 6px; }
.bento-grid .card.menu-clickable { cursor: pointer; }
select.diy-input { appearance: auto; -webkit-appearance: menulist; background-image: none; }


/* ----------------------------------------------------
   LIGIPÄÄSETAVUS + AUDIOLÜLITI (vinüül)
---------------------------------------------------- */
.skip-link {
    position: fixed; left: 12px; top: -120px; z-index: 100000;
    background: var(--text-color); color: #fff; padding: 12px 18px;
    border-radius: 0 0 12px 12px; font-weight: 800; text-decoration: none;
    transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--ocean); outline-offset: 2px; }

/* Keelevahetaja: ava ka klikiga (lisaks hoverile) */
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

/* Audionupp – kompaktne "Mariachi" pill all paremas nurgas (ainult arvutis) */
.audio-fab {
    position: fixed; right: 20px; bottom: 20px; z-index: 3000;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 16px 7px 8px; cursor: pointer;
    background: var(--bg-color); color: var(--text-color);
    border: 3px solid var(--text-color); border-radius: 50px;
    box-shadow: 4px 4px 0 var(--rosa);
    font-family: var(--font-head); text-transform: uppercase; font-size: 0.8rem; letter-spacing: .03em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.audio-fab:hover  { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--rosa); }
.audio-fab:active { transform: translate(1px, 1px);   box-shadow: 2px 2px 0 var(--rosa); }
.audio-fab.playing { background: var(--tequila); }

.af-badge {
    width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%;
    background: var(--tequila); border: 2px solid var(--text-color);
    display: flex; align-items: center; justify-content: center; position: relative;
}
.audio-fab.playing .af-badge { background: var(--bg-color); }
.af-play { width: 0; height: 0; margin-left: 2px; border-left: 10px solid var(--text-color); border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.af-eq { display: none; align-items: flex-end; gap: 2px; height: 14px; }
.af-eq i { width: 3px; height: 100%; background: var(--text-color); border-radius: 2px; transform-origin: bottom; animation: af-bounce .9s ease-in-out infinite; }
.af-eq i:nth-child(2) { animation-delay: .15s; }
.af-eq i:nth-child(3) { animation-delay: .3s; }
.af-eq i:nth-child(4) { animation-delay: .45s; }
@keyframes af-bounce { 0%, 100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }
.audio-fab.playing .af-play { display: none; }
.audio-fab.playing .af-eq { display: inline-flex; }

.af-label { line-height: 1.05; text-align: left; white-space: nowrap; }
.af-label small { display: block; font-family: var(--font-body); font-weight: 800; font-size: .58rem; letter-spacing: .06em; opacity: .65; margin-top: 2px; }

@media (prefers-reduced-motion: reduce) { .af-eq i { animation: none; height: 60%; } }
@media (max-width: 768px) { .audio-fab { display: none !important; } }


/* ====================================================
   MOBIILI / TAHVLI VAATE TÄIENDUSED
==================================================== */

/* Ankrute sihtmärgid ei peitu fikseeritud navi alla (nt party-read scroll) */
[id] { scroll-margin-top: 96px; }

/* Vormiväljad: vähemalt 16px, et iOS ei zoomiks fookusel */
input.diy-input, select.diy-input, textarea.diy-input { font-size: 16px; }

/* --- TAHVEL (portree, 769–1024) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-right-massive { height: 54vh; }
    .bento-grid { gap: 22px; }
    .events-banner { padding: 56px 30px; }
    .diy-container { gap: 36px; }
}

/* --- VÄIKE TELEFON (≤480px) --- */
@media (max-width: 480px) {
    body { background-size: 26px 26px; }

    .navbar { width: calc(100% - 20px); padding: 0 12px; height: 52px; top: 12px; }
    .logo-wrapper { width: 62px; height: 62px; top: -2px; left: 10px; border-radius: 14px; box-shadow: 3px 3px 0 var(--rosa); }
    .lang-current { padding: 6px 12px; font-size: 0.8rem; }
    .lang-dropdown { min-width: 118px; }

    .mega-hero { padding: 90px 16px 20px; }
    .hero-title-new { font-size: clamp(2.6rem, 13vw, 3.4rem); }
    .badge-new { font-size: 0.72rem; padding: 6px 12px; margin-bottom: 16px; }
    .hero-desc-new { font-size: 0.9rem; padding: 12px 14px; }
    .hero-right-massive { height: 40vh; }
    .massive-window { border-radius: 20px; box-shadow: 7px 7px 0 var(--rosa); }

    .marquee { margin: 30px 0; padding: 12px 0; }
    .marquee-inner { font-size: 1.7rem; }

    .rituals-section { margin: 40px auto; }
    .ritual-card { padding: 20px; border-radius: 20px; }
    .ritual-title { font-size: 2.3rem; }
    .ritual-badge { font-size: 0.85rem; padding: 7px 14px; }
    .ritual-desc { font-size: 0.95rem; }
    .ritual-visual { height: 190px; }

    .bento-section h2 { font-size: 2.1rem; }
    .card { padding: 20px; }
    .card-title { font-size: 1.7rem; }
    .food-img, .food-img.large { width: 118px; height: 118px; right: -4px; top: -16px; }
    .card-price { font-size: 1.3rem; }
    .hours-list { padding: 14px; }
    .hours-list li { font-size: 0.95rem; }

    .diy-section { padding: 32px 12px; margin: 40px 0; }
    .diy-info h2 { font-size: 2.1rem; }
    .diy-box { padding: 16px; border-radius: 20px; box-shadow: 5px 5px 0 var(--ocean); }
    .diy-total { font-size: 1.5rem; }
    .btn-submit { font-size: 1rem; padding: 14px; }

    .events-banner { padding: 32px 16px; margin-bottom: 40px; }
    .events-banner h2 { font-size: 2.1rem; }
    .events-banner p { font-size: 1rem; }

    .gallery-title { font-size: 2.1rem; }

    .footer-brand h2 { font-size: 2.3rem; }
    .footer-col h3 { font-size: 1.2rem; }
    .footer-col p, .footer-brand p { font-size: 1rem; }

    .modal-header h2 { font-size: 1.8rem; }
    .DefaultView_categoryName__81kTs { font-size: 1.5rem; }
    .MenuItemInner_menuItemTitle__tUg2o { font-size: 1.05rem; }

    .booking-steps-container { padding: 16px; }
    .step-title { font-size: 1.5rem; }
    .table-map-container { height: 280px; }
    .table-item { width: 56px; height: 56px; font-size: 0.7rem; border-width: 2px; box-shadow: 3px 3px 0 var(--text-color); }

}

/* --- VÄGA VÄIKE (≤360px) --- */
@media (max-width: 360px) {
    .hero-title-new { font-size: clamp(2.1rem, 14vw, 2.7rem); }
    .btn-nav { padding: 7px 12px; font-size: 0.78rem; }
    .ritual-title { font-size: 1.95rem; }
    .bento-section h2, .diy-info h2, .events-banner h2 { font-size: 1.8rem; }
    .footer-brand h2 { font-size: 2rem; }
}

/* --- MADAL LANDSCAPE (telefon küljel): modalid kerivad täiskõrgusel --- */
@media (max-height: 480px) and (orientation: landscape) {
    .menu-modal-container, .booking-modal-container { height: 100%; border-radius: 0; }
    .hero-right-massive { height: 72vh; }
}


/* ====================================================
   LAADIMISAKEN (PRELOADER) – Mehhiko fiesta
==================================================== */
.pl-lock { overflow: hidden; }

#preloader {
    position: fixed; inset: 0; z-index: 99999; overflow: hidden;
    background: var(--rosa);
    background-image: radial-gradient(rgba(10,10,10,.16) 1.6px, transparent 1.6px);
    background-size: 26px 26px;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }

/* Pidulipud (papel picado) ülaservas */
.pl-bunting {
    position: absolute; top: 0; left: -2%; width: 104%;
    display: flex; justify-content: space-around; align-items: flex-start;
    border-top: 4px solid var(--text-color);
    transform-origin: top center; animation: pl-sway 4s ease-in-out infinite;
}
.pl-bunting i {
    width: 0; height: 0;
    border-left: 20px solid transparent; border-right: 20px solid transparent;
    border-top: 32px solid var(--tequila);
    filter: drop-shadow(0 3px 0 rgba(10,10,10,.25));
}
.pl-bunting i:nth-child(4n+2) { border-top-color: var(--ocean); }
.pl-bunting i:nth-child(4n+3) { border-top-color: var(--agave); }
.pl-bunting i:nth-child(4n+4) { border-top-color: var(--bg-color); }
@keyframes pl-sway { 0%, 100% { transform: rotate(-1.4deg); } 50% { transform: rotate(1.4deg); } }

/* Langev konfetti */
.pl-confetti { position: absolute; inset: 0; pointer-events: none; }
.pl-confetti span {
    position: absolute; top: -24px; width: 11px; height: 16px;
    border: 1.5px solid rgba(10,10,10,.45);
    animation-name: pl-fall; animation-timing-function: linear; animation-iteration-count: infinite;
}
@keyframes pl-fall {
    0%   { transform: translateY(-12vh) rotate(0); opacity: 0; }
    12%  { opacity: 1; }
    100% { transform: translateY(114vh) rotate(640deg); opacity: 1; }
}

/* Keskosa: logo + pealkiri + riba */
.pl-center { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; }
.pl-logo {
    width: 150px; height: 150px; background: var(--bg-color);
    border: 5px solid var(--text-color); border-radius: 28px;
    box-shadow: 10px 10px 0 var(--text-color); padding: 16px;
    display: flex; align-items: center; justify-content: center;
    animation: pl-pop 1.7s ease-in-out infinite;
}
.pl-logo img { width: 100%; height: 100%; object-fit: contain; }
@keyframes pl-pop {
    0%, 100% { transform: rotate(-4deg) translateY(0) scale(1); }
    50%      { transform: rotate(3deg) translateY(-12px) scale(1.05); }
}
.pl-title {
    margin-top: 26px; font-family: var(--font-head); text-transform: uppercase;
    font-size: clamp(2.2rem, 8vw, 3.4rem); line-height: 1; letter-spacing: 1px;
    color: var(--bg-color); -webkit-text-stroke: 2px var(--text-color); text-shadow: 4px 4px 0 var(--text-color);
}
.pl-tagline {
    margin-top: 10px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
    color: var(--text-color); font-size: .8rem;
}
.pl-bar {
    margin-top: 26px; width: min(260px, 68vw); height: 14px;
    background: rgba(254,250,246,.35); border: 3px solid var(--text-color); border-radius: 50px;
    overflow: hidden; box-shadow: 4px 4px 0 var(--text-color);
}
.pl-bar span {
    display: block; height: 100%; width: 45%; background: var(--tequila);
    border-right: 2px solid var(--text-color); border-radius: 50px;
    animation: pl-load 1.3s ease-in-out infinite;
}
@keyframes pl-load { 0% { transform: translateX(-120%); } 100% { transform: translateX(260%); } }

@media (max-width: 480px) {
    .pl-logo { width: 112px; height: 112px; border-width: 4px; box-shadow: 7px 7px 0 var(--text-color); padding: 12px; }
    .pl-bunting i { border-left-width: 15px; border-right-width: 15px; border-top-width: 24px; }
    .pl-title { margin-top: 20px; }
    .pl-bar { margin-top: 22px; }
}
@media (prefers-reduced-motion: reduce) {
    .pl-bunting, .pl-logo, .pl-bar span { animation: none !important; }
    .pl-confetti { display: none; }
}


/* ====================================================
   MOBIILI PARANDUSED: hero-pilt, footeri/tab-riba vahe
==================================================== */
@media (max-width: 768px) {
    /* Hero taustal hõljuv toidupilt (soogipakkumine_1.png) mobiilis ära näita */
    .hero-float-food { display: none !important; }

    /* Footer ulatugu tumeda taustaga kuni alumise tab-ribani – ei jää heledat triipu */
    body { padding-bottom: 0; }
    footer { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
}


/* ====================================================
   SÜLEARVUTI MASTAAP
   Sülearvuti-laiustel (1025–1680px) renderdab leht veidi väiksemas
   mastaabis – nagu brauseri ~80% zoom. Suured monitorid (>1680px) jäävad
   100% peale. HÄÄLESTUS: muuda ainult 'zoom' väärtust (väiksem arv = väiksem leht).
==================================================== */
@media (min-width: 1025px) and (max-width: 1680px) {
    /* zoom eemaldatud – nüüd õige tüpograafia/ruumi skaala */
}
