/**
 * DaDa Café Modern - Custom Styles
 * Design ultra-moderne avec animations premium niveau Apple/Starbucks
 */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* === COLORS === */
:root {
    --color-black: #1a1a1a;
    --color-white: #ffffff;
    --color-wood: #c19a6b;
    --color-wood-hover: #a67c52;
    --color-gray: #6b7280;
    --color-gray-light: #f3f4f6;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

/* === CONTAINER === */
.hero-content,
.statement-container,
.featured-container,
.menu-container,
.ambiance-content,
.info-container,
.cta-container,
.header-container,
.footer-container,
.values-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === BUTTONS === */
.btn-primary,
.btn-outline,
.btn-outline-white,
.btn-reserve,
.btn-reserve-mobile {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-white) !important;
    color: var(--color-black) !important;
    border: 2px solid var(--color-white) !important;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-reserve {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
    color: #1a1a1a;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.btn-reserve:hover {
    background: var(--color-wood-hover);
    transform: translateY(-1px);
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 2rem;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    mix-blend-mode: normal;
    object-fit: contain;
}

/* Header Right Side */
.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

/* Social Icons Header */
.header-social {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.header-social-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.social-icon {
    color: var(--color-white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
}

.site-header.scrolled .social-icon {
    color: var(--color-black);
}

.social-icon:hover {
    color: var(--color-wood);
    transform: translateY(-2px);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-wood);
    transition: width 0.3s ease;
}

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

.site-header.scrolled .nav-link {
    color: var(--color-black);
}

.nav-link:hover {
    color: var(--color-wood);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
    outline: none;
}

.mobile-menu-btn:focus {
    outline: none;
    box-shadow: none;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu.active ~ .mobile-menu-btn .menu-icon,
.mobile-menu.active ~ .mobile-menu-btn .menu-icon::before,
.mobile-menu.active ~ .mobile-menu-btn .menu-icon::after {
    background: var(--color-wood);
}

.site-header.scrolled .menu-icon {
    background: var(--color-black);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--burger-color, inherit);
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: slideDown 0.3s ease;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 0.5rem;
}

.mobile-nav-link {
    padding: 1.25rem 1.5rem;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--color-wood);
    background: rgba(193, 154, 107, 0.1);
    transform: translateX(5px);
}

.btn-reserve-mobile {
    margin: 1rem 1.5rem 0;
    background: var(--color-wood) !important;
    color: var(--color-black) !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    display: inline-block !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}



/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
    color: var(--color-white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--color-white) !important;
    animation: fadeInUp 1s ease;
    line-height: 1.3 !important;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.75rem);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-br {
    display: block;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease 0.8s both;
}

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

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* === STATEMENT SECTION === */
.statement-section {
    padding: 8rem 0;
    background: var(--color-black);
    color: var(--color-white);
}

.statement-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.statement-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--color-white) !important;
}

.text-wood {
    color: var(--color-wood);
}

.statement-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* === VALUES SECTION === */
.values-section {
    padding: 8rem 0;
    background: var(--color-gray-light);
}

.values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.values-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.values-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray);
    font-weight: 400;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.4s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-wood);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.value-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.value-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
}

/* === FEATURED IMAGE SECTION === */
.featured-section {
    padding: 0;
    background: transparent;
    overflow: hidden;
    min-height: 85vh;
    position: relative;
    line-height: 0;
}

.featured-image-wrapper {
    width: 100%;
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: transparent;
    line-height: 0;
}

.featured-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: zoomIn 1.5s ease-out forwards;
    vertical-align: top;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .featured-image-wrapper {
        height: 60vh;
        min-height: 400px;
    }
}

/* === MENU SECTION === */
.menu-section {
    padding: 8rem 0;
    background: var(--color-white);
}

.menu-header {
    text-align: center;
    margin-bottom: 5rem;
}

.menu-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-black) !important;
}

.menu-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gray);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.menu-item-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.menu-item-title {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.menu-item-view {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

/* === AMBIANCE SECTION === */
.ambiance-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/wp-content/uploads/2025/11/Ambianceinterieur.jpg') center/cover fixed;
    color: white;
    text-align: center;
    overflow: hidden;
}

.ambiance-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.ambiance-section > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .ambiance-section {
        background-attachment: scroll;
    }
}

/* Overlay déjà géré par ::before */

.ambiance-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.ambiance-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white) !important;
    text-align: center;
}

