/* ============================================
   ORGANIC MILANO - MAIN STYLESHEET
   Redesigned Multi-Page Website
   Fonts: Cinzel, Cormorant Garamond, Playfair Display, Inter
   ============================================ */

:root {
    --cream: #FFFEF9;
    --cream-dark: #f5f0e6;
    --green: #0D2818;
    --green-light: #1a4d2e;
    --green-sage: #2d5a3d;
    --gold: #C9A227;
    --gold-light: #d4b84a;
    --charcoal: #1a1a1a;
    --gray: #666;
    --white: #fff;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Cinzel', serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; }

/* NAVIGATION - Green Header */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    background: var(--green);
    transition: var(--transition);
}
.navbar.scrolled {
    background: var(--green);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    padding: 15px 0;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem; font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
}
.nav-menu { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-link {
    font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase; letter-spacing: 0.1em;
    position: relative; padding: 8px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold) !important;
    color: var(--green) !important;
    padding: 12px 28px !important;
    border-radius: 8px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--white);
    padding: 100px 20px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    pointer-events: none; z-index: 0;
}
.hero-oven-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    overflow: hidden; pointer-events: none; z-index: 0;
    background: #000;
}
.hero-oven-bg video {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    object-fit: cover; display: block;
}
.hero-oven-bg::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 40, 24, 0.50) 0%,
        rgba(0, 0, 0, 0.25) 35%,
        rgba(0, 0, 0, 0.30) 65%,
        rgba(13, 40, 24, 0.65) 100%
    );
    z-index: 1; pointer-events: none;
}
.hero-oven-bg img { display: none; }
.hero-content { max-width: 900px; position: relative; z-index: 2; }
.hero-logo-img {
    display: block; margin: 0 auto 30px;
    max-width: clamp(220px, 40vw, 420px); height: auto;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--gold); opacity: 0.65;
    letter-spacing: 0.3em; text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-tagline {
    font-family: var(--font-accent);
    font-size: 1.45rem; font-weight: 400; font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px; max-width: 520px;
    margin-left: auto; margin-right: auto;
    letter-spacing: 0.02em; line-height: 1.6;
}
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; font-size: 0.9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    border-radius: 8px; transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--green); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary { background: var(--green); color: var(--white); }
.btn-secondary:hover { background: var(--green-light); }
.btn-outline { border: 2px solid rgba(255,255,255,0.3); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* SECTIONS */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.2em;
    text-transform: uppercase; margin-bottom: 15px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500; color: var(--green);
}
.section-title span { font-style: italic; }
.section-title-cinzel {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500; color: var(--green);
    letter-spacing: 0.04em;
}
.section-title-cinzel span { color: var(--gold); font-weight: 600; }
.section-line { width: 60px; height: 2px; background: var(--gold); margin: 20px auto 0; }

/* PHILOSOPHY */
.philosophy { background: var(--white); padding: 60px 0; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.philosophy-quote {
    font-family: var(--font-display);
    font-size: 1.2rem; font-style: italic;
    color: var(--green); line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding-left: 20px; margin-bottom: 15px;
}
.philosophy-text { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.value-card {
    background: var(--cream); padding: 16px; border-radius: 10px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
    width: 44px; height: 44px;
    background: var(--green); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--green); }
.value-card p { color: var(--gray); font-size: 0.78rem; line-height: 1.4; }

/* LOCATIONS */
.locations { background: var(--cream); padding: 60px 0; }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.location-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow); transition: transform 0.3s; cursor: pointer;
}
.location-card:hover { transform: translateY(-10px); }
.location-img {
    height: 170px; background-size: cover; background-position: center;
    position: relative;
}
.location-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(transparent 50%, rgba(13,40,24,0.8));
}
.location-morigi { background-image: url('morigi.jpg'); }
.location-badge {
    position: absolute; top: 12px; left: 12px; z-index: 1;
    background: var(--white); color: var(--green);
    padding: 6px 12px; border-radius: 6px;
    font-size: 0.72rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 5px;
}
.location-content { padding: 18px; }
.location-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; color: var(--green); margin-bottom: 10px;
}
.location-info {
    color: var(--gray); font-size: 0.85rem; margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px;
}
.location-hours {
    display: flex; flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(13,40,24,0.06);
    border-radius: 8px; margin: 12px 0; overflow: hidden;
}
.location-hours-header {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--green); color: var(--white); padding: 8px 14px;
}
.location-hours-header .lh-label {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--gold);
}
.location-hours-header .lh-days {
    font-size: 0.72rem; color: rgba(255,255,255,0.7);
}
.location-hours-body { display: flex; }
.location-hours-slot {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; padding: 10px 8px; gap: 2px;
    border-right: 1px solid rgba(13,40,24,0.05);
}
.location-hours-slot:last-child { border-right: none; }
.location-hours-slot .meal-label {
    font-size: 0.68rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--gold);
}
.location-hours-slot .meal-time {
    font-size: 0.82rem; font-weight: 600; color: var(--charcoal);
}
.location-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold); font-weight: 600; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.05em;
}

