@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap&font-display=swap');

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1e1e1e;
    --bg-glass: rgba(20, 20, 20, 0.85);
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8960c;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #6a6a6a;
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;
    --glass-border: rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.15);
    --shadow-dark: 0 25px 50px rgba(0, 0, 0, 0.5);
    --shadow-3d: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 20px var(--gold-glow);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

.logo .logo-text-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 14px 22px 12px !important;
    background: linear-gradient(180deg, #2a231a 0%, #15110c 50%, #1a1510 100%) !important;
    border-radius: 6px !important;
    position: relative !important;
    border: 1px solid rgba(201, 162, 39, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(201, 162, 39, 0.1) !important;
}

.logo .logo-gold-bar {
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, transparent 0%, #b8942a 15%, #e8d48a 50%, #b8942a 85%, transparent 100%) !important;
    margin-bottom: 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 6px 6px 0 0 !important;
}

.logo .logo-text-block .logo-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    letter-spacing: 6px !important;
    color: #c9a227 !important;
    background: none !important;
    -webkit-text-fill-color: #c9a227 !important;
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.5) !important;
    line-height: 1 !important;
    filter: none !important;
    margin-top: 6px !important;
}

.logo .logo-text-block .logo-tagline {
    font-family: 'Playfair Display', serif !important;
    font-size: 9px !important;
    letter-spacing: 5px !important;
    color: #7a6a4a !important;
    margin-top: 5px !important;
    font-style: italic !important;
    text-transform: lowercase !important;
    font-weight: 400 !important;
    background: none !important;
    -webkit-text-fill-color: #7a6a4a !important;
}

.logo img, .logo-icon {
    height: 50px;
    width: 50px;
    filter: drop-shadow(0 0 10px var(--gold-glow));
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.logo:hover img, .logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-weight: 300;
}

.header-247-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-primary);
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: glow247 2s ease-in-out infinite;
    text-decoration: none;
    white-space: nowrap;
}

.header-247-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: var(--bg-primary);
}

.header-247-badge .badge-pulse {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse247 1.5s infinite;
}

.header-247-badge .badge-text {
    font-weight: 800;
    letter-spacing: 1px;
}

.header-247-badge .badge-price {
    font-size: 11px;
    opacity: 0.9;
}

.badge-247 {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: glow247 2s ease-in-out infinite;
}

.badge-247 .badge-pulse {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse247 1.5s infinite;
}

@keyframes pulse247 {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes glow247 {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6); }
}