.ambiance-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    text-align: center;
}

/* === INFO SECTION === */
.info-section {
    padding: 8rem 0;
    background: var(--color-gray-light);
}

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

.info-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.info-icon {
    color: var(--color-wood);
    margin-bottom: 1.5rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.info-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-gray);
}

/* === CTA SECTION === */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
}

.cta-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white) !important;
    text-align: center;
}

.cta-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.8;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* === DIVIDERS === */
.section-divider {
    background: var(--color-white);
    line-height: 0;
    margin: 0;
    padding: 0;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-divider {
    background: transparent;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.footer-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* === FOOTER === */
.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
    object-fit: contain;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hour-row span {
    color: rgba(255, 255, 255, 0.7);
}

.hour-row strong {
    color: var(--color-wood);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social .social-icon {
    color: var(--color-white);
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-wood);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-wood);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-credit {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
    color: var(--color-wood);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #fff;
}

.footer-credit .heart {
    display: inline-block;
    color: #ff0000;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.2); }
    20%, 40% { transform: scale(1); }
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* === SCROLL ANIMATIONS === */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
    .hero-br {
        display: block;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .header-right {
        display: flex;
    }
    
    .header-social {
        display: flex;
    }
    
    .header-social-mobile {
        display: none;
    }
    
    .btn-reserve {
        display: inline-block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .header-content {
        height: 80px;
    }
    
    .header-logo img {
        height: 48px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .statement-section,
    .menu-section,
    .info-section,
    .cta-section,
    .values-section {
        padding: 10rem 0;
    }
}

/* === MOBILE OPTIMIZATIONS === */
@media (max-width: 767px) {
    /* Touch-friendly spacing */
    .btn-primary,
    .btn-outline,
    .btn-outline-white {
        padding: 1.25rem 2.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Mobile hero adjustments */
    .hero-section {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    /* Disable parallax on mobile for performance */
    .hero-bg,
    .ambiance-bg {
        background-attachment: scroll !important;
        transform: none !important;
    }
    
    /* Mobile sections padding */
    .statement-section,
    .menu-section,
    .info-section,
    .cta-section,
    .values-section {
        padding: 4rem 0;
    }
    
    /* Mobile typography */
    .statement-title,
    .menu-title,
    .values-title,
    .cta-title,
    .ambiance-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .statement-text,
    .menu-subtitle,
    .values-subtitle,
    .cta-text,
    .ambiance-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile menu grid */
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Mobile featured image */
    .featured-image {
        height: 50vh;
        min-height: 400px;
    }
    
    .featured-main-image {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        vertical-align: top !important;
    }
    
    .featured-image-wrapper {
        background: transparent !important;
        line-height: 0 !important;
        overflow: hidden !important;
    }
    
    .featured-section {
        background: transparent !important;
        line-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Mobile ambiance section */
    .ambiance-section {
        height: 60vh;
        min-height: 500px;
    }
    
    /* Mobile info cards */
    .info-item {
        padding: 1.5rem;
    }
    
    /* Mobile footer */
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-bottom-left {
        align-items: center !important;
    }
    
    .footer-copyright {
        text-align: center !important;
    }
    
    /* Touch target sizes */
    .nav-link,
    .mobile-nav-link,
    .footer-link,
    .social-icon {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Prevent text selection on touch */
    .btn-primary,
    .btn-outline,
    .btn-outline-white,
    .btn-reserve {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        user-select: none;
    }
}

/* === SMALL MOBILE (< 375px) === */
@media (max-width: 374px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-outline,
    .btn-outline-white {
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }
    
    .header-content {
        height: 60px;
    }
    
    .header-logo img {
        height: 36px;
    }
}

/* === CLICK & COLLECT BUTTON === */
.collect-cta {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: 2rem;
    border: none;
}

.collect-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #c19a31 0%, #e8d4a8 100%);
}

/* Séparateur Glovo/Collect Créatif */
.glovo-collect-separator {
    height: 80px;
    background: linear-gradient(to bottom, #ffffff 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.glovo-collect-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

.glovo-collect-separator::after {
    content: '♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #D4AF37;
    font-size: 1.5rem;
    background: #ffffff;
    padding: 0 1rem;
}

/* === GLOVO SECTION === */
.glovo-section {
    background: var(--color-white);
    padding: 6rem 0;
    text-align: center;
}

.glovo-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.glovo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.glovo-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glovo-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

.glovo-text {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--color-gray);
    line-height: 1.8;
    margin: 0;
}

.btn-glovo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: #FFC244;
    color: var(--color-black);
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 194, 68, 0.3);
}

.btn-glovo:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 194, 68, 0.4);
    background: #FFD470;
}

.btn-glovo svg {
    width: 24px;
    height: 24px;
}

/* === CLICK & COLLECT SECTION === */
.collect-section {
    background: var(--color-white);
    padding: 6rem 0;
}

.collect-container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.collect-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collect-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.collect-image img {
    width: 100%;
    height: auto;
    display: block;
}

.collect-content {
    padding: 2rem 0;
}

.collect-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-black);
    margin: 0 0 1rem;
}

.collect-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--color-wood);
    margin: 0 0 2.5rem;
}

.collect-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.collect-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--color-gray);
}