/* MENU PAGE */
.menu-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    text-align: center; color: var(--white);
}
.menu-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500; margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.menu-hero h1 span { color: var(--gold); }
.menu-hero p {
    font-family: var(--font-accent);
    font-size: 1.2rem; font-style: italic; opacity: 0.85;
}
.menu-tabs-section {
    background: var(--white); padding: 25px 0;
    position: sticky; top: 70px; z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.menu-tabs-container {
    display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.menu-type-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.type-btn {
    padding: 10px 24px; font-size: 0.85rem; font-weight: 600;
    background: var(--white); color: var(--gray);
    border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer; border: 1.5px solid transparent;
}
.type-btn:hover { color: var(--green); border-color: var(--green); }
.type-btn.active { background: var(--gold); color: var(--green); border-color: var(--gold); }
.menu-nav { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.menu-nav-btn {
    padding: 10px 24px; font-size: 0.8rem; font-weight: 600;
    border: 1.5px solid rgba(13,40,24,0.12); background: transparent;
    color: var(--green); border-radius: 6px;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.menu-nav-btn:hover { background: rgba(13,40,24,0.05); }
.menu-nav-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }
.menu-content-section { padding: 50px 0; background: var(--cream); }
.menu-info {
    text-align: center; padding: 14px 20px;
    background: var(--white); border-radius: 10px;
    margin-bottom: 25px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 3px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
}
.menu-info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem; color: var(--green); margin: 0;
    display: flex; align-items: center; gap: 8px; letter-spacing: 0.03em;
}
.menu-info p { color: var(--gray); font-size: 0.82rem; margin: 0; }
.menu-info .hours {
    color: var(--gold); font-weight: 600; margin: 0;
    display: flex; align-items: center; gap: 5px; font-size: 0.82rem;
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-content { display: none; }
.menu-content.active { display: block; }
.menu-category { margin-bottom: 40px; }
.menu-category h4 {
    font-family: var(--font-display);
    font-size: 1.4rem; color: var(--green);
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: flex; align-items: center; gap: 12px;
}
.menu-category h4 svg { color: var(--gold); }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}
.menu-item {
    background: var(--cream); border-radius: 12px; padding: 20px;
    border: 1px solid rgba(13,40,24,0.08);
    transition: var(--transition);
    display: flex; justify-content: space-between; gap: 16px;
    position: relative; overflow: hidden;
}
.menu-item::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 0; background: var(--green-sage);
    transition: height 0.4s ease;
}
.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(13,40,24,0.1);
    border-color: var(--green-sage);
}
.menu-item:hover::before { height: 100%; }
.menu-item-name {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 600; color: var(--green);
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.menu-item-desc { color: var(--gray); font-size: 0.85rem; line-height: 1.5; }
.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600;
    color: var(--gold); white-space: nowrap; align-self: flex-start;
}
.badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
}
.badge svg { width: 12px; height: 12px; }
.badge-veg { background: rgba(76,175,80,0.15); color: #4caf50; }
.badge-vegan { background: rgba(139,195,74,0.15); color: #8bc34a; }
.badge-spicy { background: rgba(244,67,54,0.15); color: #f44336; }
.badge-star { background: rgba(255,193,7,0.15); color: #ffc107; }
.menu-legend {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 20px; padding: 16px; background: var(--white);
    border-radius: 10px; margin-bottom: 30px;
}
.legend-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.8rem; color: var(--gray);
}

/* ORDER */
.order-section { background: var(--white); padding: 60px 0; }
.order-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; max-width: 700px; margin: 0 auto;
}
.order-btn {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px; background: var(--cream);
    border-radius: 12px; border: 2px solid transparent;
    transition: var(--transition);
}
.order-btn:hover {
    border-color: var(--green-sage); transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.order-btn-left { display: flex; align-items: center; gap: 14px; flex: 1; }
.order-logo { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }
.order-logo img { max-width: 100%; max-height: 35px; }
.order-btn h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--green); margin-bottom: 2px; }
.order-btn p { color: var(--gray); font-size: 0.8rem; }
.order-arrow { font-size: 1.3rem; color: var(--gold); }

/* BOOK */
.book-section { background: var(--white); padding: 50px 0; text-align: center; }
.book-text {
    font-family: var(--font-display);
    font-size: 1rem; font-style: italic; color: var(--gray);
    max-width: 500px; margin: 15px auto 25px; line-height: 1.7;
}
.book-card {
    background: var(--cream); padding: 24px 20px; border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05);
    border: 1px solid rgba(13,40,24,0.06);
    transition: var(--transition); max-width: 450px; margin: 0 auto;
}
.book-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.book-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem; color: var(--green); margin-bottom: 10px;
    display: flex; align-items: center; justify-content: center;
    gap: 8px; letter-spacing: 0.03em;
}
.book-card p {
    color: var(--gray); font-size: 0.88rem; margin-bottom: 3px;
    line-height: 1.5; display: flex; align-items: center;
    justify-content: center; gap: 6px;
}
.book-card .hours {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(201,162,39,0.1); color: var(--gold);
    padding: 8px 14px; border-radius: 6px;
    font-size: 0.8rem; font-weight: 600; margin: 10px 0 18px;
}