@media (max-width: 1024px) {
    .badge-247 {
        position: absolute;
        top: 15px;
        right: 80px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

nav {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

nav a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

nav a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

nav a.active {
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-color: var(--gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.lang-switch {
    display: flex;
    gap: 8px;
    margin-left: 25px;
}

.lang-switch a {
    padding: 8px 16px;
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.lang-switch a:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.lang-switch a.active {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    border-color: transparent;
}

.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border: none;
    color: var(--bg-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 52px;
    min-height: 52px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: var(--bg-primary);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 30px 80px;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%),
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 40%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.btn {
    display: inline-block;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    color: var(--bg-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #27ae60 100%);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #c0392b 100%);
    color: white;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 12px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 25px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: -30px auto 50px;
    font-weight: 300;
}

.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    transition: all 0.4s ease;
}

.feature-icon svg {
    fill: var(--bg-primary);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.btn-large {
    padding: 18px 50px;
    font-size: 16px;
    letter-spacing: 2px;
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 14px 32px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-color: transparent;
    color: var(--bg-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

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

.dish-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    position: relative;
}

.dish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dish-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-3d);
    border-color: var(--gold-primary);
}

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

.dish-image-container {
    position: relative;
    overflow: hidden;
}

.dish-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dish-card:hover .dish-image {
    transform: scale(1.1);
}

.dish-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.dish-content {
    padding: 25px;
    position: relative;
}

.dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.dish-ingredients {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 300;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dish-price {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dish-add-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.dish-add-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-order-link {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-order-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--bg-primary);
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.btn-add-cart svg {
    flex-shrink: 0;
}

.btn-add-cart:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.order-type-selection {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.order-type-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 50px 60px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
}

.order-type-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.order-type-card.active {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    box-shadow: var(--shadow-gold);
}

.order-type-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.order-type-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.order-type-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.order-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.order-menu-section {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
}

.order-cart-section {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 30px;
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.order-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.order-form-section, .cart-section {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 30px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px 25px;
    background: var(--bg-tertiary);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: var(--gold-primary);
}

.radio-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--gold-primary);
}

.radio-option input:checked + span {
    color: var(--gold-primary);
}

.cart-items {
    margin-bottom: 25px;
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.cart-item-price {
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 500;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    border-color: var(--gold-primary);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 2px solid var(--gold-primary);
    margin-top: 20px;
}

.cart-total-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-total-amount {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-cart {
    text-align: center;
    padding: 60px 30px;
    color: var(--text-muted);
}

.empty-cart-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

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

.contact-info {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    font-size: 28px;
    color: var(--gold-primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-size: 20px;
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-map {
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--glass-border);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(80%) invert(92%) contrast(90%);
}

footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
}

.footer-content {
    color: var(--text-secondary);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 15px;
}

.footer-hours {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 30px;
}

.footer-hours .hours-label {
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-hours .hours-time {
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.footer-links a:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
    padding: 15px 0 25px;
    font-size: 14px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--text-muted);
}

.alert {
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid var(--danger);
    color: var(--danger);
}

@media (max-width: 1200px) {
    .order-container {
        grid-template-columns: 1fr;
    }
    
    .order-cart-section {
        position: relative;
        top: 0;
    }
}

@media (max-width: 992px) {
    .order-page, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 10px;
        border-bottom: 1px solid var(--glass-border);
    }
    
    nav.active {
        display: flex;
    }
    
    nav a {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    
    .lang-switch {
        margin-left: 0;
        justify-content: center;
        margin-top: 15px;
    }
    
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .header-content {
        position: relative;
    }
    
    .order-type-selection {
        flex-direction: column;
        align-items: center;
    }
    
    .order-type-card {
        width: 100%;
        max-width: 350px;
        padding: 30px;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .order-form-section, .cart-section {
        padding: 25px;
    }
}

.admin-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
}

.admin-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-nav a {
    padding: 12px 25px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-nav a.active, .admin-nav a:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-color: transparent;
    color: var(--bg-primary);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.admin-table th,
.admin-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.admin-table th {
    background: var(--bg-tertiary);
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.admin-table tr:hover td {
    background: rgba(212, 175, 55, 0.05);
}

.admin-table img {
    border-radius: 10px;
    object-fit: cover;
}

.status-badge {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-new, .status-pending {
    background: rgba(243, 156, 18, 0.2);
    color: var(--warning);
}

.status-processing, .status-confirmed {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.status-done, .status-completed {
    background: rgba(46, 204, 113, 0.2);
    color: var(--success);
}

.status-cancelled {
    background: rgba(231, 76, 60, 0.2);
    color: var(--danger);
}

.admin-form {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    max-width: 700px;
}

.admin-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    padding: 20px;
}

.login-form {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    padding: 60px 50px;
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-3d);
}

.login-form h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 32px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    padding: 40px;
    border-radius: 25px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-3d);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    font-size: 24px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--gold-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-primary);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Cart Modal */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cart-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 450px;
    max-height: 80vh;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-3d);
}

.cart-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.cart-modal-header {
    padding: 25px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold-primary);
}

.cart-modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--gold-primary);
}

.cart-modal-body {
    padding: 20px 25px;
    overflow-y: auto;
    flex: 1;
    min-height: 150px;
    max-height: 40vh;
}

.cart-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-tertiary);
    border-radius: 0 0 25px 25px;
}

.cart-modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.cart-modal-total span:last-child {
    color: var(--gold-primary);
    font-size: 22px;
}

/* Floating cart always visible */
.floating-cart-text {
    font-weight: 600;
}

/* Preorder Section */
.preorder-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
    width: 28px;
    background: var(--bg-tertiary);
    border: 2px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    border-color: var(--gold-primary);
}

.checkbox-container input:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-color: var(--gold-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid var(--bg-primary);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.preorder-hint {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 8px;
    padding-left: 40px;
}

/* Preorder Panel */
.preorder-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.preorder-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.preorder-panel.active {
    right: 0;
}

.preorder-panel-header {
    padding: 25px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-tertiary);
}

.preorder-panel-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold-primary);
}

.preorder-panel-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.preorder-panel-close:hover {
    background: var(--bg-primary);
    color: var(--gold-primary);
}