.collect-features svg {
    flex-shrink: 0;
    color: var(--color-wood);
}

/* === SECTION DIVIDER DARK === */
.section-divider-dark {
    background: var(--color-white);
}

/* === ANIMATIONS SPECTACULAIRES === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animations au scroll */
.scroll-animate {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-animate:nth-child(1) { animation-delay: 0.1s; }
.scroll-animate:nth-child(2) { animation-delay: 0.2s; }
.scroll-animate:nth-child(3) { animation-delay: 0.3s; }
.scroll-animate:nth-child(4) { animation-delay: 0.4s; }

/* Hover effects spectaculaires */
.menu-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.value-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary,
.btn-outline,
.btn-outline-white {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-outline-white:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Parallaxe effect */
.hero-section,
/* Parallaxe géré dans .ambiance-bg */

/* === RESPONSIVE COLLECT SECTION === */
@media (max-width: 768px) {
    .collect-section {
        padding: 3rem 0;
    }
    
    .collect-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .collect-image {
        order: -1;
        border-radius: 1rem;
    }
    
    .collect-content {
        text-align: center;
        padding: 0;
    }
    
    .collect-title {
        font-size: 2rem;
        color: var(--color-black);
    }
    
    .collect-subtitle {
        font-size: 1.125rem;
        color: var(--color-black);
    }
    
    .collect-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .collect-features li {
        color: var(--color-black);
    }
    
    .collect-cta {
        background: var(--color-wood) !important;
        color: #000000 !important;
        padding: 1.25rem 2rem !important;
        font-size: 1.125rem !important;
        font-weight: 700 !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 2rem auto 0 !important;
        display: inline-block !important;
        text-align: center !important;
        border-radius: 50px !important;
        box-shadow: 0 4px 15px rgba(193, 154, 107, 0.4) !important;
        border: 2px solid var(--color-wood) !important;
    }
    
    .collect-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .glovo-section,
    .collect-section {
        padding: 4rem 0;
    }
    
    /* Footer mobile centré */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand,
    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
}

/* === PERFORMANCE OPTIMIZATIONS === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === DARK MODE SUPPORT === */
@media (prefers-color-scheme: dark) {
    /* Le site utilise déjà un thème sombre, pas de changements nécessaires */
}

/* === HIGH CONTRAST MODE === */
@media (prefers-contrast: high) {
    .hero-overlay,
    .ambiance-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .btn-outline,
    .btn-outline-white {
        border-width: 3px;
    }
}


/* ============================================
   PAGE NOTRE HISTOIRE
   ============================================ */

/* Hero Histoire */
.hero-histoire {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background image avec parallax */
.hero-histoire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/wp-content/uploads/2025/11/20a49f8b-3bf8-426b-a974-7a50c4d3ce33.jpg') center/cover;
    background-attachment: fixed;
    transform: scale(1.1);
    z-index: 1;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Overlay gradient moderne */
.hero-histoire::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.85) 0%, 
        rgba(45, 45, 45, 0.75) 50%,
        rgba(26, 26, 26, 0.85) 100%);
    z-index: 2;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}

.hero-histoire .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-histoire .hero-title {
    font-size: clamp(2.5rem, 7vw, 6rem);
    color: #ffffff !important;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.03em;
    animation: heroTitleReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-histoire .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    color: var(--color-wood);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: heroSubtitleReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

@keyframes heroTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroSubtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        letter-spacing: 0.5em;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.15em;
    }
}

