/* Font Face Declarations */
@font-face {
    font-family: 'MexaRegular';
    src: url('./fonts/SushiClub_2025.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Condensed';
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'SushiClub_2025';
    src: url('fonts/SushiClub_2025.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Custom Properties */
:root {
    --primary-color: #264832;
    --background-color: #ffffff;
    --text-color: #264832;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --hover-color: #1a3525;
    --shadow-light: 0 2px 10px rgba(38, 72, 50, 0.1);
    --shadow-medium: 0 4px 20px rgba(38, 72, 50, 0.15);
    --transition: all 0.3s ease;
    
    /* Typography */
    --font-heading: 'SushiClub_2025', 'Playfair Display', serif;
    --font-body: 'Roboto Condensed', 'Bodoni Moda', sans-serif;
    
    
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Header Styles */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    border: none;
}

.header--small {
    padding: 0.5rem 0;
}

.header--small .nav-content {
    padding: 0.5rem 0;
}

.header--small .logo-image {
    height: 30px;
}

.header--small .logo h1 {
    font-size: 0.7rem;
}

.header--small .language-switcher {
    display: none;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.logo-image {
    height: 46px;
    width: auto;
    transition: all 0.3s ease;
}

.logo h1 {
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin: 0;
    transition: all 0.3s ease;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--primary-color);
    color: var(--background-color);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Top Buttons */
.hero-top-buttons {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 2.2rem;
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b4a 100%);
    color: var(--background-color);
    padding: 0.65rem 1.3rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(38, 72, 50, 0.13), 0 1px 4px rgba(38, 72, 50, 0.08);
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.cta-button i {
    font-size: 1.1em;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a3525 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(38, 72, 50, 0.18), 0 2px 8px rgba(38, 72, 50, 0.12);
}

.instagram-button {
    background: linear-gradient(135deg, #E4405F, #C13584) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

.instagram-button:hover {
    background: linear-gradient(135deg, #C13584, #833AB4) !important;
    color: #fff !important;
}

/* Падінги 20px тільки для кнопки у віджеті callback */
/* .callback-cta-btn {
    padding-left: 20px;
    padding-right: 20px;
} */

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1a3525 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(38, 72, 50, 0.25), 0 4px 12px rgba(38, 72, 50, 0.15);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(38, 72, 50, 0.2);
}

/* Menu Section */
.menu {
    padding: 6rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-item {
    background-color: var(--background-color);
    border-radius: 15px;
    padding: 0;
    text-align: left;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: auto;
    min-height: 300px;
    overflow: visible;
    align-items: stretch;
    padding: 1.5em 1em 1.5em 1em;
    min-height: 280px;
    position: relative; /* Додаємо position relative для правильного позиціонування ціни */
}

/* Removed hover animation to ensure prices are always visible */

.menu-item-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Makes the image square (1:1 aspect ratio) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    border-radius: 15px 15px 0 0;
    position: relative;
}

/* Fallback for items without images */
.menu-item-image:not([style*="background-image"]) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-image:not([style*="background-image"])::before {
    content: "📷";
    font-size: 3rem;
    color: #ccc;
}

.menu-item-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    margin-bottom: 1em;
}

.menu-item-title {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.menu-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-subtitle {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.3em;
    margin-bottom: 0.2em;
    color: #888;
    font-family: var(--font-body);
    font-weight: 400;
    white-space: normal;
}

.menu-item-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.2em;
    /* Removed transition to prevent any animations */
}

.menu-item-description.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
    display: block;
}

.menu-item-price {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    font-size: 1.32rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 200;
    text-align: center;
    background: rgba(255,255,255,0.85);
    padding: 6px 0 7px 0;
    border-radius: 0 0 15px 15px;
    box-shadow: none;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
}

.menu-item-bottom { display: none; }

.read-more-btn {
    display: inline-block;
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    color: #1a3525 !important;
    font-size: 0.92rem;
    padding: 0.22em 0.9em;
    border-radius: 8px;
    cursor: pointer;
    opacity: 1;
    /* Removed transition to prevent animations */
    margin-top: 0.4em;
    outline: none;
    font-family: var(--font-body);
    font-weight: 700 !important;
    box-shadow: 0 1px 4px rgba(38,72,50,0.04);
    position: relative;
    z-index: 10;
    text-shadow: 0 1px 4px #fff, 0 0 2px #e5f0ea;
    margin-bottom: 0.5em;
}
.read-more-btn:hover {
    opacity: 1;
    background: #e5f0ea;
    color: #1a3525 !important;
    border-color: var(--primary-color);
    text-shadow: 0 1px 4px #fff, 0 0 2px #e5f0ea;
}

/* Discount Section */
.discount {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.discount-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.discount-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.discount-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.discount-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--background-color);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 72, 50, 0.1);
}

.discount-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b4a 100%);
    color: var(--background-color);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(38, 72, 50, 0.15), 0 2px 8px rgba(38, 72, 50, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.discount-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.discount-button:hover {
    background: linear-gradient(135deg, #1a3525 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(38, 72, 50, 0.25), 0 4px 12px rgba(38, 72, 50, 0.15);
}

.discount-button:hover::before {
    left: 100%;
}

.discount-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(38, 72, 50, 0.2);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-text a:hover {
    color: var(--background-color);
}

.footer-text i {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--background-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link.instagram {
    background: rgba(255,255,255,0.1);
    color: white;
}

.social-link:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

/* Видаляю всі стилі для footer-callback-btn */
/* .footer-callback-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b4a 100%);
    color: #fff;
    border: none;
    padding: 0.65rem 1.3rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(38, 72, 50, 0.13), 0 1px 4px rgba(38, 72, 50, 0.08);
    min-width: 120px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-callback-btn i {
    font-size: 1.1em;
    margin-right: 0.2em;
}

.footer-callback-btn:hover {
    background: linear-gradient(135deg, #1a3525 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(38, 72, 50, 0.18), 0 2px 8px rgba(38, 72, 50, 0.12);
}

@media (max-width: 768px) {
    .footer-callback-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .footer-callback-btn span {
        display: none;
    }
} */

@media (max-width: 768px) {
    .footer-callback-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .footer-callback-btn span {
        display: none;
    }
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .logo h1 {
        font-size: 0.5rem;
    }
    
    .hero {
        padding: 2rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .menu,
    .discount {
        padding: 3rem 0;
    }
    
    .section-title,
    .discount-title {
        font-size: 1.8rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .menu-item {
        min-height: 430px;
        display: flex;
        flex-direction: column;
        justify-content: stretch;
    }
    
    .menu-item-image {
        height: 110px !important;
        object-fit: cover;
        width: 100%;
        border-radius: 1.2rem 1.2rem 0 0;
    }
    
    .menu-item-content {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: stretch;
        padding: 0.8rem;
    }
    
    .menu-item-details {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .menu-item-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        /* Ensure title is always visible */
        flex-shrink: 0;
    }
    
    .menu-item-description {
        font-size: 0.85rem;
        line-height: 1.4;
        flex-grow: 1;
        overflow: hidden;
        position: relative;
        max-height: 80px;
        transition: max-height 0.3s ease;
    }
    
    .menu-item-description.expanded {
        max-height: none;
    }
    
    .read-more-btn {
        font-size: 0.85rem;
        padding: 0.18em 0.7em;
        border-radius: 7px;
        margin-top: 0.3em;
    }
    
    .menu-item-bottom {
        gap: 0.3em;
    }
    
    .menu-item-price {
        font-size: 1rem;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .menu-item-subtitle {
        font-size: 0.75rem;
    }
    
    .discount-form {
        gap: 0.75rem;
    }
    
    .form-group input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .discount-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-callback-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .footer-callback-btn span {
        display: none;
    }
    
    .footer-callback-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .cta-button,
    .discount-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .menu-item-image {
        height: 150px;
    }
    
    .menu-item-content {
        padding: 0.75rem;
    }
    
    .menu-item-title {
        font-size: 1.2rem;
        /* Ensure title is always visible */
        flex-shrink: 0;
    }
    
    .menu-item-description {
        font-size: 0.8rem;
    }
    
    .menu-item-subtitle {
        font-size: 0.7rem;
    }
    
    .menu-item-price {
        font-size: 0.95rem;
        /* Ensure price is always visible at the bottom */
        flex-shrink: 0;
    }
    
    .form-group input {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .discount-button {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .read-more-btn {
        font-size: 0.8rem;
        padding: 0.13em 0.6em;
        border-radius: 6px;
        margin-top: 0.2em;
    }
    
    .menu-item-bottom {
        gap: 0.2em;
    }
}

/* Loading and Animation States */
.menu-item-image img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item-image img.loaded {
    opacity: 1;
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Print styles */
@media print {
    .header,
    .discount,
    .footer {
        display: none;
    }
    
    .hero,
    .menu {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .menu-item-image {
        height: 150px;
    }
}

/* Callback Widget Styles */
/* Видаляю всі стилі для callback-widget */
/* .callback-widget {
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 1000;
} */

/* Сучасна кнопка callback — універсальний стиль для всіх варіантів */
/* .callback-btn,
.callback-cta-btn,
.footer-callback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b4a 100%);
    color: #fff;
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(38, 72, 50, 0.13), 0 1px 4px rgba(38, 72, 50, 0.08);
    min-width: 100px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.callback-btn i,
.callback-cta-btn i,
.footer-callback-btn i {
    font-size: 1.2em;
    margin-right: 0;
    color: #fff;
}

.callback-btn:hover,
.callback-cta-btn:hover,
.footer-callback-btn:hover {
    background: linear-gradient(135deg, #1a3525 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(38, 72, 50, 0.18), 0 2px 8px rgba(38, 72, 50, 0.12);
}

@media (max-width: 768px) {
    .callback-btn,
    .callback-cta-btn,
    .footer-callback-btn {
        width: 50px;
        height: 50px;
    padding: 0;
        justify-content: center;
        border-radius: 50%;
        min-width: 0;
}
    .callback-btn span,
    .callback-cta-btn span,
    .footer-callback-btn span {
        display: none;
}
} */

/* Footer Popup Styles */
.footer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.footer-popup.active {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.footer-popup-content, .callback-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(38, 72, 50, 0.18), 0 2px 8px rgba(38, 72, 50, 0.10);
    padding: 32px 24px 28px 24px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    border: none;
    height: auto;
    min-height: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    box-sizing: border-box;
    overflow-y: visible;
    min-width: 340px;
}

.callback-form {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.callback-form.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.footer-popup-header, .callback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 18px 0;
    border-bottom: 1.5px solid var(--border-color);
    background: none;
    color: var(--primary-color);
    border-radius: 20px 20px 0 0;
}

.footer-popup-header h3, .callback-header h3 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.close-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.7rem;
    cursor: pointer;
    padding: 0 6px;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.close-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.15);
}

.footer-popup form, .callback-form form {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}

.footer-popup input,
.footer-popup textarea,
.callback-form input,
.callback-form textarea {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    height: 64px;
    max-height: 64px;
    box-sizing: border-box;
    border-radius: 12px;
    font-size: 1.08rem;
    padding: 0 18px;
    resize: none;
    display: block;
}

.footer-popup textarea,
.callback-form textarea {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    resize: none;
}

.footer-popup button[type="submit"], .callback-form button[type="submit"] {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: block;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(90deg, var(--primary-color) 60%, #3a6b4a 100%);
    color: #fff;
    border: none;
    padding: 15px 0;
    border-radius: 10px;
    font-size: 1.13rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 4px 18px rgba(38, 72, 50, 0.10);
    transition: background 0.2s, transform 0.2s;
}
.footer-popup button[type="submit"]:hover, .callback-form button[type="submit"]:hover {
    background: linear-gradient(90deg, #1a3525 60%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.04);
}

.footer-popup-success, .callback-success {
    padding: 30px 0 10px 0;
    text-align: center;
}

.footer-popup-success p, .callback-success p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}

/* Mobile adjustments for callback widget */
/* Видаляю всі медіа-запити для callback кнопок */
/* @media (max-width: 768px) {
    .callback-widget {
        bottom: 40px;
        right: 15px;
    }
    
    .callback-form {
        width: 280px;
        right: -10px;
    }
    
    .callback-btn span {
        display: none;
    }
    
    .callback-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .footer-popup-content {
        width: 95%;
        margin: 20px;
    }

    .footer-popup form {
        padding: 20px;
    }
} */

/* Видаляю всі медіа-запити для callback кнопок */
/* @media (max-width: 600px) {
    .footer-popup-content, .callback-form {
        width: 98vw !important;
        min-width: 0 !important;
        max-width: 420px !important;
        height: auto !important;
        max-height: 98vh !important;
        padding: 14px 6px 18px 6px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        box-sizing: border-box;
        overflow-y: auto;
    }
    .footer-popup-header, .callback-header {
        padding: 0 0 8px 0;
        font-size: 1.1rem;
    }
    .footer-popup-header h3, .callback-header h3 {
        font-size: 1.1rem;
    }
    .footer-popup form, .callback-form form {
        gap: 10px;
        margin-top: 10px;
    }
    .footer-popup input, .footer-popup textarea, .callback-form input, .callback-form textarea {
        font-size: 0.98rem;
        padding: 8px 8px;
        border-radius: 8px;
    }
    .footer-popup button[type="submit"], .callback-form button[type="submit"] {
        font-size: 1rem;
        padding: 10px 0;
        border-radius: 8px;
        width: 100%;
        margin-top: 8px;
    }
    .close-btn {
        font-size: 1.3rem;
        padding: 0 2px;
    }
} */

.footer-popup, .footer-popup *, .callback-form, .callback-form * {
    box-sizing: border-box;
}

/* Map Section Styles */
.map-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
}

.map-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.map-address,
.map-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-color);
}

.map-address i,
.map-hours i {
    color: var(--primary-color);
    font-size: 1.2rem;
    display: inline-block;
    margin-right: 0.5rem;
}

.map-address strong,
.map-hours strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
    
    .map-address,
    .map-hours {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Виправлення для попап-форми */
.footer-popup input,
.footer-popup textarea {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.footer-popup textarea {
    min-height: 70px;
    resize: vertical;
}

.footer-popup input:last-child,
.footer-popup textarea:last-child {
    margin-bottom: 0;
}

.footer-popup form > *:not(:last-child) {
    margin-bottom: 1rem;
}

.menu-item-description.expanded {
    max-height: none;
    overflow: visible;
}

.menu-item.expanded {
    height: auto !important;
    overflow: visible !important;
}

.header--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.3s, transform 0.3s;
}
.header--small {
    height: 48px !important;
    min-height: 0 !important;
    transition: height 0.3s;
}
.header--small .logo-image {
    height: 28px !important;
    transition: height 0.3s;
}
.header--small .logo h1 {
    font-size: 0.6rem !important;
    transition: font-size 0.3s;
}

.menu-item-description[data-i18n='menu-item-7-desc'] {
  max-height: none !important;
  overflow: visible !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  white-space: normal !important;
}

/* Складний Glassmorphism з Wow ефектом */

/* Анімація для всіх кнопок */
@keyframes glassFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(0.5deg); }
    50% { transform: translateY(-4px) rotate(0deg); }
    75% { transform: translateY(-2px) rotate(-0.5deg); }
}

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

@keyframes glassPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.7); }
    50% { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(255, 255, 255, 0); }
}

@keyframes glassGlow {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.1) saturate(1.2); }
}

/* Базовий складний glassmorphism для всіх кнопок */
.cta-button,
.instagram-button,
.callback-btn,
.footer-callback-btn,
.read-more-btn,
.footer-popup button[type="submit"],
.callback-form button[type="submit"],
.discount-button {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 20px rgba(255, 255, 255, 0.1) inset !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    animation: glassFloat 6s ease-in-out infinite !important;
}

/* Ефект світіння при наведенні */
.cta-button::before,
.instagram-button::before,
.callback-btn::before,
.footer-callback-btn::before,
.read-more-btn::before,
.footer-popup button[type="submit"]::before,
.callback-form button[type="submit"]::before,
.discount-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.cta-button:hover::before,
.instagram-button:hover::before,
.callback-btn:hover::before,
.footer-callback-btn:hover::before,
.read-more-btn:hover::before,
.footer-popup button[type="submit"]:hover::before,
.callback-form button[type="submit"]:hover::before,
.discount-button:hover::before {
    left: 100%;
}

/* Hover ефекти */
.cta-button:hover,
.instagram-button:hover,
.callback-btn:hover,
.footer-callback-btn:hover,
.read-more-btn:hover,
.footer-popup button[type="submit"]:hover,
.callback-form button[type="submit"]:hover,
.discount-button:hover {
    transform: translateY(-3px) scale(1.02) !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.2) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset,
        0 0 30px rgba(255, 255, 255, 0.2) inset !important;
    animation: glassPulse 2s ease-in-out infinite !important;
}