.preorder-panel-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px 20px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
}

.preorder-tab {
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.preorder-tab:hover,
.preorder-tab.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-color: transparent;
    color: var(--bg-primary);
}

.preorder-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.preorder-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.preorder-dish-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    transition: all 0.3s ease;
}

.preorder-dish-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.preorder-dish-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.preorder-dish-info {
    padding: 12px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preorder-dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.preorder-dish-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.preorder-panel-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-tertiary);
}

.preorder-cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.preorder-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-primary);
}

/* Floating preorder indicator */
.floating-preorder {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-primary);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.floating-preorder:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.preorder-badge {
    background: var(--bg-primary);
    color: var(--gold-primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Preorder selected items list */
.preorder-selected-items {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.preorder-selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
}

.preorder-selected-item:last-child {
    border-bottom: none;
}

.preorder-selected-name {
    font-size: 14px;
    color: var(--text-primary);
    flex: 1;
    margin-right: 15px;
}

.preorder-selected-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--bg-tertiary);
    color: var(--gold-primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn-sm:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    border-color: var(--gold-primary);
}

@media (max-width: 600px) {
    .preorder-panel {
        max-width: 100%;
    }
    
    .preorder-dish-img {
        width: 80px;
        height: 80px;
    }
    
    .preorder-dish-name {
        font-size: 14px;
    }
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-dropdown-btn {
    padding: 10px 18px;
    background: transparent;
    border: 2px solid var(--gold-primary);
    border-radius: 25px;
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    min-height: 44px;
}

.lang-dropdown-btn:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.lang-dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-3d);
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown:hover .lang-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--glass-border);
    min-height: 44px;
}

.lang-dropdown-content a:last-child {
    border-bottom: none;
}

.lang-dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.lang-dropdown-content a.active {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
}

/* Currency Dropdown */
.currency-dropdown {
    margin-left: 8px;
}

.currency-dropdown .lang-dropdown-btn {
    gap: 5px;
    font-weight: 600;
}

.currency-dropdown .lang-dropdown-content {
    min-width: 100px;
}

.currency-dropdown .lang-dropdown-content a {
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    margin-top: 60px;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-3d);
}

