/* Variables */
:root {
    --primary-color: #FF6B00;
    --secondary-color: #f5f5f5;
    --text-color: #ffffff;
    --bg-color: #1a1a1a;
    --bg-pattern: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.4'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes titleGlow {
    0%, 100% {
        color: var(--primary-color);
        text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    }
    50% {
        color: var(--primary-color);
        text-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
    }
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    background-image: var(--bg-pattern);
    color: var(--text-color);
}

/* Desktop Styles */

/* Navbar */
.main-header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(31, 31, 31, 0.9);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.main-header-area.sticky {
    background-color: rgba(31, 31, 31, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo img {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

.main-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-menu ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-family: 'Bowlby One SC', sans-serif;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-menu ul li a:hover {
    color: var(--primary-color);
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.main-menu ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-right: 40px;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-images {
    flex: 1;
    position: relative;
    height: 400px;
}

.about-img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-img-1 {
    width: 80%;
    height: 300px;
    object-fit: cover;
}

.about-img-2 {
    position: absolute;
    width: 60%;
    height: 200px;
    object-fit: cover;
    bottom: 0;
    right: 0;
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about-content h2 {
    font-family: 'Bowlby One SC', cursive;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    animation: titleGlow 3s ease-in-out infinite;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Menu Section */
.menu_section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color), rgba(255, 107, 0, 0.05));
    position: relative;
    overflow: hidden;
}

.menu_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section_title {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

.section_title h2 {
    font-family: 'Bowlby One SC', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: titleGlow 3s ease-in-out infinite;
}

.section_title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.section_title:hover h2::after {
    width: 150px;
}

.menu-carousel-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
}

.menu-swiper {
    width: 100%;
    max-width: 1400px;
    height: 85vh;
    margin: 0 auto;
}

.menu-category-card {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-image {
    position: relative;
    height: 75%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.card-content {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
    font-family: 'Bowlby One SC', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.card-content:hover h3::after {
    width: 100px;
}

.card-content p {
    color: var(--text-color);
    font-size: 16px;
    opacity: 0.9;
}

.menu_content {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu_content:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
    transform: translateY(-5px);
}

.menu_content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.menu_content:hover::before {
    transform: translateX(100%);
}

.menu_content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
}

.menu_content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.menu_content:hover h3::after {
    width: 100px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: 50px;
}

.swiper-button-next {
    right: 50px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--bg-color);
}

/* Testimonial Section */
.testimonial_area {
    padding: 100px 0;
    background: var(--bg-color);
    position: relative;
}

.testimonial_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}

.testimonials_slider {
    padding: 40px 60px;
    overflow: hidden;
    position: relative;
}

.testimonials_slider .swiper-wrapper {
    align-items: stretch;
}

.testimonials_slider .swiper-slide {
    height: auto;
    display: flex;
}

.single_testimonial {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.single_testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
    flex: 1;
}

.testimonial_author {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.single_testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
    flex: 1;
}

.testimonial_author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-author img,
.testimonial_author img,
.author_image {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-author,
.testimonial_author {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.author_info {
    flex: 1;
}

.author_info h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.author_info span {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.rating {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 10px;
}

.rating i {
    margin-right: 3px;
}

/* Location & Hours Section */
.location_hours_section {
    padding: 100px 0;
    background: var(--bg-color);
}

.location_hours_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.info_card {
    background: var(--bg-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.info_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map_card {
    position: relative;
    height: 100%;
}

.location_map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.location_map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map_overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.directions_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.directions_btn:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.directions_btn i {
    font-size: 1.2rem;
}

.info_cards_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact_card,
.hours_card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.contact_card:hover,
.hours_card:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
    transform: translateY(-5px);
}

.card_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card_header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.card_header h4 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 0;
}

.hours_grid {
    display: grid;
    gap: 15px;
}

.day_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.day_row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-color);
}

.hours {
    color: var(--primary-color);
}

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

.contact_item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact_item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact_item i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-color);
    color: var(--text-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 0, 0.2) 50%, 
        transparent 100%
    );
}

.footer_content {
    padding: 100px 0;
}

.footer_grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1.1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: 'Bowlby One SC', sans-serif;
    color: var(--primary-color);
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer h3:hover::after {
    width: 60%;
}

.footer_links ul,
.footer_hours ul,
.footer_contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer_links a,
.footer_contact a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer_links a::after,
.footer_contact a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer_links a:hover,
.footer_contact a:hover {
    color: var(--primary-color);
}

.footer_links a:hover::after,
.footer_contact a:hover::after {
    width: 100%;
}

.footer_brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 140px;
}

.footer_logo {
    width: 150px;
    height: auto;
    margin-bottom: 25px;
}

.social_links {
    display: flex;
    gap: 25px;
    padding-left: 15px;
}