/* Спеціальні стилі для кнопок з градієнтом */
.cta-button,
.instagram-button,
.callback-btn,
.footer-callback-btn {
    background: linear-gradient(135deg, 
        rgba(38, 72, 50, 0.8) 0%, 
        rgba(58, 107, 74, 0.8) 50%, 
        rgba(38, 72, 50, 0.8) 100%) !important;
    background-size: 200% 200% !important;
    animation: glassFloat 6s ease-in-out infinite, glassShine 3s ease-in-out infinite !important;
}

.cta-button:hover,
.instagram-button:hover,
.callback-btn:hover,
.footer-callback-btn:hover {
    background: linear-gradient(135deg, 
        rgba(26, 53, 37, 0.9) 0%, 
        rgba(38, 72, 50, 0.9) 50%, 
        rgba(26, 53, 37, 0.9) 100%) !important;
    animation: glassPulse 1.5s ease-in-out infinite !important;
}

/* Стилі для кнопок форм */
.footer-popup button[type="submit"],
.callback-form button[type="submit"] {
    background: linear-gradient(90deg, 
        rgba(38, 72, 50, 0.8) 0%, 
        rgba(58, 107, 74, 0.8) 50%, 
        rgba(38, 72, 50, 0.8) 100%) !important;
    background-size: 200% 200% !important;
    animation: glassFloat 6s ease-in-out infinite, glassShine 2.5s ease-in-out infinite !important;
}