.newsletter-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.newsletter-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.newsletter-box p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-success {
    color: var(--success);
    font-size: 18px;
    font-weight: 500;
    padding: 20px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 15px;
    margin-top: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: all 0.4s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-primary);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .lang-dropdown {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .lang-dropdown-content {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .lang-dropdown:hover .lang-dropdown-content {
        transform: translateX(-50%) translateY(0);
    }
    
    .newsletter-box {
        padding: 40px 25px;
    }
    
    .newsletter-box h3 {
        font-size: 26px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        min-width: auto;
        width: 100%;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================ */

/* ===========================================
   1. MOBILE HEADER OPTIMIZATION (max-width: 768px)
   =========================================== */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 10px;
    }
    
    .logo .logo-text-block {
        padding: 10px 14px 8px !important;
    }
    
    .logo .logo-text-block .logo-text {
        font-size: 18px !important;
        letter-spacing: 4px !important;
    }
    
    .logo .logo-text-block .logo-tagline {
        font-size: 7px !important;
        letter-spacing: 3px !important;
    }
    
    .logo-img {
        height: 40px;
        max-width: 140px;
    }
    
    .logo img, .logo-icon {
        height: 40px;
        width: 40px;
    }
    
    .header-247-badge {
        padding: 6px 12px;
        font-size: 11px;
        gap: 5px;
        border-radius: 18px;
    }
    
    .header-247-badge .badge-pulse {
        width: 6px;
        height: 6px;
    }
    
    .header-247-badge .badge-price {
        display: none;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .lang-dropdown-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 44px;
    }
    
    .lang-dropdown-content {
        min-width: 100px;
    }
    
    .lang-dropdown-content a {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo .logo-text-block .logo-tagline {
        display: none !important;
    }
    
    .logo .logo-text-block {
        padding: 8px 12px 8px !important;
    }
    
    .header-247-badge .badge-text {
        font-size: 10px;
    }
}

/* ===========================================
   2. TOUCH-FRIENDLY FORMS (max-width: 768px)
   =========================================== */
@media (max-width: 768px) {
    .form-group {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        padding: 14px 18px;
        font-size: 16px;
        width: 100%;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn,
    button,
    input[type="submit"],
    input[type="button"] {
        min-height: 48px;
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .btn-sm {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .radio-option {
        width: 100%;
        min-height: 48px;
        padding: 12px 18px;
    }
    
    .qty-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .admin-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-form-section,
    .cart-section {
        padding: 20px 15px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 18px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
}

/* ===========================================
   3. CART MODAL OPTIMIZATION (max-width: 480px)
   =========================================== */
@media (max-width: 480px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 100%;
        max-width: 100%;
        padding: 25px 15px;
        border-radius: 20px;
        max-height: 95vh;
    }
    
    .modal-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-close {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
    
    .cart-items {
        max-height: 300px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 0;
    }
    
    .cart-item-info {
        width: 100%;
    }
    
    .cart-item-qty {
        width: 100%;
        justify-content: space-between;
    }
    
    .cart-total {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 0;
    }
    
    .cart-total-amount {
        font-size: 28px;
    }
    
    .modal-content .btn,
    .modal-content button {
        width: 100%;
        min-height: 48px;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-height: 48px;
    }
}

/* ===========================================
   4. ADMIN PANEL MOBILE (max-width: 768px)
   =========================================== */
@media (max-width: 768px) {
    .admin-container {
        padding: 10px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .admin-header {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
    }
    
    .admin-header > div {
        text-align: center;
    }
    
    .admin-header h1 {
        font-size: 24px !important;
        text-align: center !important;
        word-break: break-word;
        margin-bottom: 5px !important;
    }
    
    .admin-header p {
        font-size: 14px !important;
        margin-top: 5px;
    }
    
    .admin-nav {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding-bottom: 0;
        overflow-x: visible !important;
    }
    
    .admin-nav a {
        padding: 14px 10px !important;
        font-size: 13px !important;
        white-space: normal !important;
        min-height: 54px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        border-radius: 12px !important;
        line-height: 1.3;
    }
    
    .admin-nav a span {
        font-size: 10px !important;
        padding: 2px 6px !important;
        margin-left: 4px;
    }
    
    .admin-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .admin-table {
        min-width: 600px;
        font-size: 13px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 12px 10px;
        font-size: 12px;
    }
    
    .admin-table th:first-child,
    .admin-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--bg-tertiary);
        z-index: 10;
        min-width: 100px;
    }
    
    .admin-table td:first-child {
        background: var(--bg-glass);
    }
    
    .admin-table tr:hover td:first-child {
        background: rgba(212, 175, 55, 0.1);
    }
    
    .admin-table img {
        width: 50px;
        height: 50px;
    }
    
    /* Скрываем таблицы, показываем карточки */
    .admin-table {
        display: none !important;
    }
    
    .mobile-cards {
        display: block !important;
    }
    
    /* Мобильные карточки */
    .mobile-card {
        background: var(--bg-glass);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        padding: 16px;
        margin-bottom: 15px;
        backdrop-filter: blur(20px);
    }
    
    .mobile-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .mobile-card-id {
        font-size: 18px;
        font-weight: 600;
        color: var(--gold-primary);
    }
    
    .mobile-card-body {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-card-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mobile-card-label {
        color: var(--text-muted);
        font-size: 13px;
        flex-shrink: 0;
    }
    
    .mobile-card-value {
        color: var(--text-primary);
        font-size: 14px;
        font-weight: 500;
        text-align: right;
        word-break: break-word;
    }
    
    .mobile-card-actions {
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid var(--glass-border);
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .mobile-card-actions .btn {
        flex: 1;
        min-width: calc(50% - 5px);
        padding: 12px;
        font-size: 13px;
    }
    
    .admin-form {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
        min-height: 44px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 12px !important;
        min-height: 44px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .status-badge {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    /* Admin Dashboard Grid Fix */
    .admin-dashboard-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Admin Cards */
    .admin-stat-cards {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-bottom: 25px !important;
    }
    
    .admin-stat-cards > div {
        padding: 20px !important;
    }
    
    .admin-stat-cards > div > div:first-child {
        font-size: 42px !important;
    }
    
    /* Admin Actions */
    .admin-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .admin-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Admin page specific fixes */
    .admin-content {
        padding: 15px;
    }
    
    .admin-content h1 {
        font-size: 22px;
    }
    
    /* Filter buttons */
    .admin-filters {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .admin-filters .btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    /* Order cards for mobile */
    .order-card-mobile {
        background: var(--bg-glass);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .order-card-mobile .order-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .order-card-mobile .order-id {
        font-weight: 700;
        color: var(--gold-primary);
    }
    
    .order-card-mobile .order-details {
        display: grid;
        gap: 8px;
        font-size: 13px;
    }
    
    .order-card-mobile .order-row {
        display: flex;
        justify-content: space-between;
    }
    
    .order-card-mobile .order-label {
        color: var(--text-muted);
    }
    
    .order-card-mobile .order-value {
        color: var(--text-primary);
        text-align: right;
    }
    
    .order-card-mobile .order-actions {
        display: flex;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--glass-border);
    }
    
    .order-card-mobile .order-actions .btn {
        flex: 1;
        padding: 10px;
        font-size: 12px;
    }
    
    /* Hide table on very small screens, show cards */
    .admin-table-desktop {
        display: none;
    }
    
    .admin-cards-mobile {
        display: block;
    }
    
    /* Settings page */
    .settings-grid {
        grid-template-columns: 1fr !important;
    }
    
    .settings-section {
        padding: 20px 15px;
    }
    
    .settings-section h3 {
        font-size: 16px;
    }
    
    /* Menu edit form */
    .menu-edit-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Logs page */
    .log-table {
        font-size: 11px;
    }
    
    .log-table th,
    .log-table td {
        padding: 8px 5px;
    }
    
    .log-table .user-agent {
        max-width: 100px;
    }
}

/* ===========================================
   4.5. ADMIN PANEL SMALL MOBILE (max-width: 480px)
   =========================================== */
@media (max-width: 480px) {
    .admin-container {
        padding: 8px !important;
    }
    
    .admin-header h1 {
        font-size: 18px !important;
    }
    
    .admin-nav {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
    
    .admin-nav a {
        padding: 8px 5px !important;
        font-size: 10px !important;
        min-height: 36px;
    }
    
    .admin-table {
        font-size: 11px !important;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 8px 5px !important;
    }
    
    .btn {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
    
    .admin-form {
        padding: 15px 10px !important;
    }
    
    .form-group label {
        font-size: 12px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px !important;
        padding: 10px !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .stat-card {
        padding: 15px 10px !important;
    }
    
    .stat-value {
        font-size: 24px !important;
    }
    
    .stat-label {
        font-size: 11px !important;
    }
}

/* ===========================================
   5. BETTER TYPOGRAPHY (max-width: 576px)
   =========================================== */
@media (max-width: 576px) {
    body {
        line-height: 1.8;
    }
    
    .hero {
        padding: 100px 15px 50px;
    }
    
    .hero-content h1 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
        line-height: 1.3;
    }
    
    .section-title::after {
        width: 80px;
        margin-top: 15px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin: -20px auto 30px;
        line-height: 1.7;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .feature-desc {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .dish-name {
        font-size: 18px;
    }
    
    .dish-ingredients {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .dish-price {
        font-size: 22px;
    }
    
    .dish-content {
        padding: 18px;
    }
    
    .order-type-card h3 {
        font-size: 20px;
    }
    
    .order-type-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .order-type-icon {
        font-size: 45px;
        margin-bottom: 15px;
    }
    
    .contact-text h4 {
        font-size: 18px;
    }
    
    .contact-text p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .footer-logo {
        font-size: 26px;
    }
    
    .footer-tagline {
        font-size: 10px;
        letter-spacing: 3px;
    }
    
    footer {
        padding: 40px 0 25px;
        margin-top: 50px;
    }
    
    .login-form {
        padding: 40px 25px;
    }
    
    .login-form h2 {
        font-size: 26px;
    }
    
    .alert {
        padding: 15px 20px;
        font-size: 14px;
        border-radius: 12px;
    }
}

/* ===========================================
   6. EXTRA SMALL DEVICES (max-width: 360px)
   =========================================== */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .logo .logo-text-block .logo-text {
        font-size: 16px !important;
        letter-spacing: 3px !important;
    }
    
    .header-247-badge {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .menu-grid {
        gap: 20px;
    }
    
    .dish-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .dish-footer .btn-add-cart,
    .dish-footer .btn-order-link {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
    
    .categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 11px;
    }
}

/* ===========================================
   7. PREVENT HORIZONTAL SCROLL
   =========================================== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    
    .hero::before {
        width: 100%;
        height: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
