/* Universal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Define CSS Variables for easy color changes */
:root {
    --primary-color: #e9004b; /* Your new brand color: a vibrant blue */
    --primary-dark: #4338CA;
    --secondary-color: #F9FAFB; /* Light background */
    --text-dark: #111827; /* Dark text for light backgrounds */
    --text-light: #6B7280; /* Lighter text for light backgrounds */
    --white-color: #FFFFFF;
    --border-color: #E5E7EB;
    --success-color: #10B981;
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --cart-icon-size: 24px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

/* --- Header Styles --- */
.main-header {
    width: 100%;
    position: static;
    top: 0;
    left: 0;
    z-index: 1000;
}
@media (min-width: 769px) {
    .main-header {
        position: static !important; 
    }
}

.top-header-banner {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.carousel-container {
    overflow: hidden;
    width: 80%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-text {
    flex: 0 0 100%;
    text-align: center;
    white-space: nowrap;
    padding: 0 10px;
}

.carousel-arrow {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 20px;
    cursor: pointer;
    padding: 0 15px;
    outline: none;
}

.carousel-arrow:hover {
    color: var(--text-light);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
    padding: 10px 40px;
    height: 70px;
    border-bottom: 1px solid var(--border-color);
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.order-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.order-button:hover {
    background-color: var(--primary-dark);
}

/* --- Hero Section Styles --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 10%;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    text-align: left;
    color: var(--white-color);
}

.welcome-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

.restaurant-name {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0;
}

.tagline {
    font-size: 18px;
    margin-bottom: 20px;
}

.order-button-hero {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.order-button-hero:hover {
    background-color: var(--primary-dark);
}

/* --- Sticky Button Styles --- */
.sticky-order-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.sticky-order-button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

/* ------------------------------------------- */
/* --- Responsive Design (Mobile) --- */
/* ------------------------------------------- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links, .order-button {
        display: none;
    }

    .nav-bar {
        padding: 10px 20px;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.active li {
        padding: 10px 0;
    }
    
    .nav-links.active a {
        color: var(--text-dark);
    }

    .carousel-container {
        width: 70%;
    }

    .hero-section {
        text-align: center;
        padding-left: 0;
        padding: 0 20px;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 10px;
    }
    
    .welcome-text {
        font-size: 18px;
    }

    .restaurant-name {
        font-size: 30px !important;
        
    }

    .tagline {
        font-size: 16px;
    }

    .order-button-hero {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .sticky-order-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* --- Business Lunch Section Styles --- */
.business-lunch-section {
    background-color: var(--white-color);
    padding: 80px 40px;
    color: var(--text-dark);
}

.business-lunch-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.business-lunch-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.business-lunch-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 3%;
}

.business-lunch-content {
    flex: 1;
    text-align: left;
}

.business-lunch-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.business-lunch-text {
    font-size: 18px;
    line-height: 1.6;
}

/* --- Responsive styles for this section --- */
@media (max-width: 768px) {
    .business-lunch-section .container {
        flex-direction: column;
        text-align: center;
    }

    .business-lunch-image {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .business-lunch-heading {
        font-size: 32px;
    }

    .business-lunch-text {
        font-size: 16px;
    }
}

/* --- Welcome Section Styles --- */
.welcome-section {
    background-color: var(--secondary-color);
    padding: 100px 40px;
    color: var(--text-dark);
    text-align: center;
}

.welcome-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-heading {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.welcome-text-content {
    font-size: 19px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-section .container::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 60px auto 0;
}

/* --- Responsive styles for Welcome Section --- */
@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 20px;
    }

    .welcome-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .welcome-text-content {
        font-size: 16px;
    }
    
    .welcome-section .container::after {
        margin: 40px auto 0;
    }
}

/* --- About Section Styles --- */
.about-section {
    background-color: var(--white-color);
    padding: 80px 40px;
    color: var(--text-dark);
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.about-content {
    flex: 1;
    text-align: left;
}

.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text {
    font-size: 16px;
    line-height: 1.6;
}

/* --- Responsive styles for About Section --- */
@media (max-width: 768px) {
    .about-section .container {
        flex-direction: column;
        text-align: center;
    }

    .about-heading {
        font-size: 25px;
        margin-top: 30px;
    }
}

/* --- Order Specialties Section Styles --- */
.order-specialties-section {
    background-color: var(--secondary-color);
    padding: 100px 40px;
    color: var(--text-dark);
}

.order-specialties-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.order-content {
    flex: 1;
    text-align: left;
}

.order-heading {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.order-now-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.order-now-button:hover {
    background-color: var(--primary-dark);
}

.order-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.order-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

/* --- Responsive styles for Order Specialties Section --- */
@media (max-width: 768px) {
    .order-specialties-section {
        padding: 60px 20px;
    }

    .order-specialties-section .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .order-heading {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .order-now-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .order-image {
        margin-top: 30px;
    }
}

/* --- Gallery Section Styles --- */
.gallery-section {
    background-color: var(--white-color);
    padding: 80px 40px;
    color: var(--text-dark);
    text-align: center;
}

.gallery-heading {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gallery-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    height: 300px;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* --- Lightbox Styles --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--text-light);
    text-decoration: none;
    cursor: pointer;
}

.prev-btn, .next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: transparent;
    border: none;
    transform: translateY(-50%);
}

.next-btn {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-btn {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* --- Responsive styles for Gallery Section --- */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-heading {
        font-size: 32px;
    }

    .gallery-text {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/* --- Quality Section Styles --- */
.quality-section {
    background-color: var(--white-color);
    padding: 80px 40px;
    color: var(--text-dark);
}

.quality-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.quality-image {
    flex: 1;
}

.quality-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.quality-content {
    flex: 1;
    text-align: left;
}

.quality-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quality-text {
    font-size: 16px;
    line-height: 1.6;
}

/* --- Responsive styles for Quality Section --- */
@media (max-width: 768px) {
    .quality-section .container {
        flex-direction: column;
        text-align: center;
    }

    .quality-image {
        margin-bottom: 30px;
    }

    .quality-heading {
        font-size: 25px;
        margin-top: 0;
    }
    
    .quality-text {
        font-size: 14px;
    }
}

/* --- Testimonials Section Styles --- */
.testimonials-section {
    background-color: var(--secondary-color);
    padding: 80px 40px;
    color: var(--text-dark);
    text-align: center;
}

.testimonials-heading {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

.google-button {
    background-color: #db4437;
    color: var(--white-color);
    padding: 12px 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    transition: background-color 0.3s;
}

.google-button:hover {
    background-color: #c23321;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--white-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
}

.review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.review-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin-bottom: 10px;
}

.reviewer-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-weight: bold;
    border: 3px solid var(--primary-color);
    margin-bottom: 10px;
}

.stars {
    color: gold;
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    height: 65px;
    overflow: hidden;
    margin-bottom: 10px;
}

.read-more {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--primary-color);
}

.reviewer-name {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
}

/* --- Responsive styles for Testimonials --- */
@media (max-width: 768px) {
    .testimonials-heading {
        font-size: 25px;
    }
}


/* --- Eating in Berlin Section Styles --- */
.eating-in-berlin-section {
    background-color: var(--white-color);
    padding: 80px 40px;
    color: var(--text-dark);
}

.eating-in-berlin-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.eating-content {
    flex: 1;
    text-align: left;
}

.eating-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.eating-text {
    font-size: 16px;
    line-height: 1.6;
}

.eating-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.eating-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

/* --- Responsive styles for Eating in Berlin Section --- */
@media (max-width: 768px) {
    .eating-in-berlin-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .eating-image {
        margin-top: 30px;
    }

    .eating-content {
        order: 2;
    }

    .eating-image {
        order: 1;
    }
    
    .eating-heading {
        font-size: 25px;
        margin-top: 0;
    }
    
    .eating-text {
        font-size: 14px;
    }
}

/* --- Social Media Section Styles --- */
.social-media-section {
    background-color: var(--secondary-color);
    padding: 80px 40px;
    color: var(--text-dark);
}

.social-media-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.social-content {
    flex: 1;
    text-align: left;
}

.social-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon-link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-icon-link img:hover {
    transform: scale(1.1);
}

.social-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.social-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Responsive styles for Social Media Section --- */
@media (max-width: 768px) {
    .social-media-section .container {
        flex-direction: column;
        text-align: center;
    }

    .social-image {
        margin-top: 30px;
    }
    
    .social-content {
        order: 2;
    }

    .social-image {
        order: 1;
    }

    .social-heading {
        font-size: 25px;
    }
}

/* --- Location Section Styles --- */
.location-section {
    background-color: var(--white-color);
    padding: 80px 40px;
    color: var(--text-dark);
}

.location-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.location-image {
    flex: 1;
}

.location-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.location-content {
    flex: 1;
    text-align: left;
}

.location-heading {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hours-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.day-time {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-color);
}

.day {
    font-weight: bold;
    font-size: 14px;
}

.time {
    font-size: 14px;
}

.location-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.location-button:hover {
    background-color: var(--primary-dark);
}

/* --- Responsive styles for Location Section --- */
@media (max-width: 768px) {
    .location-section .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .location-image {
        margin-bottom: 30px;
    }

    .location-content {
        order: 2;
    }

    .location-image {
        order: 1;
    }

    .location-heading {
        font-size: 25px;
    }
}

/* --- Footer Styles --- */
.main-footer {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.footer-column {
    flex-basis: 30%;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.scroll-up-button-wrapper {
    position: absolute;
    right: 40px;
    top: 80px;
}

.scroll-up-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    line-height: 1.2;
    transition: background-color 0.3s;
    display: block;
}

.scroll-up-button:hover {
    background-color: var(--primary-dark);
}

.footer-nav {
    border-top: 1px solid var(--border-color);
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav-links a:hover {
    color: var(--primary-color);
}

.powered-by-bar {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
}

.powered-by-bar img {
    height: 15px;
    margin-left: 5px;
    vertical-align: middle;
}

/* --- Responsive styles for Footer --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        text-align: center;
    }

    .footer-column {
        flex-basis: 100%;
        margin-bottom: 20px;
    }

    .footer-column h3, .footer-column p, .footer-link {
        text-align: center;
    }

    .scroll-up-button-wrapper {
        position: static;
        margin-top: 20px;
    }

    .scroll-up-button {
        padding: 15px 20px;
        font-size: 14px;
        margin: 0 auto;
    }

    .footer-nav {
        padding: 20px;
    }

    .footer-nav-links {
        flex-direction: column;
        align-items: center;
    }
}

/* --- About Page Hero Section Styles --- */
.about-hero-section {
    background-color: var(--secondary-color);
    padding: 100px 40px;
    color: var(--text-dark);
    text-align: left;
    min-height: 100vh;
    padding-top: 150px;
}

.about-hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.about-hero-content {
    flex: 1;
}

.about-hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-text {
    font-size: 16px;
    line-height: 1.6;
}

.about-hero-video-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: var(--white-color);
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: var(--primary-dark);
}

.hidden-video {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 5px;
}


@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 20px;
        padding-top: 120px;
    }
    
    .about-hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-hero-heading {
        font-size: 25px;
    }

    .about-hero-text {
        font-size: 14px;
    }

    .about-hero-video-container {
        margin-top: 20px;
    }
}

/* --- FAQ Section Styles --- */
.faq-section {
    background-color: var(--secondary-color);
    padding: 80px 40px;
    color: var(--text-dark);
    text-align: center;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-heading {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 50px;
}

.accordion {
    text-align: left;
}

.accordion-item {
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 10px;
}

.accordion-header {
    background-color: transparent;
    color: var(--text-dark);
    border: none;
    width: 100%;
    padding: 20px 0;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-icon {
    font-size: 24px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px 0 35px;
}

.accordion-content.open {
    max-height: 200px;
    padding: 15px 15px 25px 35px;
}

/* --- Responsive styles for FAQ Section --- */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 25px;
        margin-bottom: 30px;
    }
    
    .accordion-header {
        font-size: 16px;
    }

    .accordion-content {
        padding: 0 10px 0 25px;
    }
    
    .accordion-content.open {
        padding: 10px 10px 20px 25px;
    }
}

/* --- Location Page Hero Section Styles --- */
.location-hero-section {
    background-color: var(--secondary-color);
    padding: 100px 40px;
    color: var(--text-dark);
    text-align: left;
    min-height: 100vh;
    padding-top: 150px;
}

.location-hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
}



.location-card-wrapper {
    display: flex;
    justify-content: flex-start;
}

.location-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 30px;
    max-width: 450px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-group h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-group p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-dark);
}

.select-location-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.select-location-button:hover {
    background-color: var(--primary-dark);
}

/* --- Responsive styles for Location Page Hero Section --- */
@media (max-width: 768px) {
    .location-hero-section {
        padding: 80px 20px;
        padding-top: 120px;
    }


    
    .location-card {
        max-width: 100%;
    }
}

/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white-color);
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    width: 80%;
    max-width: 450px;
    position: relative;
    padding: 30px;
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
}