.social_link {
    color: var(--text-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social_link:hover {
    color: var(--primary-color);
}

/* Fullscreen Modal Styles */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullscreen-modal.active {
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.fullscreen-modal.active .fullscreen-image {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

.close-modal:hover i {
    color: var(--bg-color);
}

/* Media Queries */
@media (max-width: 991px) {
    .social-links {
        margin-right: 30px;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .main-header-area {
        padding: 0;
    }

    .navbar {
        padding: 10px 20px;
    }

    .logo img {
        height: 50px;
    }

    .main-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        padding: 80px 20px;
        z-index: 999;
    }

    .main-menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    .main-menu ul li a {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .mobile-menu-btn i {
        font-size: 1.8rem;
        color: var(--text-color);
        transition: color 0.3s ease;
    }

    .mobile-menu-btn:hover i {
        color: var(--primary-color);
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin: 0;
        padding: 20px 0;
    }

    .social-links a {
        font-size: 1.6rem;
        color: var(--text-color);
        transition: color 0.3s ease;
    }

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

    /* Hero Mobile */
    .hero-section {
        height: 70vh;
        overflow: hidden;
    }

    .hero-video {
        height: 70vh;
        width: 150%;
        object-fit: cover;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.7);
    }

    .hero-overlay {
        height: 70vh;
    }

    /* About Mobile */
    .about-section {
        padding: 120px 0 80px;
        position: relative;
    }

    .about-container {
        flex-direction: column;
        gap: 0;
        position: relative;
    }

    .about-images {
        width: 100%;
        height: 200px;
        position: relative;
        display: flex;
        justify-content: center;
        margin-bottom: 220px;
    }

    .about-img {
        width: 230px;
        height: 280px;
        position: absolute;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .about-img-1 {
        left: 30%;
        transform: translateX(-50%);
        top: -55px;
        height: 220px;
        z-index: 2;
    }

    .about-img-2 {
        right: 30%;
        transform: translateX(50%);
        top: 40px;
    }

    .about-content {
        text-align: left;
        padding: 0 20px;
        padding-top: 150px;
    }

    .about-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
        text-align: left;
    }

    /* Menu Mobile */
    .menu_section {
        padding: 60px 0;
    }

    .section_title h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .menu-carousel-container {
        padding: 0;
        height: auto;
        position: relative;
    }

    .menu-swiper {
        padding-bottom: 50px;
        position: relative;
    }

    .menu-swiper::after {
        content: 'Glissez pour voir plus';
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--text-color);
        font-size: 0.9rem;
        opacity: 0.7;
        width: 100%;
        text-align: center;
    }

    .menu-swiper .swiper-pagination {
        bottom: 40px;
    }

    .menu-swiper {
        height: auto;
    }

    .menu-category-card {
        max-width: 100%;
        position: relative;
    }

    .card-image {
        height: 200px;
        position: relative;
    }

    .card-image img {
        cursor: pointer;
    }

    .card-image::after {
        content: '\e8d4';  /* Icône zoom Boxicons */
        font-family: 'boxicons';
        position: absolute;
        right: 10px;
        bottom: 10px;
        width: 35px;
        height: 35px;
        background: rgba(26, 26, 26, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1.4rem;
        z-index: 2;
    }

    /* Masquer les boutons de navigation du carousel */
    .menu-swiper .swiper-button-next,
    .menu-swiper .swiper-button-prev {
        display: none;
    }

    /* Ajuster la pagination pour qu'elle soit plus visible */
    .menu-swiper .swiper-pagination {
        bottom: 10px;
    }

    .menu-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: var(--primary-color);
        opacity: 0.5;
    }

    .menu-swiper .swiper-pagination-bullet-active {
        opacity: 1;
        width: 20px;
        border-radius: 4px;
    }

    /* Testimonial Mobile */
    .testimonial_area {
        padding: 60px 0;
    }

    .testimonial_area .section_title h2 {
        font-size: 1.3rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .testimonials_slider {
        padding: 20px 0;
    }

    .single_testimonial {
        min-height: auto;
        height: auto;
        padding: 25px 20px;
        margin: 10px;
        display: flex;
        flex-direction: column;
    }

    .quote-icon {
        width: 35px;
        height: 35px;
        top: -15px;
        right: 20px;
    }

    .quote-icon i {
        font-size: 1.2rem;
    }

    .single_testimonial p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: unset;
        -webkit-box-orient: vertical;
        overflow: visible;
        height: auto;
    }

    .testimonial_author {
        padding-top: 15px;
        margin-top: auto;
    }

    .testimonial_author img,
    .author_image {
        width: 35px !important;
        height: 35px !important;
    }

    .author_info h4 {
        font-size: 1rem;
    }

    .author_info span {
        font-size: 0.8rem;
    }

    .rating {
        font-size: 0.9rem;
        margin-top: 8px;
    }

    /* Ajuster la navigation du slider */
    .testimonials_slider .swiper-button-next,
    .testimonials_slider .swiper-button-prev {
        display: none;
    }

    .testimonials_slider .swiper-pagination {
        bottom: -10px;
    }

    .testimonials_slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .testimonials_slider .swiper-pagination-bullet-active {
        width: 25px;
    }

    /* Location & Hours Mobile */
    .location_hours_section {
        padding: 60px 0;
    }

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

    .map_card {
        height: 300px;
    }

    .location_map {
        min-height: 300px;
    }

    .contact_card,
    .hours_card {
        padding: 25px;
    }

    .card_header {
        margin-bottom: 20px;
    }

    .card_header i {
        font-size: 1.5rem;
    }

    .card_header h4 {
        font-size: 1.2rem;
    }

    .hours_grid {
        gap: 12px;
    }

    .day_row {
        font-size: 0.9rem;
    }

    .directions_btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 20px;
    }

    .footer_content {
        padding: 0;
    }

    .footer_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer_brand {
        align-items: center;
        width: 100%;
        text-align: center;
        padding-right: 0;
    }

    .footer_logo {
        width: 150px;
        margin: 0 auto 20px;
    }

    .social_links {
        justify-content: center;
        padding-left: 0;
        margin-top: 15px;
    }

    .social_link {
        font-size: 1.8rem;
    }

    .footer_hours,
    .footer_links,
    .footer_contact {
        display: none;
    }
}