.footer-popup button[type="submit"]:hover,
.callback-form button[type="submit"]:hover {
    background: linear-gradient(90deg, 
        rgba(26, 53, 37, 0.9) 0%, 
        rgba(38, 72, 50, 0.9) 50%, 
        rgba(26, 53, 37, 0.9) 100%) !important;
    animation: glassPulse 1.2s ease-in-out infinite !important;
}

/* Стилі для кнопок "Відкрити весь опис" */
.read-more-btn {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.15) 100%) !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    animation: glassFloat 8s ease-in-out infinite !important;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.25) 100%) !important;
    color: var(--primary-color) !important;
    animation: glassPulse 2s ease-in-out infinite !important;
}

/* Стилі для кнопки знижки */
.discount-button {
    background: linear-gradient(135deg, 
        rgba(38, 72, 50, 0.8) 0%, 
        rgba(58, 107, 74, 0.8) 50%, 
        rgba(38, 72, 50, 0.8) 100%) !important;
    background-size: 200% 200% !important;
    animation: glassFloat 7s ease-in-out infinite, glassShine 3.5s ease-in-out infinite !important;
}

.discount-button:hover {
    background: linear-gradient(135deg, 
        rgba(26, 53, 37, 0.9) 0%, 
        rgba(38, 72, 50, 0.9) 50%, 
        rgba(26, 53, 37, 0.9) 100%) !important;
    animation: glassPulse 1.8s ease-in-out infinite !important;
}

