/* MARK GIDA - CSS Stylesheet - Optimized for Performance */

/* Critical CSS - Above the fold styles */
:root {
    --primary-orange: #FF8C00;
    --dark-navy: #0A1F44;
    --cream-bg: #F5F5DC;
    --dark-green: #2C5F4F;
    --white: #FFFFFF;
    --light-gray: #F8F8F8;
    --text-dark: #333333;
    --text-gray: #666666;
    --border-color: #E0E0E0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Performance optimizations */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Optimize animations for performance */
* {
    will-change: auto;
}

.product-card,
.news-card,
.btn {
    will-change: transform;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container-fluid {
    width: 100%;
    padding: 0;
}

/* HEADER */
.header {
    margin: 0;
    margin-top: -1px;
    background-color: var(--cream-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header + * {
    margin-top: 0 !important;
}

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

.logo-text {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-navy);
    letter-spacing: 2px;
}

.logo p {
    font-size: 11px;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-navy);
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-navy);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF6B00 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--dark-navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-navy);
    border: 2px solid var(--dark-navy);
}

.btn-secondary:hover {
    background-color: var(--dark-navy);
    color: var(--white);
}

.btn-cta {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 16px 48px;
    font-size: 18px;
}

.btn-cta:hover {
    background-color: #1e4436;
    transform: translateY(-2px);
}

.btn-link {
    background: none;
    color: var(--primary-orange);
    padding: 0;
    font-weight: 600;
}

/* SECTIONS */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-navy);
}

.about-section {
    background-color: var(--cream-bg);
    padding: 80px 0;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Force 4 columns on desktop */
@media (min-width: 993px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px;
    }
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.contact-cta {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1e4436 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0d2a5a 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
}

/* CONTACT */
.contact-page {
    padding: 80px 0;
}

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

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.contact-info-section p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-navy);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

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

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    margin-top: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-content {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 400px;
}

.fallback-content h3 {
    color: var(--dark-navy);
    margin-bottom: 20px;
    font-size: 24px;
}

.fallback-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo h3 {
    font-size: 32px;
    font-weight: 800;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background-color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Footer Contact Info Styling */
.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer .contact-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer .contact-icon i {
    color: var(--white);
    font-size: 18px;
}

.footer .contact-text {
    flex: 1;
}

.footer .contact-text h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
}

.footer .contact-text p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.footer-col h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* WHATSAPP */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    z-index: 999;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
}

/* BLOG & NEWS */
.blog-page, .news-section {
    padding: 80px 0;
}

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

.blog-card, .news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover, .news-card:hover {
    transform: translateY(-10px);
}

.blog-image, .news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
}

.blog-image img, .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content, .news-content {
    padding: 25px;
}

.blog-meta, .news-date {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3, .news-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--dark-navy);
}

.blog-content h3 a:hover {
    color: var(--primary-orange);
}

.blog-content p, .news-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* BLOG DETAIL */
.blog-detail, .product-single {
    padding: 80px 0;
}

.blog-detail-content, .product-single-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-image, .product-single-image {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-detail-text, .product-single-description {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.blog-detail-text p {
    margin-bottom: 20px;
}

.blog-detail-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* PRODUCT PAGES */
.products-page {
    padding: 80px 0;
}

.product-detail-section {
    margin-bottom: 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-detail-grid.reverse {
    direction: rtl;
}

.product-detail-grid.reverse > * {
    direction: ltr;
}

.product-detail-content h2, .product-single-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.related-products, .related-posts {
    padding: 80px 0;
    background: var(--light-gray);
}

.related-products h2, .related-posts h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 40px;
    text-align: center;
}

/* ABOUT PAGE */
.about-page {
    padding: 80px 0;
}

.about-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 30px;
}

.content-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 20px;
}

.stats-section {
    background: var(--cream-bg);
    padding: 80px 0;
}

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

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-navy);
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    text-align: center;
    padding: 30px;
}

.value-icon {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-gray);
}

.products-list-section {
    background: var(--cream-bg);
    padding: 80px 0;
}

.products-list-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.products-list-image {
    flex: 1;
}

.products-list-text {
    flex: 1;
}

.products-list-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 30px;
}

.products-list li {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.breadcrumb {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

.no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
}

.text-center {
    text-align: center;
}

/* RESPONSIVE - Mobile First Approach */
/* Base styles are mobile-first */

/* Tablet and up */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

/* Desktop and up */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .product-detail-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--cream-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Sample Request Button Styling */
.btn-sample {
    background: var(--primary-orange) !important;
    color: var(--white) !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border: 2px solid var(--primary-orange) !important;
}

.btn-sample:hover {
    background: transparent !important;
    color: var(--primary-orange) !important;
    transform: translateY(-2px);
}

/* Sample Request Page Styling */
.sample-request-page {
    padding: 80px 0;
    background: var(--light-gray);
}

.sample-request-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sample-info-section h2 {
    color: var(--dark-navy);
    margin-bottom: 30px;
    font-size: 28px;
}

.sample-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--white);
    font-size: 20px;
}

.benefit-content h3 {
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 18px;
}

.benefit-content p {
    color: var(--text-gray);
    font-size: 14px;
}

.sample-products {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sample-products h3 {
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-size: 20px;
}

.sample-products ul {
    list-style: none;
}

.sample-products li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.sample-products li:last-child {
    border-bottom: none;
}

.sample-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sample-form-section h2 {
    color: var(--dark-navy);
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

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

.sample-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-navy);
    font-weight: 500;
}

.sample-form input,
.sample-form select,
.sample-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.sample-form input:focus,
.sample-form select:focus,
.sample-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.sample-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    margin-top: 20px;
    text-align: center;
}

.form-note small {
    color: var(--text-gray);
    font-style: italic;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Sample Request */
@media (max-width: 768px) {
    .sample-request-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sample-form-section {
        padding: 25px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-flag {
    font-size: 24px;
    padding: 4px 6px;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 6px;
    opacity: 0.6;
    font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Apple Color Emoji", "Android Emoji", sans-serif;
    line-height: 1;
}

.lang-flag:hover {
    transform: scale(1.2);
    opacity: 1;
}

.lang-flag.lang-active {
    opacity: 1;
    background: var(--primary-orange);
    transform: scale(1.1);
}

/* Mobile responsive for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        border-top: 1px solid var(--border-color);
        margin-top: 10px;
        gap: 10px;
    }
    
    .lang-flag {
        font-size: 28px;
    }
}