/* CONTACT */
.contact-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    text-align: center; color: var(--white);
}
.contact-section { padding: 60px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card {
    background: var(--white); padding: 30px; border-radius: 16px;
    box-shadow: var(--shadow);
}
.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem; color: var(--green);
    margin-bottom: 20px; letter-spacing: 0.03em;
}
.contact-item { display: flex; gap: 14px; margin-bottom: 18px; }
.contact-item-icon {
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream); border-radius: 10px;
    color: var(--green); flex-shrink: 0;
}
.contact-item-content h4 {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--gray); margin-bottom: 3px;
}
.contact-item-content p, .contact-item-content a {
    color: var(--green); font-weight: 500; font-size: 0.95rem;
}
.contact-item-content a:hover { color: var(--gold); }
.map-container {
    border-radius: 16px; overflow: hidden;
    height: 100%; min-height: 350px; box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* FOOTER */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px; margin-bottom: 50px;
}
.footer h2 {
    font-family: var(--font-display);
    font-size: 1.8rem; color: var(--white);
    margin-bottom: 15px; letter-spacing: 0.1em;
}
.footer p { line-height: 1.8; font-size: 0.95rem; }
.footer h4 {
    color: var(--white); font-size: 1rem; margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
}
.footer ul { list-style: none; }
.footer a {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.7); padding: 8px 0;
    transition: color 0.3s; font-size: 0.95rem;
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 15px; font-size: 0.9rem;
}
.footer-bottom a { display: inline; padding: 0; color: var(--gold); }
.footer-developed {
    text-align: center; padding-top: 20px;
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-developed a { color: var(--gold); display: inline; padding: 0; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
/* Safety: if JS fails, content still shows after 1.5s */
@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: revealFallback 0.8s ease 1.5s forwards; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .philosophy-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: var(--cream); flex-direction: column;
        justify-content: center; align-items: center; gap: 30px;
        transition: right 0.3s;
    }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { color: var(--charcoal); font-size: 1.1rem; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span { background: var(--charcoal); }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .section { padding: 70px 0; }
    .locations-grid, .order-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-oven-bg video { min-height: 100vh; min-width: 177vh; }
    .btn { width: 100%; max-width: 300px; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer h4 { justify-content: center; }
    .footer a { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .values-grid { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .values-grid { gap: 6px; }
    .value-card { padding: 12px 8px; }
    .value-card h3 { font-size: 0.85rem; }
    .value-card p { font-size: 0.7rem; }
    .value-icon { width: 36px; height: 36px; }
    .menu-legend { gap: 12px; }
    .menu-tabs-section { top: 60px; }
}
