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

html {
    scroll-behavior: smooth;
}

body {
    top: 0 !important; /* Reset when no banner */
    transition: margin-top 0.3s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

html[dir="rtl"] .nav-actions {
    flex-direction: row-reverse; /* keep order now button on left */
    justify-content: flex-start; /* align left side */
    gap: 10px; /* spacing between buttons */
}

/* Language buttons group stays next to Order Now */
html[dir="rtl"] .lang-switch {
    order: 0; /* ensure they appear after order now button */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 20px; /* Increased space between logo and heading */
    margin-left: -10px; /* Push logo slightly more left */
}

.nav-logo img.logo-img {
    height: 70px;/* Adjust as needed */
    width: 70px;
    width: auto;
}

.brand-text h2 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text span {
    font-size: 0.9rem;
    color: #ccc;
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d32f2f;
    margin: 0;
}

.nav-logo span {
    font-size: 0.8rem;
    color: #666;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #d32f2f;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d32f2f;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.order-btn {
    background: #d32f2f;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.order-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Language buttons container */
.lang-switch {
    display: inline-flex;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #d32f2f;
    margin-right: 10px; /* space from Order Now button */
}

/* Individual buttons */
.lang-btn {
    background: white;
    color: #d32f2f;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #d32f2f;
    color: white;
}

.lang-btn.active {
    background: #d32f2f;
    color: white;
}

.lang-btn.active:hover{
    background: #9b2525;
}

/* Make them look like one button */
.lang-btn:first-child {
    border-right: 1px solid #d32f2f;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
    position: relative;
    overflow: hidden;
    gap: 2rem;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23d32f2f" opacity="0.1"/><circle cx="80" cy="50" r="1" fill="%23ff5722" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23d32f2f" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
    margin-left: 2%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: #d32f2f;
    color: white;
}

.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

.btn-secondary:hover {
    background: #d32f2f;
    color: white;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.feature i {
    color: #d32f2f;
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically if needed */ 
    margin: 0 auto;          /* center in hero */
}

.hero-image img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: #fafafa;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
    transform: translateY(-2px);
}

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

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.menu-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(211, 47, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-overlay {
    opacity: 1;
}

.add-to-cart {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #d32f2f;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.menu-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d32f2f;
}

.order-btn-small {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.order-btn-small:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery {
    width: 100%;
    background-color: #f5f5f5;
    padding: 50px 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 800;
    color: #333;
    position: relative;
}

.gallery-content {
    max-width: 1200px;
    margin: auto;
}

.gallery-heading {
    text-align: center;
    font-size: 1.9rem;
    margin: 50px 0 30px;
    font-weight: 800;
    color: #222;
}

.gallery-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    flex: 1 1 calc(50% - 30px);
    max-width: 550px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item p {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    color: #d32f2f;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #d32f2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-icon i {
  color: white !important;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin: 0.2rem 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
}

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

/* Location Section */
.location {
    padding: 80px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-item i {
    color: #d32f2f;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.location-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.delivery-zones {
    display: grid;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: 5%;
    padding: 20px;
}

.delivery-zones h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.delivery-zones p {
    font-size: 1rem;
    font-weight: bold;
    color: #555;
    max-width: 700px;
    margin: 0.5rem auto;
    line-height: 1.6;
}

.delivery-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin: 20px auto;
    transition: 0.2s ease-in-out;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    cursor: pointer;
}

.delivery-img:hover{
    transform: scale(1.04);
}

.delivery-tagline {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 500;
    color: #444;
    margin-top: 10px;
}

.zones {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.zone {
    background: #d32f2f;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.map-container {
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: #d32f2f;
}

.footer-logo p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d32f2f;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d32f2f;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #d32f2f;
    width: 20px;
}

.hours p {
    margin-bottom: 0.3rem;
}

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

/* Responsive Design */
@media (min-width: 769px) {
    .hero {
        margin-top: 40px; /* match desktop header height */
        display: flex;
        justify-content: space-around;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        display: flex;
        align-items: center;
    }

    /* Group Order button & hamburger */
    .nav-actions, 
    .hamburger {
        display: flex;
        align-items: center;
    }

    /* Push the group to the right */
    .nav-actions {
        margin-left: auto;
        margin-right: 10px; /* small gap before hamburger */
    }

    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        text-align: center;
    }
    
    .about-content,
    .contact-grid,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .order-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 25px;
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    html[dir="rtl"] .nav-actions {
        flex-direction: column; /* buttons on top of order button */
        align-items: center;
    }

    html[dir="rtl"] .lang-switch {
        order: -1; /* buttons above order button */
        margin-right: 0;
    }

    .lang-switch {
        order: -1; /* place above Order Now button */
        margin-right: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
        margin-top: 100px;
    }

    .hero-image {
        flex: none !important;
        width: 100vw !important;  /* Take full viewport width */
        max-width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-image img {
        width: 100vw !important;  /* Force edge-to-edge */
        height: 320px !important; /* Bigger mobile image */
        object-fit: cover !important;
        display: block !important;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }

    .hero-image img {
        height: 260px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .menu-item {
        margin: 0 10px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 80px;
        right: 0;
        width: 220px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 20px;
        justify-content: space-between;
    }

    .hamburger {
        display: flex; /* Show hamburger in mobile */
        margin-left: auto; /* Push it to the far right */
    }

    .nav-menu {
        display: none; /* Hide normal menu in mobile */
    }

    .nav-logo {
        flex: 1 1 100%;
        justify-content: center;
        margin: 0 0 10px 0;
    }

    .nav-logo img.logo-img {
        height: 60px;
        width: 60px;
        border-radius: 50%;
    }

    .brand-text h2 {
        font-size: 1.3rem;
    }

    .brand-text span {
        font-size: 0.8rem;
    }

    /* Hero section stacks */
    .hero {
        flex-direction: column;
        padding: 120px 20px 50px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-image img {
        max-width: 95%;
    }

    .gallery-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-image img {
        max-width: 95%;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-menu {
        width: 100%;
        right: 0;
        border-radius: 0;
    }
}

/* Arabic page - 1024px layout fix */
@media (min-width: 992px) and (max-width: 1200px) {
    html[dir="rtl"] .nav-actions {
        flex-direction: row;           /* keep horizontal */
        justify-content: flex-start;   /* align left side (near hamburger) */
        margin-left: 0 !important;     /* override previous auto margin */
        margin-right: auto !important; /* push container to left in RTL */
        gap: 10px;
    }

    html[dir="rtl"] .order-btn {
        order: 0; /* first in row (left) */
    }

    html[dir="rtl"] .lang-switch {
        order: 1; /* language buttons after Order Now */
    }
}




/* Hidden class for menu filtering */
.menu-item.hidden {
    display: none;
}

/* Smooth transitions */
.menu-item {
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-item.fade-out {
    opacity: 0;
    transform: scale(0.8);
}