.modal-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.close-btn {
    color: var(--text-dark);
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--text-light);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.day-time {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.day {
    font-weight: bold;
    font-size: 16px;
}

.time {
    font-size: 16px;
}

/* --- Responsive Modal Styles --- */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
    }
    .modal-heading {
        font-size: 24px;
    }
    .day, .time {
        font-size: 14px;
    }
}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    cursor: pointer;
}

/* --- Single Location Page Styles --- */
.single-location-section {
    background-color: var(--secondary-color);
    padding: 100px 40px;
    color: var(--text-dark);
    min-height: 100vh;
    padding-top: 150px;
}

.single-location-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.location-details-content {
    flex: 1;
    text-align: left;
}


.location-info-group {
    margin-bottom: 30px;
}

.location-info-group p {
    font-size: 16px;
    line-height: 1.6;
}

.hours-group {
    margin-bottom: 30px;
}

.day-time {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.day {
    font-weight: bold;
}

.order-online-button {
    background-color: var(--white-color);
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

.order-online-button:hover {
    background-color: var(--text-dark);
    color: var(--white-color);
}

.location-map {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.map-placeholder {
    width: 100%;
    height: 650px;
    background-color: var(--border-color);
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.get-directions-button {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.get-directions-button:hover {
    background-color: var(--primary-dark);
}

/* --- Responsive styles for Single Location Page --- */
@media (max-width: 768px) {
    .single-location-section {
        padding: 80px 20px;
        padding-top: 120px;
    }

    .single-location-section .container {
        flex-direction: column;
        gap: 30px;
    }

    .location-details-content {
        text-align: center;
    }


    .location-map {
        text-align: center;
        align-items: center;
    }

    .map-info-card {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .get-directions-button {
        position: static;
        transform: none;
        margin-top: 20px;
    }
}
/* --- Menu Page Specific Styles --- */
.menu-hero-section {
    background-color: var(--secondary-color);
    padding: 60px 40px;
    color: var(--text-dark);
    text-align: center;
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.menu-hero-section .container {
    max-width: 900px;
}

.tabs-container.sticky {
    position: fixed;
    top: 0;
    left: 0;  /* এই লাইনটি যুক্ত করুন */
    right: 0; /* এই লাইনটি যুক্ত করুন */
    background-color: var(--white-color);
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0; /* আগের মার্জিন ওভাররাইড করতে */
}
/* যখন tabs-container স্টিকি হবে, তখন menu-items-section-এ একটি প্যাডিং যুক্ত হবে */
.menu-items-section.sticky-padding {
    padding-top: 100px; /* tabs-container এর উচ্চতা অনুযায়ী মান ঠিক করুন */
}
.page-heading {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-subheading {
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
}

/* --- Menu Items Section --- */
.menu-items-section {
    background-color: var(--white-color);
    padding: 80px 40px;
    color: var(--text-dark);
}

.menu-items-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Tab Navigation Styles */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.tab-btn {
    background-color: transparent;
    border: none;
    color: var(--text-dark);
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    border-radius: 5px 5px 0 0;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Tab Content Styles */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Menu Grid Styles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- New Menu Item Style (Horizontal Layout) --- */
.menu-item {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 8px;
    overflow: visible; /* Changed from hidden to visible */
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    text-align: left;
    height: auto; /* Changed from fixed 120px to auto */
    min-height: 130px; /* Set a minimum height to keep alignment */
    padding: 15px;
}

.item-image-container {
    height: 120px; /* Increased from 100px */
    width: 120px;  /* Increased from 100px */
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.item-image-container {
    height: 140px; /* Increased from 120px */
    width: 120px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}
.item-details-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-self: stretch;
    padding-left: 15px; /* This line adds space */
}

.item-name {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.item-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    flex-grow: 1; /* Pushes the footer down */
}

.item-footer {
    display: flex;
    justify-content: space-between; /* এই লাইনটি মূল্য এবং বাটনকে দুই প্রান্তে ঠেলে দেবে */
    align-items: center;
    margin-top: auto; /* ফুটারকে নিচে রাখতে সাহায্য করে */
}

.item-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.item-options-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 0;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 10px;
    width: auto;
    text-align: center;
}

.item-options-btn:hover {
    background-color: var(--primary-dark);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-hero-section {
        padding-top: 120px;
    }

    .page-heading {
        font-size: 40px;
    }
    
    .page-subheading {
        font-size: 16px;
    }
    
    .menu-items-section {
        padding: 50px 20px;
    }
    
    .tabs-container {
        margin-bottom: 30px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item {
        height: auto;
        flex-direction: column;
        text-align: center;
    }

    .item-image-container {
        width: 100%;
        height: 150px;
        border-radius: 8px 8px 0 0;
    }

    .item-details-body {
        padding: 15px;
        align-items: center;
    }
}

/* --- Shopping Cart Modal Styles --- */
.shopping-cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background-color: var(--white-color);
    color: var(--text-dark);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.shopping-cart-modal.active {
    transform: translateX(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-title h4 {
    font-size: 20px;
    margin: 0;
}

.cart-icon {
    position: relative;
}

.cart-icon .item-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
}

.close-modal {
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.item-info {
    flex-grow: 1;
}

.item-info h5 {
    margin: 0;
    font-size: 16px;
}

.item-info .item-price {
    font-size: 14px;
    color: var(--primary-color);
    margin-top: 5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.quantity-controls button {
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 5px 8px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.remove-btn {
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--secondary-color);
}

.coupon-section {
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
}

.coupon-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.cart-totals {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cart-totals .subtotal, .cart-totals .total {
    display: flex;
    justify-content: space-between;
}

.total {
    font-size: 18px;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.cart-actions button {
    flex-grow: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.view-cart-btn {
    background-color: var(--border-color);
    color: var(--text-dark);
}

.checkout-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* --- Checkout Page Styles --- */

/* --- Checkout Page Hero Section Styles --- */
.checkout-hero-section {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    max-width: 1200px;
    margin: 20px auto 30px;
    box-shadow: var(--shadow-md);
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.hero-left-content {
    flex: 1;
}

.hero-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.hero-address {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.hero-status, .hero-hours {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
}

.ready-time {
    color: var(--text-dark);
    font-weight: bold;
}

.change-time, .see-hours {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

a#change-time-btn, a#see-hours-btn {
    color: var(--primary-color);
    text-decoration: none;
}

.hero-right-content {
    flex-shrink: 0;
}

.hero-menu-logo {
    max-width: 500px;
    height: auto;
    border-radius: 5px;
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-menu-logo {
    max-width: 300px;
    height: auto;
    border-radius: 5px;
    }


    .hero-right-content {
        margin-top: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-address, .hero-status, .hero-hours {
        font-size: 14px;
        justify-content: center;
    }

    .checkout-page-content {
        padding-top: 120px;
    }
}

/* --- Checkout Page Styles --- */
.checkout-page-content {
    background-color: var(--secondary-color);
    padding: 100px 40px 50px;
    color: var(--text-dark);
    min-height: 100vh;
}

.checkout-page-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-grid {
    display: flex;
    gap: 50px;
}

.checkout-form-column, .order-summary-column {
    flex: 1;
}

.checkout-section {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.checkout-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input[type="text"], 
.form-group input[type="email"], 
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    color: var(--text-dark);
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
}

/* Button Toggle Styles */
.checkout-buttons-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.toggle-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toggle-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.toggle-btn:not(.active):hover {
    background-color: var(--border-color);
}

.delivery-phone {
    text-align: center;
}

.delivery-phone .phone-number {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
}

.delivery-phone .phone-number a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Order Summary Column */
.order-summary-box {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 150px;
}

.order-summary-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.summary-items {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
}

.summary-details {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.subtotal, .delivery-fee {
    font-size: 16px;
    color: var(--text-light);
}

.total {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
}

.place-order-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.place-order-btn:hover {
    background-color: var(--primary-dark);
}

.order-summary-mobile {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .checkout-grid {
        flex-direction: column;
    }

    .order-summary-column {
        order: 1;
    }

    .order-summary-box {
        position: static;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 24px;
    }
    .hero-address, .hero-status, .hero-hours {
        font-size: 14px;
    }
    
    .checkout-section h2 {
        font-size: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input[type="text"], 
    .form-group input[type="email"], 
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }

    .toggle-btn {
        font-size: 14px;
        padding: 12px;
    }

    .order-summary-box h2 {
        font-size: 20px;
    }
    
    .summary-item, .subtotal, .delivery-fee {
        font-size: 14px;
    }
    
    .total {
        font-size: 18px;
    }

    .place-order-btn {
        font-size: 16px;
        padding: 12px;
    }
}

/* --- Time Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white-color);
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    width: 80%;
    max-width: 500px;
    position: relative;
    padding: 30px;
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
    text-align: center;
}

.modal-heading {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.close-btn {
    color: var(--text-dark);
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--text-light);
}

.time-slots-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.time-slot {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    line-height: 1.4;
}

.time-slot.active, .time-slot:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.confirm-time-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.confirm-time-btn:hover {
    background-color: var(--primary-dark);
}

.item-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
}
/* --- Pagination Styles --- */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 8px;
}
.pagination a {
    color: var(--text-dark);
    padding: 10px 18px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}
.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}


/* --- Responsive adjustments for Menu Page --- */
@media (max-width: 768px) {
    .menu-hero-section {
        padding-top: 120px;
        min-height: 30vh;
    }

    .page-heading {
        font-size: 40px;
    }
    
    .page-subheading {
        font-size: 16px;
    }
    
    .menu-items-section {
        padding: 50px 20px;
    }
    
    .tabs-container {
        gap: 5px;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 0;
    }

    .item-image-container {
        width: 100%;
        height: 200px; /* Increased height for better view on mobile */
        border-radius: 8px 8px 0 0;
    }
    
    .item-image-container img {
        border-radius: 8px 8px 0 0;
    }

    .item-details-body {
        padding: 20px;
        align-items: center; /* Center align the content */
    }

    .item-name {
        font-size: 20px;
    }

    .item-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .item-footer {
       align-items: center; /* Center align price and button */
    }

    .pagination a {
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* For even smaller screens */
@media (max-width: 480px) {
    .tabs-container {
        justify-content: flex-start;
        overflow-x: auto; /* Allow horizontal scrolling for tabs */
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
}

/* --- Responsive adjustments for Menu Page --- */
@media (max-width: 768px) {
    .menu-hero-section {
        padding-top: 120px;
        min-height: 30vh;
    }

    .page-heading {
        font-size: 40px;
    }
    
    .page-subheading {
        font-size: 16px;
    }
    
    .menu-items-section {
        padding: 50px 20px;
    }
    
    .tabs-container {
        gap: 5px;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Updated Menu Item Styles for Mobile */
    .menu-item {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 0; /* Remove padding from the container */
    }

    .item-image-container {
        width: 100%;
        height: 200px; /* Increased height for better view on mobile */
        border-radius: 8px 8px 0 0;
    }
    
    .item-image-container img {
        border-radius: 8px 8px 0 0; /* Ensure image corners match the container */
    }

    .item-details-body {
        padding: 20px;
        align-items: center; /* Center align the content */
    }

    .item-name {
        font-size: 20px;
    }

    .item-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .item-footer {
       align-items: center; /* Center align price and button */
    }

    .pagination a {
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* For even smaller screens */
@media (max-width: 480px) {
    .tabs-container {
        justify-content: flex-start;
        overflow-x: auto; /* Allow horizontal scrolling for tabs */
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
}

/* --- Shopping Cart Modal Styles --- */
.shopping-cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px; /* Default width for larger screens */
    max-width: 90%; /* Ensure it doesn't exceed 90% of screen width */
    height: 100%;
    background-color: var(--white-color);
    color: var(--text-dark);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.shopping-cart-modal.active {
    transform: translateX(0);
}

/* Style for body when cart is open */
body.cart-open {
    overflow: hidden; /* Prevent background scroll when cart is open */
}

/* --- Responsive adjustments for Menu Page --- */
@media (max-width: 768px) {
    .menu-hero-section {
        padding-top: 120px;
        min-height: 30vh;
    }

    .page-heading {
        font-size: 40px;
    }

    .page-subheading {
        font-size: 16px;
    }

    .menu-items-section {
        padding: 50px 20px;
    }

    .tabs-container {
        gap: 5px;
        margin-bottom: 30px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 0;
    }

    .item-image-container {
        width: 100%;
        height: 200px;
        border-radius: 8px 8px 0 0;
    }

    .item-image-container img {
        border-radius: 8px 8px 0 0;
    }

    .item-details-body {
        padding: 20px;
        align-items: center;
    }

    .item-name {
        font-size: 20px;
    }

    .item-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .item-footer {
       align-items: center;
    }

    .pagination a {
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* For even smaller screens */
@media (max-width: 480px) {
    .tabs-container {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
}

/* --- Pagination Styles --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically align items */
    margin-top: 40px;
    gap: 8px;
}
.pagination a, .pagination span {
    color: var(--text-dark);
    padding: 10px 18px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}
.pagination a.active,
.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}
.pagination span {
    border: none; /* Remove border from ellipsis */
    padding: 10px 5px; /* Adjust padding for ellipsis */
}

/* Responsive styles for pagination */
@media (max-width: 768px) {
    .pagination a, .pagination span {
        padding: 8px 14px;
        font-size: 14px;
    }
    .pagination span {
        padding: 8px 3px;
    }
}
/* --- Responsive adjustments for Menu Page --- */
@media (max-width: 768px) {
    .menu-hero-section {
        padding-top: 120px;
        min-height: 30vh;
    }

    .page-heading {
        font-size: 40px;
    }
    
    .page-subheading {
        font-size: 16px;
    }
    
    .menu-items-section {
        padding: 50px 20px;
    }
    
    .tabs-container {
        gap: 5px;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .menu-grid {
        grid-template-columns: 1fr; /* Ensures one item per row */
        gap: 20px;
    }

    /* --- Notun Menu Item Style (Mobile-er Jonno) --- */
    .menu-item {
        display: flex;
        flex-direction: column; /* Stacks image on top of details */
        text-align: center;
        height: auto;
        padding: 0;
        background-color: var(--secondary-color);
        border-radius: 8px;
        overflow: hidden; /* Ensures image corners are rounded */
        box-shadow: var(--shadow-md);
    }

    .item-image-container {
        width: 100%;
        height: 180px; /* Chobir height komano hoyeche */
        flex-shrink: 0;
    }

    .item-image-container img {
       width: 100%;
       height: 100%;
       object-fit: cover; /* Ensures the image covers the container */
    }

    .item-details-body {
        padding: 15px; /* Adds space around the text */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center aligns the content */
        flex-grow: 1;
    }

    .item-name {
        font-size: 18px; /* Font size komano hoyeche */
    }

    .item-description {
        font-size: 13px; /* Font size komano hoyeche */
        margin-bottom: 15px;
        flex-grow: 1; /* Pushes the footer down */
    }

    .item-footer {
       width: 100%;
       display: flex;
       justify-content: space-between; /* Puts price and button on opposite ends */
       align-items: center;
       margin-top: auto; /* Pushes footer to the bottom of the card */
    }

    .item-price {
        font-size: 18px; /* Font size komano hoyeche */
    }

    .item-options-btn {
        padding: 6px 12px; /* Button size komano hoyeche */
        font-size: 12px;
    }

    .pagination a, .pagination span {
        padding: 8px 14px;
        font-size: 14px;
    }
    .pagination span {
        padding: 8px 3px;
    }
}

/* For even smaller screens */
@media (max-width: 480px) {
    .tabs-container {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .item-image-container {
        height: 160px; /* Aro choto screen-e chobir height aro komano hoyeche */
    }

    .item-name {
        font-size: 16px;
    }

     .item-footer {
       flex-direction: column; /* Stacks price on top of button */
       gap: 10px;
    }
}

/* Header Social Icons */
.header-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-social-icons a img {
    height: 24px; /* প্রয়োজন অনুযায়ী সাইজ পরিবর্তন করতে পারেন */
    transition: transform 0.3s;
}

.header-social-icons a img:hover {
    transform: scale(1.1);
}
/* Header Social Icons */
.header-social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-social-icons a img {
    height: 24px; /* প্রয়োজন অনুযায়ী সাইজ পরিবর্তন করতে পারেন */
    transition: transform 0.3s;
}

.header-social-icons a img:hover {
    transform: scale(1.1);
}



/* --- Language Dropdown Styles --- */
.language-dropdown {
    position: relative;
    display: inline-block;
    margin: 0 15px; /* Adds space around it */
}

.language-dropbtn {
    background-color: transparent;
    color: var(--text-dark);
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-dropbtn:hover, .language-dropbtn:focus {
    background-color: #f9f9f9;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    right: 0; /* Aligns dropdown to the right */
}

.language-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.language-dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Class to show the dropdown using JavaScript */
.language-dropdown-content.show {
    display: block;
}
/* --- Final Language Dropdown Button Style --- */

.language-dropbtn {
    background-color: var(--primary-color); /* Brand color background */
    color: var(--white-color); /* White text */
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold; /* Bold text like the button */
    border: none; /* No border */
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.language-dropbtn:hover, .language-dropbtn:focus {
    background-color: var(--primary-dark); /* Darker hover effect */
}
/* --- Header Right Side Grouping --- */
.header-right-group {
    display: flex;
    align-items: center;
    gap: 25px; /* আপনি এই মান পরিবর্তন করে আইকন এবং ড্রপডাউনের মধ্যেকার দূরত্ব কমাতে বা বাড়াতে পারেন */
}

/* --- Mobile Sidebar Styles --- */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: var(--white-color);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-logo {
    height: 40px;
}

.close-sidebar-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-dark);
}

.sidebar-nav-links {
    list-style: none;
    padding: 20px;
    flex-grow: 1; /* Pushes footer to the bottom */
}

.sidebar-nav-links li a {
    display: block;
    padding: 15px 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.sidebar-nav-links li a:hover {
    background-color: var(--secondary-color);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.sidebar-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sidebar-social-icons img {
    height: 28px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Responsive Header Adjustments --- */
@media (max-width: 768px) {
    .nav-bar {
        justify-content: space-between;
    }
    .desktop-only {
        display: none; /* Hide desktop menu and social icons */
    }
    .menu-toggle {
        display: block; /* Show hamburger icon */
    }
    .language-dropdown {
        order: 1; /* Middle element */
    }
    .logo {
        order: 0; /* First element */
    }
    .menu-toggle {
        order: 2; /* Last element */
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none; /* Hide hamburger icon on desktop */
    }
}

/* --- Gallery Page Styles --- */

.gallery-page-section {
    padding: 80px 40px;
    background-color: var(--white-color);
}

.gallery-page-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Filter Buttons Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* Image Grid Styles */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-page-grid .gallery-item {
    overflow: hidden;
    height: 250px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-page-grid .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-page-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive styles for gallery */
@media (max-width: 768px) {
    .gallery-page-section {
        padding: 50px 20px;
    }
    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    .gallery-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}
/* --- Gallery Page Styles --- */

.gallery-page-section {
    padding: 80px 40px;
    background-color: var(--white-color);
}

.gallery-page-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Filter Buttons Styles (Oporibortito) */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
}

.filter-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* === Image Grid Styles (Poribortito) === */
.gallery-page-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default for mobile */
    gap: 20px;
}

/* For tablets - 2 columns */
@media (min-width: 576px) {
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For desktops - 4 columns */
@media (min-width: 992px) {
    .gallery-page-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

.gallery-page-grid .gallery-item {
    overflow: hidden;
    height: 250px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-page-grid .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-page-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Lightbox Close Icon Style (Notun) === */
.lightbox .close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox .close-btn:hover {
    color: #bbb;
}

/* --- Testimonials Carousel Styles --- */
.testimonials-slider {
    width: 100%;
    padding-bottom: 50px; /* Space for pagination dots */
}

.testimonials-slider .swiper-slide {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.testimonials-slider .review-card {
    width: 100%;
    height: 100%; /* Ensure all cards have same height in a row */
    margin: 0;
    display: flex;
    flex-direction: column;
}

.review-text {
    flex-grow: 1; /* Pushes the name to the bottom */
}

/* Pagination Dots Styling */
.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* --- Menu Page Responsive Fixes --- */

/* 1. Mobile screen-e hero section-er height komanor jonno */
@media (max-width: 768px) {
    .menu-hero-section {
        min-height: auto; /* Minimum height remove kora holo */
        padding-top: 120px;
        padding-bottom: 50px;
    }
}

/* 2. Tab text-er niche theke underline remove korar jonno */
.tabs-container .tab-btn {
    text-decoration: none; /* Underline remove kora holo */
}

/* --- Reservation Section Styles --- */
.reservation-section {
    padding: 80px 40px;
    background-color: var(--white-color);
}

.reservation-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.reservation-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.reservation-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-light);
}

.reservation-form .form-group {
    margin-bottom: 20px;
}

.reservation-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.reservation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.reservation-form .reserve-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.reservation-form .reserve-btn:hover {
    background-color: var(--primary-dark);
}

.reservation-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 8px;
    border: 0;
}

#reservation-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}
#reservation-message.success {
    background-color: #e5fcf4;
    color: #50e3c2;
    border: 1px solid #50e3c2;
}
#reservation-message.error {
    background-color: #fdeeee;
    color: #d0021b;
    border: 1px solid #d0021b;
}


/* Responsive */
@media (max-width: 992px) {
    .reservation-section .container {
        grid-template-columns: 1fr;
    }
    .reservation-map {
        margin-top: 40px;
    }
}

/* --- Reservation Success Modal Styles --- */
.success-icon {
    font-size: 60px;
    color: var(--success-color);
    margin-bottom: 15px;
}

html {
    scroll-behavior: smooth;
}

/* Cart Icon Styles */
.cart-icon-container {
    position: relative;
    cursor: pointer;
}

.cart-icon-container .fas {
    font-size: var(--cart-icon-size);
    color: var(--text-dark);
}

.cart-item-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

/* Shopping Cart Modal Styles */
.shopping-cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1001;
}

.shopping-cart-modal.active {
    right: 0;
}