/* Notre Histoire Content */
.notre-histoire-content {
    padding: 140px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Élément artistique décoratif */
.notre-histoire-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecor 20s ease-in-out infinite;
    z-index: 0;
}

.notre-histoire-content::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatDecor 25s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes floatDecor {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.histoire-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: start;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.histoire-text {
    padding-right: 0;
}

.histoire-text .section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #1a1a1a !important;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.histoire-text .section-title::before {
    content: '“';
    position: absolute;
    left: -40px;
    top: -20px;
    font-size: 5rem;
    color: rgba(193, 154, 107, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.histoire-intro {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2d2d2d;
    margin-bottom: 40px;
    line-height: 1.8;
    font-style: italic;
}

.histoire-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

/* Vidéo TikTok Verticale */
.histoire-video {
    position: sticky;
    top: 140px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.video-container-tiktok {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
    overflow: visible;
    background: #000;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Coups de pinceaux aux 4 coins */
.brush-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    z-index: 10;
}

.brush-top-left {
    top: -10px;
    left: -10px;
    background: linear-gradient(135deg, var(--color-wood) 0%, transparent 70%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.brush-top-right {
    top: -10px;
    right: -10px;
    background: linear-gradient(225deg, var(--color-wood) 0%, transparent 70%);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.brush-bottom-left {
    bottom: -10px;
    left: -10px;
    background: linear-gradient(45deg, var(--color-wood) 0%, transparent 70%);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.brush-bottom-right {
    bottom: -10px;
    right: -10px;
    background: linear-gradient(315deg, var(--color-wood) 0%, transparent 70%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.video-container-tiktok:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 40px 80px rgba(193, 154, 107, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(193, 154, 107, 0.3);
}

.video-container-tiktok .video-wrapper {
    position: relative;
    padding-top: 177.78%; /* Ratio 9:16 */
    border-radius: 24px;
    overflow: hidden;
}

.tiktok-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.histoire-continuation {
    max-width: 900px;
    margin: 0 auto;
}

.histoire-continuation p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

/* Entreprise Familiale Section */
.entreprise-familiale {
    padding: 140px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.entreprise-familiale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/wp-content/uploads/2025/11/Terrace.jpg') center/cover;
    opacity: 0.15;
    z-index: 1;
}

.entreprise-familiale::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(193, 154, 107, 0.1) 0%, 
        transparent 70%);
    z-index: 2;
}

.entreprise-familiale .container {
    position: relative;
    z-index: 3;
}

.entreprise-familiale .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 20px;
}

.entreprise-familiale .section-subtitle {
    font-size: 1.2rem;
    color: var(--color-wood);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 400;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.05), 
        rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(193, 154, 107, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.team-member:hover {
    transform: translateY(-15px) scale(1.02);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.05));
    border-color: var(--color-wood);
    box-shadow: 
        0 30px 80px rgba(193, 154, 107, 0.25),
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.team-member:hover::before {
    opacity: 1;
}

.team-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    filter: grayscale(20%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.team-member:hover .team-icon {
    transform: scale(1.15) translateY(-5px);
    filter: grayscale(0%);
}

.team-member h3 {
    font-size: 1.5rem;
    color: #ffffff !important;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-role {
    font-size: 1rem;
    color: var(--color-wood);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* L'Esprit de Partage Section - Style Moderne */
.esprit-partage {
    padding: 140px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.esprit-partage::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 15s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

.esprit-partage .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff !important;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.subsection-title {
    font-size: 1.8rem;
    color: var(--color-wood) !important;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

.partage-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 40px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

.partage-content p {
    font-size: 1.25rem;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-align: left;
}

.partage-content p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-wood);
    float: left;
    line-height: 1;
    margin-right: 10px;
    margin-top: 5px;
}

/* === RESPONSIVE NOTRE HISTOIRE === */
@media (max-width: 1024px) {
    .histoire-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .histoire-text {
        padding-right: 0;
    }
    
    .histoire-video {
        position: relative;
        top: 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-histoire {
        height: 60vh;
        min-height: 400px;
    }
    
    .notre-histoire-content,
    .entreprise-familiale,
    .esprit-partage {
        padding: 80px 0;
    }
    
    .histoire-grid {
        gap: 40px;
    }
    
    .video-container-tiktok {
        max-width: 280px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-member {
        padding: 35px 25px;
    }
    
    .entreprise-familiale .section-subtitle {
        margin-bottom: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-histoire .hero-title {
        font-size: 2rem;
    }
    
    .hero-histoire .hero-subtitle {
        font-size: 1rem;
    }
    
    .histoire-text .section-title {
        font-size: 1.8rem;
    }
    
    .histoire-intro {
        font-size: 1.1rem;
    }
    
    .histoire-text p,
    .histoire-continuation p,
    .partage-content p {
        font-size: 1rem;
    }
    
    .video-container-tiktok {
        max-width: 240px;
    }
}


/* ========================================
   PAGE CONTACT
   ======================================== */

/* Hero Contact */
.hero-contact {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/wp-content/uploads/2025/11/Terrace.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-contact .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(193, 154, 107, 0.15) 0%, transparent 70%);
    z-index: 2;
}

.hero-contact .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-contact .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-contact .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
}

/* Section Contact Main */
.contact-main {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Formulaire */
.contact-form-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.section-intro {
    margin-bottom: 40px;
}

.section-intro .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-intro .section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    color: #2d2d2d;
    background: #f8f8f8;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--color-wood);
    box-shadow: 0 0 0 4px rgba(193, 154, 107, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-wood) 0%, #a67c52 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.4);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

/* Cartes Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-card a {
    color: var(--color-wood);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #a67c52;
}

.info-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.95rem;
}

.info-note {
    font-size: 0.9rem;
    color: #999 !important;
    font-style: italic;
}

/* Horaires */
.horaires-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.horaire-item:last-child {
    border-bottom: none;
}

.horaire-item span:first-child {
    color: #666;
}

.horaire-item span:last-child {
    font-weight: 600;
    color: var(--color-wood);
}

/* Réseaux Sociaux */
.social-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-link.tiktok {
    background: #000;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Map */
.contact-map {
    width: 100%;
    height: 500px;
    position: relative;
}

.contact-map iframe {
    filter: grayscale(20%) contrast(1.1);
}

/* CTA Final */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-wood) 0%, #a67c52 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-wood);
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-contact .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-contact {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-contact .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-contact .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-main {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        padding: 40px 25px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}


/* ========================================
   MENU PAGE V2 - DESIGN NOIR/BLANC MODERNE
   ======================================== */

/* Hero Menu */
.hero-menu-v2 {
    position: relative;
    height: 40vh;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content-v2 {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-content-v2 h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-content-v2 p {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    opacity: 0.95;
}

/* Recherche et Filtres */
.menu-filters-v2 {
    background: #000000;
    padding: 3rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Recherche */
.search-bar-v2 {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.search-bar-v2 input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 1.5rem;
    font-size: 1rem;
    background: #1a1a1a;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
}

.search-bar-v2 input:focus {
    outline: none;
    border-color: white;
    background: #222222;
}

.search-bar-v2 input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-bar-v2 svg {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    pointer-events: none;
}

/* Séparateur de catégorie */
.category-separator-v2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.category-separator-v2 .separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-wood) 50%, transparent 100%);
}

.category-separator-v2 .separator-icon {
    font-size: 2.5rem;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(193, 154, 107, 0.3);
    flex-shrink: 0;
}

/* Wrapper filtres avec flèches */
.category-filters-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color-wood);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.scroll-arrow:hover {
    background: var(--color-wood);
    border-color: var(--color-wood);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(193, 154, 107, 0.5);
}

.scroll-arrow:hover svg {
    color: white;
}

.scroll-arrow.left {
    left: -70px;
}

.scroll-arrow.right {
    right: -70px;
}

.scroll-arrow svg {
    width: 26px;
    height: 26px;
    color: var(--color-wood);
    stroke-width: 3;
}

.scroll-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(200, 200, 200, 0.5);
    border-color: rgba(150, 150, 150, 0.5);
}

.scroll-arrow:disabled svg {
    color: rgba(100, 100, 100, 0.5);
}

.scroll-arrow:active {
    transform: translateY(-50%) scale(1.05);
    background: #d4a574;
    border-color: #d4a574;
}

.scroll-arrow:active svg {
    color: white;
}

/* Filtres catégories */
.category-filters-v2 {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-wood) rgba(255,255,255,0.1);
}

/* Scrollbar custom pour webkit */
.category-filters-v2::-webkit-scrollbar {
    height: 8px;
}

.category-filters-v2::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.category-filters-v2::-webkit-scrollbar-thumb {
    background: var(--color-wood);
    border-radius: 4px;
}

.category-filters-v2::-webkit-scrollbar-thumb:hover {
    background: var(--color-wood-hover);
}

.cat-btn-v2 {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.cat-btn-v2:hover {
    background: white !important;
    color: #000000 !important;
    border-color: white !important;
    transform: translateY(-2px);
}

/* Hover sur catégorie active - garder le style actif */
.cat-btn-v2.active:hover {
    background: var(--color-wood) !important;
    color: #000000 !important;
    border-color: var(--color-wood) !important;
}

.cat-btn-v2.active,
button.cat-btn-v2.active,
.category-filters-v2 .cat-btn-v2.active {
    background: var(--color-wood) !important;
    background-color: var(--color-wood) !important;
    color: #000000 !important;
    border-color: var(--color-wood) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(193, 154, 107, 0.4) !important;
}

/* Section produits */
.menu-products-v2 {
    background: white;
    padding: 4rem 0 8rem;
}

.category-section-v2 {
    margin-bottom: 6rem;
}

.category-section-v2.hidden {
    display: none;
}

.category-title-v2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: black;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Grid produits */
.products-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 3rem;
}

@media (max-width: 768px) {
    .products-grid-v2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Carte produit */
.product-card-v2 {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
}

.product-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: black;
}

.product-card-v2.hidden {
    display: none;
}

/* Image produit */
.product-image-v2 {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-v2:hover .product-image-v2 img {
    transform: scale(1.08);
}

.product-image-v2 .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.product-image-v2 .no-image i {
    font-size: 5rem;
    color: #cccccc;
}

/* Bouton vidéo */
.video-btn-v2 {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.8);
    border: 2px solid white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-btn-v2:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

/* Info produit */
.product-info-v2 {
    padding: 2rem;
}

.product-info-v2 h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: black;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* Prix */
.product-prices-v2 {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-option-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: black;
}

/* Bouton ajouter */
.add-to-cart-v2 {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: black;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.add-to-cart-v2:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.add-to-cart-v2 i {
    font-size: 1.25rem;
}

/* Aucun résultat */
.no-results-v2 {
    text-align: center;
    padding: 6rem 2rem;
}

.no-results-v2 i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.no-results-v2 p {
    font-size: 1.5rem;
    color: #666;
}

/* Panier flottant */
.cart-toggle-v2 {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: black;
    color: white;
    border: 3px solid white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-toggle-v2:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.cart-toggle-v2 i {
    font-size: 1.75rem;
}

.cart-count-v2 {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: black;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    border: 2px solid black;
}

/* Modal Panier */
.cart-modal-v2 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.cart-modal-v2.active {
    display: block;
}

.cart-modal-overlay-v2 {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.cart-modal-content-v2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cart-header-v2 {
    padding: 2rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header-v2 h2 {
    font-size: 2rem;
    font-weight: 800;
    color: black;
}

.cart-close-v2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-close-v2:hover {
    background: #333;
    transform: rotate(90deg);
}

.cart-items-v2 {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-item-v2 {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.cart-item-image-v2 {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    background: white;
}

.cart-item-info-v2 {
    flex: 1;
}

.cart-item-name-v2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.5rem;
}

.cart-item-type-v2 {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.cart-item-price-v2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: black;
}

.cart-item-remove-v2 {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-item-remove-v2:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

.cart-empty-v2 {
    padding: 4rem 2rem;
    text-align: center;
}

.cart-empty-v2 i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.cart-empty-v2 p {
    font-size: 1.25rem;
    color: #666;
}

.cart-footer-v2 {
    padding: 2rem;
    border-top: 2px solid #f0f0f0;
}

.cart-total-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: black;
}

.btn-checkout-v2 {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    background: black;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-checkout-v2:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Modal Commande */
.order-modal-v2 {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.order-modal-v2.active {
    display: block;
}

.order-modal-overlay-v2 {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(15px);
}

.order-modal-content-v2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 25px;
    padding: 3rem;
    max-height: 90vh;
    overflow-y: auto;
}

.order-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.order-header-v2 h2 {
    font-size: 2rem;
    font-weight: 800;
    color: black;
}

.order-info-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid black;
}

.order-info-icon {
    font-size: 3rem;
    line-height: 1;
}

.order-info-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: black;
    margin-bottom: 0.25rem;
}

.order-info-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.order-close-v2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.order-close-v2:hover {
    background: #333;
    transform: rotate(90deg);
}

.order-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-v2 label {
    font-size: 1rem;
    font-weight: 700;
    color: black;
}

.form-group-v2 input,
.form-group-v2 textarea {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group-v2 input:focus,
.form-group-v2 textarea:focus {
    outline: none;
    border-color: black;
}

.btn-submit-order-v2 {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    background: black;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
}

.btn-submit-order-v2:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Modal Vidéo */
.video-modal-v2 {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
}

.video-modal-v2.active {
    display: block;
}

.video-modal-overlay-v2 {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
}

.video-modal-content-v2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
}

.video-close-v2 {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-close-v2:hover {
    background: #f0f0f0;
    transform: rotate(90deg) scale(1.1);
}

#videoContainer {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: black;
}

#videoContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-menu-v2 {
        height: 35vh;
    }
    
    .hero-content-v2 h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-v2 p {
        font-size: 1rem;
    }
    
    .menu-filters-v2 {
        padding: 1.5rem 0;
        position: relative;
    }
    
    .container-fluid {
        padding: 0 1rem;
    }
    
    .search-bar-v2 {
        margin-bottom: 1.5rem;
    }
    
    .search-bar-v2 input {
        padding: 1rem 3rem 1rem 1rem;
        font-size: 1rem;
    }
    
    .category-filters-v2 {
        gap: 0.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .cat-btn-v2 {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    
    .menu-products-v2 {
        padding: 2rem 0 6rem;
    }
    
    .category-title-v2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .products-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image-v2 {
        height: 300px;
    }
    
    .product-info-v2 {
        padding: 1.5rem;
    }
    
    .product-info-v2 h3 {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 1.25rem;
    }
    
    .add-to-cart-v2 {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .cart-toggle-v2 {
        width: 60px;
        height: 60px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .cart-toggle-v2 i {
        font-size: 1.5rem;
    }
    
    .cart-count-v2 {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .cart-modal-content-v2 {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
    }
    
    .cart-header-v2 {
        padding: 1.5rem;
    }
    
    .cart-header-v2 h2 {
        font-size: 1.5rem;
    }
    
    .cart-items-v2 {
        padding: 1.5rem;
    }
    
    .cart-item-v2 {
        padding: 1rem;
    }
    
    .cart-footer-v2 {
        padding: 1.5rem;
    }
    
    .cart-total-v2 {
        font-size: 1.25rem;
    }
    
    .btn-checkout-v2 {
        padding: 1.25rem;
        font-size: 1.125rem;
    }
    
    .order-modal-content-v2 {
        padding: 1.5rem;
        width: 95%;
        max-height: 95vh;
    }
    
    .order-header-v2 {
        margin-bottom: 1.5rem;
    }
    
    .order-header-v2 h2 {
        font-size: 1.5rem;
    }
    
    .order-info-banner {
        padding: 1rem;
        gap: 1rem;
    }
    
    .order-info-icon {
        font-size: 2.5rem;
    }
    
    .order-info-text strong {
        font-size: 1.125rem;
    }
    
    .order-info-text p {
        font-size: 0.875rem;
    }
    
    .form-group-v2 input,
    .form-group-v2 textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .btn-submit-order-v2 {
        padding: 1.25rem;
        font-size: 1.125rem;
    }
    
    .video-close-v2 {
        top: 10px;
        right: 10px;
    }
}
/* ========================================
   PAGE GALERIE - DESIGN QUI PÈTE
   ======================================== */

/* Hero Galerie */
.hero-galerie {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/wp-content/uploads/2025/11/IMG_0047-scaled.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-galerie::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ffffff" opacity="0.05" width="1200" height="600"/><circle cx="200" cy="100" r="100" fill="%23ffffff" opacity="0.03"/><circle cx="800" cy="400" r="150" fill="%23ffffff" opacity="0.03"/></svg>') center/cover;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content-galerie {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content-galerie h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-content-galerie p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
}

/* Filtres */
.galerie-filters {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

.galerie-filters .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: white;
    color: black;
    border: 2px solid black;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    background: black;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.filter-btn.active {
    background: black;
    color: white;
}

.filter-btn span {
    display: inline-block;
}

/* Grille galerie */
.galerie-grid-section {
    padding: 5rem 0;
    background: #fafafa;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .galerie-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Item galerie */
.gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-item-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.gallery-item-inner:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    margin-bottom: 1rem;
}

.gallery-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.gallery-zoom {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item-inner:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-zoom:hover {
    background: black;
    color: white;
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.lightbox.active {
    display: block;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: black;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #f0f0f0;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    text-align: center;
    margin-top: 2rem;
    color: white;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Message vide */
.no-gallery-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    color: #999;
}

.no-gallery-items i {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.3;
}

.no-gallery-items p {
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-galerie {
        height: 40vh;
    }
    
    .galerie-filters {
        padding: 2rem 0;
    }
    
    .filter-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .galerie-grid-section {
        padding: 3rem 0;
    }
    
    .lightbox-content {
        padding: 2rem 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
}
/* ========================================
   PAGE RÉSERVATION
   ======================================== */

/* Hero Réservation */
.hero-reservation {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: black;
}

.hero-video-reservation {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay-reservation {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content-reservation {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content-reservation h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-content-reservation p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    opacity: 0.9;
}

/* Section formulaire */
.reservation-form-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fafafa 0%, white 100%);
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 60px rgba(0,0,0,0.1);
}

/* Bannière info */
.reservation-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border-left: 5px solid black;
}

.banner-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.banner-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: black;
}

.banner-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Formulaire */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

.form-group label {
    font-size: 1rem;
    font-weight: 700;
    color: black;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

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

/* Bouton submit */
.submit-reservation-btn {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 800;
    background: black;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.submit-reservation-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.submit-reservation-btn:active {
    transform: translateY(0);
}

.submit-reservation-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Messages */
.reservation-message {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.reservation-message.success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
}

.reservation-message.error {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
}

.reservation-message i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.reservation-message.success i {
    color: #4caf50;
}

.reservation-message.error i {
    color: #f44336;
}

.reservation-message h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.reservation-message p {
    font-size: 1.125rem;
    color: #666;
}

/* Informations pratiques */
.reservation-info {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .reservation-info {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.info-card i {
    font-size: 3rem;
    color: black;
    margin-bottom: 1.5rem;
}

.info-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: black;
}

.info-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-reservation {
        height: 50vh;
        min-height: 400px;
    }
    
    .reservation-form-section {
        padding: 3rem 0;
    }
    
    .reservation-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .reservation-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .submit-reservation-btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }
}


/* ========================================
   MENU NAVIGATION ACTIVE STATE
   ======================================== */

/* Menu link actif - COULEUR BOIS */
.nav-link.active {
    color: var(--color-wood) !important;
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
    background: var(--color-wood);
}

/* Quand header scrollé, menu actif reste bois */
.site-header.scrolled .nav-link.active {
    color: var(--color-wood) !important;
}

/* Mobile menu actif */
.mobile-nav-link.active {
    color: var(--color-wood);
    font-weight: 700;
}

/* === OVERRIDE ASTRA THEME === */

/* Fix bouton bleu hover Astra */
button:focus, 
.menu-toggle:hover, 
button:hover, 
.ast-button:hover, 
.ast-custom-button:hover,
.button:hover, 
.ast-custom-button:hover, 
input[type=reset]:hover, 
input[type=reset]:focus, 
input#submit:hover, 
input#submit:focus, 
input[type="button"]:hover, 
input[type="button"]:focus, 
input[type="submit"]:hover, 
input[type="submit"]:focus {
    background-color: transparent !important;
    border-color: transparent !important;
    color: inherit !important;
}

/* Force btn-primary background CONTRE ASTRA */
a.btn-primary,
.btn-primary {
    background-color: #000000 !important;
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
}

a.btn-primary:hover,
.btn-primary:hover {
    background-color: #000000 !important;
    background: #000000 !important;
    color: #ffffff !important;
}

/* Fix outline bleu burger */
.mobile-menu-btn:focus,
.mobile-menu-btn:hover,
button#mobile-menu-btn:focus,
button#mobile-menu-btn:hover {
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border-color: transparent !important;
}

/* Fix scroll-to-top */
#ast-scroll-top {
    background-color: var(--color-wood) !important;
    left: 20px !important;
    right: auto !important;
}

/* Fix collect mobile layout */
@media (max-width: 768px) {
    .collect-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .collect-image {
        order: -1 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .collect-image img {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .collect-content {
        text-align: center !important;
    }
    
    /* Footer mobile centré */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .footer-column {
        text-align: center !important;
    }
    
    .footer-column * {
        text-align: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
