/* ========================================= */
/* --- SÉCURITÉ VISUELLE ---                 */
/* ========================================= */
.noselect {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.protect-img {
    pointer-events: none;
    -webkit-user-drag: none;
}

/* --- VARIABLES & RESET --- */
:root {
    --gold-dark: #8B6508;
    --gold-base: #cc9900;
    --gold-medium: #ffb300;
    --gold-light: #ffd700;
    --dark-slate: #1f2235; 
    --light-grey: #f4f6f9;
    --text-main: #2a2a35;
    --text-muted: #6e6e73;
    --white: #ffffff;
    
    --color-tiktok: #000000;
    --color-facebook: #1877F2;
    --color-whatsapp: #25D366;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-grey);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo-text { font-weight: 900; letter-spacing: -0.5px; }
p, input, button, select { font-weight: 500; }

/* --- NAVBAR --- */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: 70px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.nav-container { max-width: 1400px; height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; }
.logo-text { font-size: 1.5rem; color: var(--dark-slate); text-transform: uppercase; }
.logo-text .accent { color: var(--gold-base); }
.hamburger-menu { width: 30px; height: 20px; display: flex; flex-direction: column; justify-content: space-between; background: transparent; border: none; cursor: pointer; z-index: 2002; }
.hamburger-menu span { display: block; width: 100%; height: 2px; background-color: var(--dark-slate); transition: var(--transition-smooth); }

/* --- SIDE MENU --- */
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(31, 34, 53, 0.6); backdrop-filter: blur(5px); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.menu-overlay.active { opacity: 1; pointer-events: auto; }
.side-menu { position: fixed; top: 0; right: 0; width: 320px; height: 100vh; background: var(--white); z-index: 2001; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: -10px 0 30px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
.side-menu.active { transform: translateX(0); }
.close-menu { position: absolute; top: 20px; right: 25px; background: #f0f0f5; border: none; width: 35px; height: 35px; border-radius: 50%; font-size: 1.2rem; color: var(--dark-slate); cursor: pointer; transition: 0.3s; }
.close-menu:hover { background: #e0e0e8; color: var(--gold-base); transform: rotate(90deg); }
.menu-logo-container { text-align: center; padding: 50px 0 30px; border-bottom: 1px solid #f0f0f5; }
.menu-circular-logo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 20px rgba(0,0,0,0.1); border: 3px solid var(--white); }
.side-nav-links { list-style: none; padding: 20px 0; }
.side-nav-links li { margin: 10px 0; }
.side-nav-links .menu-link { display: flex; align-items: center; gap: 15px; padding: 15px 35px; font-size: 1.1rem; font-weight: 700; color: var(--dark-slate); text-decoration: none; transition: 0.3s; }
.side-nav-links .menu-link i { font-size: 1.3rem; color: var(--gold-base); width: 25px; text-align: center; }
.side-nav-links .menu-link:hover { background: #f8f9fa; color: var(--gold-base); padding-left: 45px; }

/* --- HERO --- */
@keyframes gradientAnimation { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.hero-section { margin-top: 70px; height: 30vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(-45deg, var(--gold-dark), var(--gold-base), var(--gold-medium), var(--gold-light)); background-size: 400% 400%; animation: gradientAnimation 10s ease infinite; text-align: center; color: var(--white); }
.hero-title { font-size: 3rem; text-shadow: 0 4px 15px rgba(0,0,0,0.15); margin-bottom: 5px; text-transform: uppercase;}
.hero-subtitle { font-size: 1.1rem; opacity: 0.9; }

/* --- DRAGGABLE CAROUSEL --- */
.featured-section { padding: 60px 0; background: var(--white); text-align: center; }
.section-title { font-size: 2.2rem; margin-bottom: 25px; color: var(--dark-slate); text-transform: uppercase; }
.carousel-wrapper { width: 100%; }
.carousel-track { 
    display: flex; gap: 20px; padding: 10px 10%; 
    overflow-x: auto; 
    cursor: grab; 
    -ms-overflow-style: none; scrollbar-width: none; 
    touch-action: pan-y; 
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track:active { cursor: grabbing; }
.carousel-slide { min-width: 380px; height: 260px; border-radius: 18px; position: relative; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.08); flex-shrink: 0; user-select: none; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.slide-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 20px 15px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: var(--white); text-align: left; }
.slide-overlay h3 { font-size: 1.2rem; margin-bottom: 5px; }
.slide-desc { font-size: 0.85rem; color: #ddd; line-height: 1.3; }

/* ========================================= */
/* --- UPCOMING TOUR SECTION (PRO FIX) ---   */
/* ========================================= */
.upcoming-tour {
    background: transparent;
    padding: 60px 5%;
    text-align: center;
}

.upcoming-tour .section-title {
    color: var(--dark-slate);
    margin-bottom: 40px;
}

.tour-card-wrapper {
    max-width: 850px; 
    margin: 0 auto;
}

.tour-horizontal-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(204,153,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.tour-img-side {
    flex: 0 0 45%;
    position: relative;
    min-height: 350px;
}

.tour-img-side img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.tour-content-side {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.tour-content-side .badge {
    background-color: #ef4444;
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tour-content-side h3 {
    font-size: 1.8rem;
    color: var(--dark-slate);
    margin-bottom: 12px;
    line-height: 1.2;
}

.tour-content-side p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.tour-content-side .btn-reserve {
    display: inline-block;
    padding: 14px 28px;
    background: var(--dark-slate);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.tour-content-side .btn-reserve:hover {
    background: var(--gold-base);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(204,153,0,0.2);
}

/* --- RECIPES SECTION --- */
.recipes-section { padding: 60px 5%; background: var(--light-grey); text-align: center;}
.recipes-section .section-title { color: var(--dark-slate); }

.recipesSwiper { width: 100%; padding-bottom: 50px !important; }
.recipe-card { 
    background: var(--white); 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
    display: flex; 
    flex-direction: column;
    text-align: left;
    transition: var(--transition-smooth);
    height: 100%; 
}
.recipe-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(204,153,0,0.12); }
.card-img-wrapper { overflow: hidden; }
.card-img-wrapper img { 
    width: 100%; 
    aspect-ratio: 12 / 9; 
    object-fit: cover; 
    display: block;
    transition: transform 0.6s ease; 
}
.recipe-card:hover .card-img-wrapper img { transform: scale(1.06); }
.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.card-content h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark-slate); }
.card-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }

.btn-reserve { 
    margin-top: auto;
    width: 100%; 
    padding: 12px; 
    border: none; 
    background: var(--dark-slate); 
    color: var(--white); 
    border-radius: 12px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: var(--transition-smooth); 
}
.btn-reserve:hover { opacity: 0.85; transform: translateY(-2px); }
.swiper-pagination-bullet-active { background-color: var(--dark-slate) !important; }

/* --- CHEF BOZO34 --- */
.chef-section { padding: 60px 5%; background: var(--white); }
.chef-card-wrapper { max-width: 850px; margin: 0 auto; }

.chef-horizontal-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 1px solid rgba(204,153,0,0.15);
}

.chef-img-side {
    flex: 0 0 40%;
    position: relative;
}

.chef-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chef-content-side {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chef-content-side .badge {
    display: inline-block;
    background-color: #ffaa00 !important; /* La couleur orange/dorée de l'image */
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px; /* Crée l'effet "pilule" aux bords arrondis */
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content; /* Empêche le badge de s'étirer sur toute la largeur */
}

.chef-title-card {
    font-size: 1.6rem;
    color: var(--dark-slate);
    margin-bottom: 12px;
}

.chef-bio-short {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-box-mini {
    background: linear-gradient(135deg, #fef9e6, #fff4cc);
    border-left: 4px solid var(--gold-base);
    padding: 18px;
    border-radius: 12px;
}

.promo-box-mini h4 {
    color: var(--gold-dark);
    margin-bottom: 6px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-box-mini p {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.4;
}

.btn-promo-whatsapp-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-whatsapp);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
    width: fit-content;
}

.btn-promo-whatsapp-mini:hover {
    background: #1ebd57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

/* --- COMMENTS --- */
.comments-section { background: var(--light-grey); padding: 50px 10%; text-align: center; }
.chat-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; text-align: left; }
.chat-bubble { display: flex; max-width: 85%; animation: floatIn 0.5s ease-out forwards; }
@keyframes floatIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.chat-bubble.left { align-self: flex-start; }
.chat-bubble.right { align-self: flex-end; flex-direction: row-reverse; }
.chat-avatar { width: 50px; height: 50px; border-radius: 50%; overflow: hidden; margin: 0 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); flex-shrink: 0; border: 2px solid var(--white); background: #eee; }
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-message { padding: 16px 20px; border-radius: 20px; background-color: #f1f2f6; box-shadow: 0 3px 10px rgba(0,0,0,0.02); }
.chat-bubble.left .chat-message { border-top-left-radius: 0; background: var(--white); }
.chat-bubble.right .chat-message { background-color: var(--dark-slate); color: var(--white); border-top-right-radius: 0; }
.name-tag { font-size: 0.95rem; margin-bottom: 5px; color: var(--gold-base); display: flex; align-items: center; gap: 5px;}
.badge-pro { color: var(--gold-medium); font-size: 0.8rem; }
.chat-message p { font-size: 0.95rem; line-height: 1.5;}

.chat-input-area { max-width: 800px; margin: 30px auto 0; display: flex; background: var(--white); padding: 6px; border-radius: 30px; border: 2px solid transparent; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05);}
.chat-input-area:focus-within { border-color: var(--gold-base); box-shadow: 0 0 15px rgba(204, 153, 0, 0.2); }
.chat-input-area input { flex: 1; border: none; outline: none; background: transparent; padding: 10px 20px; font-size: 1rem; }
.btn-send { background: var(--dark-slate); color: var(--white); border: none; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; transition: 0.2s; }
.btn-send:hover { background: var(--gold-base); transform: scale(1.1); }

/* --- SOCIAL MEDIA --- */
.socials-banner { padding: 35px 10%; background: #e2e5eb; text-align: center; }
.socials-title { font-size: 1.5rem; margin-bottom: 8px; color: var(--dark-slate); }
.socials-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 25px; }
.social-links-container { display: flex; justify-content: center; gap: 20px; }
.social-ball { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; font-size: 1.6rem; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.btn-tiktok { background: var(--color-tiktok); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
.btn-facebook { background: var(--color-facebook); box-shadow: 0 6px 15px rgba(24,119,242,0.3); }
.btn-whatsapp { background: var(--color-whatsapp); box-shadow: 0 6px 15px rgba(37,211,102,0.3); }
.social-ball:hover { transform: translateY(-6px) scale(1.1); }

/* --- FOOTER --- */
.footer-section { padding: 30px 10% 20px; background: var(--dark-slate); color: var(--white); text-align: center; }
.footer-info h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--gold-base); }
.footer-info p { font-size: 0.9rem; color: #a0a0ab; margin-bottom: 8px; }
.whatsapp-link { color: var(--white); font-weight: 700; font-size: 1.1rem; text-decoration: none; transition: 0.3s; }
.whatsapp-link:hover { color: var(--color-whatsapp); }
.footer-bottom { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.8rem; color: #666; }

/* --- PRO 2-STEP AVATAR MODAL --- */
.auth-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.65); backdrop-filter: blur(10px); z-index: 10005; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.4s; }
.auth-overlay.show { opacity: 1; pointer-events: auto; }
.auth-modal { background: var(--white); width: 90%; max-width: 480px; border-radius: 20px; padding: 40px 35px; position: relative; box-shadow: 0 25px 60px rgba(0,0,0,0.25); transform: scale(0.9); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.auth-overlay.show .auth-modal { transform: scale(1); }
.close-auth { position: absolute; top: 15px; right: 15px; background: #f4f6f9; border: none; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; color: var(--text-muted); transition: 0.2s; }
.close-auth:hover { color: #ff3b30; background: #ffebeb; }

.modal-step { display: block; animation: fadeInStep 0.4s ease-out; }
.modal-step.hidden { display: none; }
@keyframes fadeInStep { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

.pro-modal-title { font-size: 1.6rem; color: var(--dark-slate); margin-bottom: 5px; text-align: center; }
.pro-modal-subtitle { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 30px; text-align: center; }

.input-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.input-row-multi { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.input-group label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.input-group input, .input-group select { width: 100%; padding: 14px; border: 2px solid #e1e4e8; border-radius: 10px; font-family: inherit; font-size: 0.95rem; color: var(--text-main); outline: none; transition: 0.3s; background: #fafbfc; }
.input-group input:focus, .input-group select:focus { border-color: var(--gold-base); background: var(--white); box-shadow: 0 0 0 4px rgba(204,153,0,0.1); }

.avatar-grid-scrollable { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; max-height: 280px; overflow-y: auto; padding: 10px; border-radius: 12px; background: #f4f6f9; margin-bottom: 25px; }
.avatar-grid-scrollable::-webkit-scrollbar { width: 6px; }
.avatar-grid-scrollable::-webkit-scrollbar-thumb { background: #cbd0d6; border-radius: 10px; }
.avatar-option { width: 100%; aspect-ratio: 1; border-radius: 50%; object-fit: contain; background: var(--white); border: 3px solid transparent; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.avatar-option:hover { transform: scale(1.08); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
.avatar-option.selected { border-color: var(--gold-base); transform: scale(1.1); box-shadow: 0 8px 20px rgba(204,153,0,0.3); background: #fffcf0; }

.btn-pro-action { width: 100%; padding: 16px; background: var(--dark-slate); color: var(--white); border: none; border-radius: 12px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.3s; }
.btn-pro-action:hover { background: var(--gold-base); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(204,153,0,0.2); }
.step2-actions { display: flex; gap: 15px; }
.btn-pro-secondary { width: 40%; padding: 16px; background: #e1e4e8; color: var(--text-main); border: none; border-radius: 12px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-pro-secondary:hover { background: #d0d4d9; }

/* --- POPUPS --- */
.ios-popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); backdrop-filter: blur(15px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
.ios-popup-overlay.show { opacity: 1; pointer-events: auto; }
.ios-card { background: var(--white); width: 90%; max-width: 360px; border-radius: 30px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.3); position: relative; transform: scale(0.85); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.ios-popup-overlay.show .ios-card { transform: scale(1); }
.ios-close { position: absolute; top: 15px; right: 15px; width: 30px; height: 30px; background: rgba(0,0,0,0.5); color: var(--white); border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 0.8rem; }
.ios-image-wrapper { height: 220px; width: 100%; background: #000; }
.ios-image-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ios-body { padding: 25px; text-align: center; } 
.ios-badge { background: #ff3b30; color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 8px; display: inline-block; margin-bottom: 8px; }
.ios-body h2 { font-size: 1.2rem; color: var(--dark-slate); margin-bottom: 8px; } 
.ios-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 20px; }
.btn-ios-action { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--dark-slate); color: var(--white); text-decoration: none; font-weight: 700; border-radius: 12px; transition: 0.2s; }
.btn-ios-action:hover { background: #000; }

.live-popup { position: fixed; bottom: 25px; left: 25px; width: 240px; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.25); z-index: 999; transform: translateY(150%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.live-popup.active { transform: translateY(0); }
.live-header { background: var(--dark-slate); color: var(--white); padding: 8px 12px; display: flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 700; cursor: grab; }
.live-header:active { cursor: grabbing; }
.live-dot { width: 8px; height: 8px; background: #ff3b30; border-radius: 50%; animation: blink 1s infinite alternate; }
@keyframes blink { 0% { opacity: 0.3; } 100% { opacity: 1; } }
.close-live { margin-left: auto; background: transparent; border: none; color: #aaa; font-size: 1.2rem; cursor: pointer; }
.live-preview-img { position: relative; height: 130px; width: 100%; background: #000; pointer-events: none; }
.live-preview-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.live-overlay-btn { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: #ff3b30; color: var(--white); padding: 6px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-decoration: none; box-shadow: 0 4px 10px rgba(255,59,48,0.4); pointer-events: auto; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .input-row-multi { grid-template-columns: 1fr; gap: 0; }
    .side-menu { width: 280px; }
    .social-links-container { gap: 15px; }
    .social-ball { width: 45px; height: 45px; font-size: 1.3rem; }
    .carousel-slide { min-width: 300px; }
    
    .avatar-grid-scrollable { grid-template-columns: repeat(3, 1fr); }

    /* Adaptation Mobile pour la carte Chef */
    .chef-horizontal-card { flex-direction: column; }
    .chef-img-side { height: 350px; }
    .chef-content-side { padding: 25px 20px; }
    .chef-title-card { font-size: 1.4rem; }
    
    .recipe-card { height: auto; min-height: 450px; }

    /* Adaptation Mobile (UPCOMING TOUR) */
    .tour-horizontal-card {
        flex-direction: column; 
        max-width: 450px;
        margin: 0 auto;
    }
    
    .tour-img-side {
        width: 100%;
        flex: none;
        min-height: 250px; 
    }
    
    .tour-img-side img {
        position: relative; 
    }
    
    .tour-content-side {
        padding: 30px 20px;
        align-items: center; 
        text-align: center;
    }
    
    .tour-content-side h3 {
        font-size: 1.4rem;
    }
    
    .tour-content-side .btn-reserve {
        width: 100%; 
        margin-top: 15px;
    }
}

@media (min-width: 768px) {
    .recipesSwiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
        transform: none !important;
    }
    .recipesSwiper .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
        height: auto;
    }
    .recipesSwiper .swiper-pagination {
        display: none !important;
    }
}