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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #eff6ff, #ffffff, #fffbeb);
    color: #333;
}

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

/* ===== HEADER ===== */
.header {
    background: linear-gradient(to right, #1e40af, #1e3a8a, #1e40af);
    color: white;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.flag {
    font-size: 32px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(to right, #fcd34d, #fef08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo p {
    font-size: 12px;
    color: #dbeafe;
}

.navbar {
    display: flex;
    gap: 30px;
}

.navbar button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.navbar button:hover {
    color: #fcd34d;
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s;
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fcd34d;
    color: #1e40af;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(to right, #1e40af via-blue-500 to #1e3a8a);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🍺';
    position: absolute;
    left: 0;
    top: 20%;
    font-size: 150px;
    opacity: 0.08;
}

.hero::after {
    content: '🥨';
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 150px;
    opacity: 0.08;
}

.hero h2 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #dbeafe;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 15px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(1);
}

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

.btn-primary {
    background: #fcd34d;
    color: #1e40af;
}

.btn-primary:hover {
    background: #fef08a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: white;
    color: #1e40af;
}

.btn-secondary:hover {
    background: #f0f9ff;
}

/* ===== SEARCH SECTION ===== */
.search-section {
    position: relative;
    margin: -40px 20px 0;
    z-index: 20;
}

.search-bar {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 20px;
    display: flex;
    gap: 15px;
    border: 4px solid #dbeafe;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
}

.search-bar button {
    background: linear-gradient(to right, #1e40af, #1e3a8a);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
}

.search-bar button:hover {
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

/* ===== STATS ===== */
.stats {
    padding: 60px 20px;
}

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

.stat-card {
    background: linear-gradient(to bottom right, #dbeafe, #fffbeb);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #dbeafe;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 32px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.stat-desc {
    color: #666;
    font-weight: 600;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: 60px 0;
    background: white;
}

.menu-section h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    text-align: center;
    color: #1e3a8a;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ===== MENU CARD - HÌNH ẢNH ===== */
.menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: #3b82f6;
}

.menu-card-image {
    width: 100%;
    height: 280px;
    background: #e5e7eb;
    overflow: hidden;
    position: relative;
}

.menu-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

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

.menu-card-body {
    padding: 20px;
}

.menu-card-name {
    font-size: 18px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.menu-card-category {
    font-size: 12px;
    background: #dbeafe;
    color: #0c4a6e;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
}

.menu-card-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}

.menu-card-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.star {
    color: #fbbf24;
    font-size: 14px;
    margin-right: 2px;
}

.empty-star {
    color: #d1d5db;
    font-size: 14px;
    margin-right: 2px;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 15px;
}

.menu-card-price {
    font-size: 20px;
    font-weight: 900;
    color: #ef4444;
}

.add-btn {
    background: #3b82f6;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    transition: all 0.3s;
}

.add-btn:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.add-btn:active {
    transform: scale(0.95);
}


/* ===== WHY US SECTION ===== */
.why-us {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
}

.why-us h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    text-align: center;
    color: #1e3a8a;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border-top: 4px solid #3b82f6;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 18px;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 900;
}

.feature-card p {
    font-size: 14px;
    color: #64748b;
}


/* ===== WHY US ===== */
.why-us {
    background: linear-gradient(to right, #dbeafe via-amber-50 to #dbeafe);
    padding: 60px 20px;
}

.why-us h3 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 10px;
}

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

.feature-card {
    text-align: center;
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #dbeafe;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-weight: 600;
    font-size: 14px;
}

/* ===== ABOUT ===== */
.about {
    padding: 60px 20px;
}

.about h3 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.about-emoji img {
    width: 300px;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-emoji img {
        max-width: 100%;
    }
}

.about-text h4 {
    font-size: 32px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-stat {
    background: linear-gradient(to bottom right, #dbeafe, #fffbeb);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #dbeafe;
}

.about-stat .stat-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.about-stat p {
    font-size: 12px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.about-stat strong {
    font-size: 20px;
    color: #1e3a8a;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 60px 20px;
}

.map-section h3 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid #dbeafe;
}

.contact-box {
    background: linear-gradient(to bottom right, #1e40af, #1e3a8a);
    color: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid #bfdbfe;
}

.contact-box h4 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item strong {
    font-size: 12px;
    font-weight: 900;
    color: #fcd34d;
    display: block;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .map-content {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 60px 20px;
}

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

.contact-form {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #dbeafe;
}

.contact-form h3 {
    font-size: 32px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #dbeafe;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e40af;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-box {
    background: linear-gradient(to bottom right, #fcd34d, #fef3c7);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #fde047;
    text-align: center;
}

.promo-box h4 {
    font-size: 22px;
    font-weight: 900;
    color: #92400e;
    margin-bottom: 15px;
}

.promo-box p {
    font-weight: 600;
    color: #92400e;
    margin-bottom: 20px;
}

.promo-code {
    font-size: 36px;
    font-weight: 900;
    color: #92400e;
}

.social-box {
    background: linear-gradient(to bottom right, #dbeafe, #fffbeb);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid #dbeafe;
}

.social-box h4 {
    font-size: 22px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-buttons button {
    background: linear-gradient(to right, #ec4899, #a855f7);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.social-buttons button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(to right, #111827, #1e3a8a);
    color: white;
    padding: 40px 20px 20px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-col p {
    color: #93c5fd;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul button {
    background: none;
    border: none;
    color: #93c5fd;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-col ul button:hover {
    color: #fcd34d;
}

.footer-gdpr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #1e40af;
}

.gdpr-box {
    font-size: 13px;
    color: #93c5fd;
    line-height: 1.8;
}

.gdpr-box p:first-child {
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1e40af;
}

.footer-bottom p {
    color: #93c5fd;
    font-weight: 600;
    margin-bottom: 5px;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 4px solid #bfdbfe;
}

.modal-header {
    background: linear-gradient(to right, #1e40af, #1e3a8a);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1e40af;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 900;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
}

.close-btn:hover {
    background: #1e3a8a;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 30px;
}

.cart-item {
    background: linear-gradient(to right, #eff6ff, #fffbeb);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #dbeafe;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.cart-item-emoji {
    font-size: 50px;
}

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

.cart-item-name {
    font-size: 18px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #666;
    font-weight: 600;
}

.quantity-control {
    display: flex;
    gap: 10px;
    align-items: center;
}

.quantity-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    color: white;
    transition: all 0.3s;
}

.quantity-minus {
    background: #ef4444;
}

.quantity-minus:hover {
    background: #dc2626;
}

.quantity-plus {
    background: #1e40af;
}

.quantity-plus:hover {
    background: #1e3a8a;
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.cart-total {
    background: linear-gradient(to right, #dbeafe, #fef3c7);
    border: 3px solid #bfdbfe;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #bfdbfe;
}

.total-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.total-label {
    font-weight: 900;
    font-size: 18px;
}

.total-value {
    font-weight: 900;
    color: #1e3a8a;
    font-size: 24px;
}

.cart-buttons {
    display: flex;
    gap: 15px;
}

.cart-buttons button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
}

.continue-btn {
    background: #888;
    color: white;
}

.continue-btn:hover {
    background: #666;
}

.checkout-btn {
    background: linear-gradient(to right, #1e40af, #1e3a8a);
    color: white;
}

.checkout-btn:hover {
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-emoji {
    font-size: 80px;
    margin-bottom: 20px;
}

.empty-cart-title {
    font-size: 24px;
    font-weight: 900;
    color: #888;
    margin-bottom: 10px;
}

.empty-cart-text {
    color: #aaa;
    font-weight: 600;
}

/* ===== RESERVATION FORM ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #dbeafe;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: #1e40af;
}

.gdpr-checkbox {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(to right, #eff6ff, #fffbeb);
    border-radius: 10px;
    border: 2px solid #dbeafe;
}

.gdpr-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.gdpr-checkbox label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}

.success-message {
    text-align: center;
    padding: 60px 20px;
}

.success-emoji {
    font-size: 100px;
    animation: bounce 0.6s infinite;
    margin-bottom: 20px;
}

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

.success-title {
    font-size: 32px;
    font-weight: 900;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.success-text {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.success-email {
    color: #1e40af;
    font-weight: 900;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
    }
    .menu-section h3 {
        font-size: 32px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}


/*chỉnh phần image*/
/* ===== FIX STAT CARDS - Icon không đè text ===== */

/* Logo Image - Center */
.flag {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ===== LANGUAGE SWITCHER - COMPACT ===== */

.language-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
    background: #1e40af;
    padding: 6px 10px;
    border-radius: 10px;
}

.lang-btn {
    background: transparent;
    border: 2px solid transparent;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 12px;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 50px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Active Language */
.lang-btn.active {
    background: white;
    color: #1e40af;
    border-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-flag {
    font-size: 14px;
}

.lang-text {
    font-weight: 900;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher {
        gap: 5px;
        padding: 5px 8px;
    }
    
    .lang-btn {
        padding: 5px 8px;
        font-size: 11px;
        min-width: 45px;
    }
    
    .lang-flag {
        font-size: 12px;
    }
}