/* Покращений glassmorphism для форм та попапів */
.footer-popup-content,
.callback-form {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 25px !important;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
    animation: glassFloat 10s ease-in-out infinite !important;
}

.footer-popup input,
.footer-popup textarea,
.callback-form input,
.callback-form textarea {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.7) 50%, 
        rgba(255, 255, 255, 0.9) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 15px !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
    transition: all 0.3s ease !important;
}

.footer-popup input:focus,
.footer-popup textarea:focus,
.callback-form input:focus,
.callback-form textarea:focus {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(255, 255, 255, 0.95) 100%) !important;
    border: 1px solid rgba(38, 72, 50, 0.6) !important;
    box-shadow: 
        0 12px 35px rgba(38, 72, 50, 0.15),
        0 0 0 2px rgba(38, 72, 50, 0.1) inset !important;
    transform: translateY(-2px) !important;
    animation: glassGlow 2s ease-in-out infinite !important;
}

/* Покращений glassmorphism для хедера */
.header {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
    animation: glassFloat 12s ease-in-out infinite !important;
}

/* Покращений glassmorphism для мови перемикачів */
.language-switcher {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.15) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 30px !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    animation: glassFloat 8s ease-in-out infinite !important;
}

.lang-btn {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.15) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.lang-btn.active {
    background: linear-gradient(135deg, 
        rgba(38, 72, 50, 0.8) 0%, 
        rgba(58, 107, 74, 0.8) 50%, 
        rgba(38, 72, 50, 0.8) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 
        0 8px 25px rgba(38, 72, 50, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset !important;
    animation: glassPulse 3s ease-in-out infinite !important;
}

/* Додаткові ефекти для інтерактивності */
.cta-button:active,
.instagram-button:active,
.callback-btn:active,
.footer-callback-btn:active,
.read-more-btn:active,
.footer-popup button[type="submit"]:active,
.callback-form button[type="submit"]:active,
.discount-button:active {
    transform: translateY(1px) scale(0.98) !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
}

/* Ефект частинок для кнопок */
.cta-button::after,
.instagram-button::after,
.callback-btn::after,
.footer-callback-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::after,
.instagram-button:hover::after,
.callback-btn:hover::after,
.footer-callback-btn:hover::after {
    opacity: 1;
}

/* Видаляю всі стилі для callback кнопок */
/* .callback-btn, .footer-callback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b4a 100%);
    color: #fff;
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(38, 72, 50, 0.15);
    position: relative;
    overflow: hidden;
}

.callback-btn i, .footer-callback-btn i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.callback-btn {
    position: relative;
    overflow: hidden;
}

.callback-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.callback-btn span {
    font-weight: 600;
}

.callback-btn i {
    font-size: 1.1rem;
} */

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.cookie-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.25rem;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-close-btn:hover {
    background: var(--border-color);
    color: var(--text-color);
}

.cookie-body p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    color: var(--text-light);
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cookie-type {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cookie-type strong {
    color: var(--text-color);
    font-size: 0.9rem;
}

.cookie-type span {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.cookie-btn.accept-btn {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept-btn:hover {
    background: var(--hover-color);
}

.cookie-btn.necessary-btn {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cookie-btn.necessary-btn:hover {
    background: var(--border-color);
}

.cookie-btn.settings-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.cookie-btn.settings-btn:hover {
    background: var(--border-color);
    color: var(--text-color);
}

.cookie-btn.cancel-btn {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.cookie-btn.cancel-btn:hover {
    background: var(--border-color);
    color: var(--text-color);
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cookie-modal-header h3 {
    margin: 0;
    color: var(--text-color);
}

.cookie-modal-body {
    margin-bottom: 1.5rem;
}

.cookie-setting {
    margin-bottom: 1.5rem;
}

.cookie-setting-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:disabled + .slider {
    background-color: var(--primary-color);
    opacity: 0.7;
    cursor: not-allowed;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-setting-info {
    flex: 1;
}

.cookie-setting-info strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.cookie-setting-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        padding: 0 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-setting-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
}

/* Cookie Banner Animation */
@keyframes cookieSlideIn {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes cookieSlideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.cookie-banner.slide-in {
    animation: cookieSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cookie-banner.slide-out {
    animation: cookieSlideOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Сучасна кнопка замовити дзвінок справа знизу */
/* .footer-callback-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a6b4a 100%);
    color: #fff;
    border: none;
    padding: 0.65rem 1.3rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(38, 72, 50, 0.13), 0 1px 4px rgba(38, 72, 50, 0.08);
    min-width: 120px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-callback-btn i {
    font-size: 1.1em;
    margin-right: 0.2em;
}

.footer-callback-btn:hover {
    background: linear-gradient(135deg, #1a3525 0%, var(--primary-color) 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(38, 72, 50, 0.18), 0 2px 8px rgba(38, 72, 50, 0.12);
}

@media (max-width: 768px) {
    .footer-callback-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .footer-callback-btn span {
        display: none;
    }
} */

/* Callback Button Styles */
.callback-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}
.callback-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.callback-button:hover {
    background: linear-gradient(135deg, #ff5252, #d63031);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,107,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255,107,107,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); }
}

/* Callback Modal Styles (копія футер-попапу) */
.callback-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.45);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.callback-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}
.callback-modal .footer-popup-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(38, 72, 50, 0.18), 0 2px 8px rgba(38, 72, 50, 0.10);
    padding: 32px 24px 28px 24px;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    border: none;
}
@media (max-width: 600px) {
  .callback-button {
    padding: 15px;
    border-radius: 50%;
    font-size: 0;
  }
  .callback-button .callback-text {
    display: none;
  }
  .callback-button i {
    font-size: 22px;
  }
  .callback-modal .footer-popup-content {
    padding: 18px 6px 18px 6px;
    max-width: 98vw;
  }
}

.lang-switch {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin: 16px 0 24px 0;
  font-size: 1.1em;
}
.lang-switch a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}
.lang-switch a:hover {
  color: #b22222;
}
.lang-switch .active-lang {
  font-weight: bold;
  color: #b22222;
  cursor: default;
  pointer-events: none;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 1rem;
    margin-left: 2rem;
    user-select: none;
}
.lang-switch a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
}
.lang-switch a:hover {
    background: var(--primary-color);
    color: #fff;
}
.lang-switch .active-lang {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    pointer-events: none;
}

/* New Badge Styles */
.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    animation: newBadgePulse 2s infinite;
}

@keyframes newBadgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.menu-item-image {
    position: relative;
}


