/* ================================
   MEAT MARKET - Design Premium Pro
   ================================ */

/* ===== Variables - Palette Harmonisée ===== */
:root {
    /* Couleurs primaires - Raffinées */
    --primary: #b91c38;
    --primary-dark: #8a1528;
    --primary-light: #fdf2f3;
    --primary-glow: rgba(185, 28, 56, 0.18);
    --primary-soft: #e8d0d4;
    
    /* Couleurs secondaires */
    --secondary: #1a1a1a;
    --secondary-soft: #2a2a2a;
    --gold: #c9a87c;
    --gold-light: #e8dcc8;
    
    /* Textes - Hiérarchie claire */
    --text: #242424;
    --text-light: #707070;
    --text-muted: #9a9a9a;
    
    /* Fonds - Nuances chaleureuses */
    --bg-cream: #faf8f6;
    --bg-warm: #f6f3f0;
    --bg-dark: #121212;
    --white: #ffffff;
    
    /* Typographie */
    --font-primary: 'Poppins', -apple-system, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Ombres - Plus subtiles */
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-medium: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-strong: 0 24px 60px rgba(0,0,0,0.12);
    --shadow-glow: 0 8px 30px rgba(185, 28, 56, 0.12);
    
    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Espacements */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
}

/* ===== Scroll Reveal Animations ===== */
@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);
    }
}

/* Hero Entry Animations */
@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(15deg);
        filter: blur(10px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes archGrow {
    0% {
        transform: translateX(-50%) scaleY(0);
        opacity: 0;
    }
    100% {
        transform: translateX(-50%) scaleY(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Reveal Base Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children > *:nth-child(5) { transition-delay: 400ms; }
.stagger-children > *:nth-child(6) { transition-delay: 500ms; }
.stagger-children > *:nth-child(7) { transition-delay: 600ms; }
.stagger-children > *:nth-child(8) { transition-delay: 700ms; }
.stagger-children > *:nth-child(9) { transition-delay: 800ms; }

/* Parallax subtle */
.parallax-slow {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Float animation for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

/* Hover lift effect */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease;
}

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

/* Page Load Animation - Désactivé pour éviter page blanche */
body {
    opacity: 1;
}

body.loaded {
    opacity: 1;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* Supprimer tout espace entre sections */
main {
    margin: 0;
    padding: 0;
}

/* Selection style */
::selection {
    background: var(--primary);
    color: var(--white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
    list-style-type: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--primary);
}

/* ===== Navigation Clean & Minimal ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo-img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    opacity: 0.9;
}

.navbar.scrolled .logo {
    color: var(--secondary);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a,
.nav-menu .nav-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.02em;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--secondary);
}

.nav-menu .nav-link.active {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.navbar.scrolled .nav-menu a,
.navbar.scrolled .nav-menu .nav-link {
    color: var(--text);
}

.navbar.scrolled .nav-menu .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--secondary);
}

.navbar.scrolled .nav-menu .nav-link.active {
    background: var(--primary);
    color: var(--white);
}

/* Hamburger Menu Clean */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .nav-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--text);
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Nav Icons Clean */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icons .nav-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-icons .nav-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
    filter: blur(8px);
}

.nav-icons .nav-icon:hover::before {
    opacity: 0.4;
}

.navbar.scrolled .nav-icon {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.nav-icon:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Hero Premium ===== */

/* Badge Halal - Cercle vert fixé en bas à droite */
.halal-badge-quality {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 999;
}

.halal-badge-inner {
    padding: 0;
    gap: 0;
    background: linear-gradient(145deg, #22a85b 0%, #198b48 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(25, 139, 72, 0.4),
                inset 0 1px 0 rgba(255,255,255,0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.halal-badge-inner:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(25, 139, 72, 0.5);
}

.halal-badge-inner::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.halal-badge-inner > i {
    display: none;
}

.halal-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.halal-badge-quality .halal-arabic {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    line-height: 1;
}

.halal-badge-quality .halal-text {
    font-size: 0.42rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Ancien badge halal pour rétrocompatibilité */
.halal-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, #1a6b1a 0%, #0f4a0f 100%);
    border-radius: 50%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(26, 107, 26, 0.3);
}

.halal-badge::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1.5px solid rgba(201, 168, 124, 0.5);
    border-radius: 50%;
}

.halal-arabic {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.halal-text {
    font-size: 0.42rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.8px;
    margin-top: 1px;
    text-transform: uppercase;
}

.hero-split {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(165deg, #fefcfb 0%, #faf6f4 25%, #f7efec 50%, #f3e8e4 80%, #eee0db 100%);
    padding-top: 60px;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: hidden;
}

.hero-split::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(185, 28, 56, 0.06) 0%, rgba(185, 28, 56, 0.02) 40%, transparent 65%);
    border-radius: 50%;
    animation: floatSlow 12s ease-in-out infinite;
}

.hero-split::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.1) 0%, rgba(201, 168, 124, 0.03) 50%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

/* Décoration du haut du hero */
.hero-top-decoration {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 20;
    opacity: 0;
    animation: fadeInDown 1s ease 0.5s forwards;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(201, 168, 124, 0.15);
}

.hero-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

.hero-top-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Décorations géométriques */
.hero-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.hero-decoration-1 {
    top: 18%;
    left: 4%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(201, 168, 124, 0.05);
    border-radius: 50%;
    animation: rotateSlow 50s linear infinite;
}

.hero-decoration-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border: 1px solid rgba(185, 28, 56, 0.03);
    border-radius: 50%;
    border-radius: 50%;
}

.hero-decoration-2 {
    top: 22%;
    right: 4%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(201, 168, 124, 0.05);
    border-radius: 50%;
    animation: rotateSlow 50s linear infinite reverse;
}

.hero-decoration-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(185, 28, 56, 0.03);
    border-radius: 50%;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Particules flottantes améliorées */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.hero-particles .particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(201, 168, 124, 0.5);
}

.hero-particles .particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.hero-particles .particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 35%;
    right: 18%;
    animation-delay: 1s;
}

.hero-particles .particle:nth-child(3) {
    width: 7px;
    height: 7px;
    top: 55%;
    left: 8%;
    animation-delay: 2s;
}

.hero-particles .particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 25%;
    right: 10%;
    animation-delay: 3s;
}

.hero-particles .particle:nth-child(5) {
    width: 6px;
    height: 6px;
    bottom: 35%;
    left: 15%;
    animation-delay: 1.5s;
}

.hero-particles .particle:nth-child(6) {
    width: 7px;
    height: 7px;
    bottom: 28%;
    right: 12%;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    15% {
        opacity: 0.8;
        transform: translateY(-8px) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translateY(-20px) scale(1.1);
    }
    85% {
        opacity: 0.6;
        transform: translateY(-30px) scale(0.9);
    }
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -12px) scale(1.02); }
}

/* Tagline élégante */
.hero-tagline {
    position: fixed;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInTagline 1.2s ease 0.8s forwards;
    z-index: 100;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 18px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.hero-tagline::before,
.hero-tagline::after {
    content: '•';
    margin: 0 8px;
    opacity: 0.4;
    font-size: 0.4rem;
    vertical-align: middle;
}

@keyframes fadeInTagline {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Scroll indicator animé */
.hero-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 30;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
}

.scroll-line {
    width: 2px;
    height: 45px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 168, 124, 0.3) 100%);
    position: relative;
    border-radius: 2px;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        top: 0;
        opacity: 1;
    }
    50% {
        top: 40px;
        opacity: 0.3;
    }
}

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

.hero-arch-back {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 580px;
    height: 78%;
    max-height: 680px;
    background: linear-gradient(180deg, rgba(240, 210, 202, 0.35) 0%, rgba(235, 195, 185, 0.55) 60%, rgba(230, 185, 175, 0.65) 100%);
    border-radius: 290px 290px 0 0;
    z-index: 0;
    transform-origin: bottom center;
    animation: archGrow 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow: 0 0 120px rgba(185, 28, 56, 0.04);
}

.hero-arch {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 72%;
    max-height: 600px;
    background: linear-gradient(180deg, rgba(252, 240, 238, 0.7) 0%, rgba(250, 228, 222, 0.85) 50%, rgba(248, 218, 210, 0.92) 100%);
    border-radius: 240px 240px 0 0;
    z-index: 1;
    box-shadow: 
        0 0 80px rgba(185, 28, 56, 0.06) inset,
        0 -20px 60px rgba(201, 168, 124, 0.08),
        0 0 0 1px rgba(201, 168, 124, 0.08);
    transform-origin: bottom center;
    animation: archGrow 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
    opacity: 0;
}

.hero-arch::after {
    display: none;
}

.hero-arch::before {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    max-width: 1100px;
    width: 100%;
    height: 100%;
    padding: 0 24px;
    padding-bottom: 0;
}

/* Textes flottants */
.hero-floating-texts {
    position: absolute;
    width: 100%;
    max-width: 1450px;
    height: auto;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    pointer-events: none;
    padding: 0 60px;
}

.floating-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 5.8rem;
    font-weight: 700;
    letter-spacing: -3px;
    white-space: nowrap;
    opacity: 0;
    animation: heroTextReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: transform, opacity;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
}

/* Disposition asymétrique avec stagger */
.float-1 {
    bottom: 90px;
    left: 0;
    animation-delay: 0.3s;
}

.float-2 {
    bottom: 0;
    left: 0;
    animation-delay: 0.5s;
}

.float-3 {
    bottom: 90px;
    right: 0;
    animation-delay: 0.4s;
}

.float-4 {
    bottom: 0;
    right: 0;
    animation-delay: 0.6s;
}

/* Suppression des animations pour un look plus pro */
@keyframes floatGentle1 {
    0%, 100% { transform: translate(0, 0); }
}

@keyframes floatGentle2 {
    0%, 100% { transform: translate(0, 0); }
}

@keyframes floatGentle3 {
    0%, 100% { transform: translate(0, 0); }
}

@keyframes floatGentle4 {
    0%, 100% { transform: translate(0, 0); }
}

.hero-text-left,
.hero-text-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 130px;
}

.hero-text-left {
    text-align: right;
    padding-right: 28px;
    align-items: flex-end;
}

.hero-text-right {
    text-align: left;
    padding-left: 28px;
    align-items: flex-start;
}

.hero-text-left span,
.hero-text-right span {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.2px;
    display: block;
}

/* Décalages fixes */
.hero-text-left .hero-text-offset-right {
    margin-left: 55px;
}

.hero-text-left .hero-text-offset-left {
    margin-left: -15px;
}

.hero-text-right .hero-text-offset-left {
    margin-left: -35px;
}

.hero-text-right .hero-text-offset-right {
    margin-left: 45px;
}

.text-red {
    color: var(--primary);
    font-style: italic;
    text-shadow: 
        0 4px 30px var(--primary-glow),
        0 0 60px rgba(185, 28, 56, 0.15);
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2.5px rgba(50, 50, 50, 0.6);
    text-stroke: 2.5px rgba(50, 50, 50, 0.6);
    transition: all 0.4s ease;
}

.text-outline:hover {
    -webkit-text-stroke-color: var(--primary);
    text-stroke-color: var(--primary);
}

/* Mobile: texte outline plus visible */
@media (max-width: 768px) {
    .text-outline {
        -webkit-text-stroke: 1.5px rgba(60, 60, 60, 0.55);
        text-stroke: 1.5px rgba(60, 60, 60, 0.55);
    }
    
    .text-red {
        text-shadow: 
            0 2px 15px var(--primary-glow),
            0 0 30px rgba(185, 28, 56, 0.12);
    }
}

@media (max-width: 480px) {
    .text-outline {
        -webkit-text-stroke: 1.3px rgba(50, 50, 50, 0.6);
        text-stroke: 1.3px rgba(50, 50, 50, 0.6);
    }
}

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

.hero-center-image {
    position: relative;
    z-index: 5;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    margin-bottom: -15px;
    animation: heroImageReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
    opacity: 0;
}

.hero-center-image img {
    max-height: 650px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2))
           drop-shadow(0 15px 30px rgba(185, 28, 56, 0.1));
    display: block;
    margin: 0 auto;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-center-image:hover img {
    transform: scale(1.02) translateY(-5px);
}

.hero-placeholder-person {
    width: 280px;
    height: 480px;
    background: linear-gradient(180deg, #e5e5e5 0%, #c8c8c8 100%);
    border-radius: 140px 140px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
}

.hero-placeholder-modern {
    width: 240px;
    height: 360px;
    background: linear-gradient(180deg, var(--primary-light) 0%, #f6d8d2 50%, #edc8c2 100%);
    border-radius: 120px 120px 22px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 24px 60px rgba(185, 28, 56, 0.15),
        0 8px 24px rgba(0,0,0,0.08);
    animation: heroFloat 5s ease-in-out infinite;
}

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

.placeholder-icon {
    width: 110px;
    height: 110px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.placeholder-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.8rem;
    animation: bounce 2.5s infinite;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
}

.hero-scroll-indicator i {
    font-size: 1.1rem;
    color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== Section Qualité ===== */
.quality-section {
    background: linear-gradient(180deg, #0f0f0f 0%, #141414 50%, #0f0f0f 100%);
    padding: 50px 0 65px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Masquer quality-scroll-indicator sur desktop */
.quality-scroll-indicator {
    display: none;
}

/* ===== Section CTA Boutons ===== */
.cta-buttons-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #f5ebe6 100%);
    padding: 30px 20px 35px;
    text-align: center;
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

/* CTA dans la section qualité (fond noir) */
.quality-cta {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(201, 168, 124, 0.15);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: scale(1.15);
}

.cta-btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(185, 28, 56, 0.3);
}

.cta-btn-primary:hover {
    background: #a01830;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(185, 28, 56, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-secondary:hover {
    background: var(--gold);
    color: #0f0f0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 124, 0.3);
}

/* Mobile CTA */
@media (max-width: 768px) {
    .cta-buttons-section {
        padding: 20px 15px 25px;
    }
    
    .cta-buttons-container {
        gap: 12px;
    }
    
    .cta-btn {
        padding: 12px 22px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .cta-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .cta-buttons-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .quality-cta {
        margin-bottom: 80px;
    }
}

/* Motif décoratif subtil */
.quality-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(185, 28, 56, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.quality-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 124, 0.2), transparent);
}

.quality-content {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.quality-title-mockup {
    color: #fff;
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.4;
    max-width: 650px;
    margin: 0 auto 14px;
    letter-spacing: -0.02em;
}
.quality-subtitle {
    color: rgba(255,255,255,0.35);
    font-size: 0.92rem;
    margin: 0;
    letter-spacing: 0.03em;
    font-weight: 400;
}
.quality-meats-mockup {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary);
    text-stroke: 1.5px var(--primary);
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: 0.02em;
    position: relative;
    transition: all 0.4s ease;
}

.quality-meats-mockup:hover {
    -webkit-text-stroke-width: 2px;
    text-shadow: 0 0 30px rgba(185, 28, 56, 0.3);
}

.quality-meats-mockup::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--gold), var(--primary), transparent);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
    opacity: 0.7;
}

.categories-row-mockup {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.category-mockup {
    background: linear-gradient(180deg, #1a1a1a 0%, #151515 100%);
    border-radius: 28px 28px 24px 24px;
    padding: 28px 26px 18px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 130px;
    min-height: 170px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.25),
        0 0 0 1px rgba(255,255,255,0.03);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}

/* Effet de brillance au hover */
.category-mockup::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.category-mockup::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-mockup:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.4),
        0 0 0 1px rgba(201, 168, 124, 0.15),
        0 0 40px rgba(185, 28, 56, 0.1);
    border-color: rgba(201, 168, 124, 0.2);
}

.category-mockup:hover::before {
    opacity: 1;
}

.category-mockup:hover::after {
    transform: scaleX(1);
}

.category-img-mockup {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.category-img-mockup::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary), var(--gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-mockup:hover .category-img-mockup {
    transform: scale(1.1) rotate(5deg);
}

.category-mockup:hover .category-img-mockup::after {
    opacity: 1;
}

.category-img-mockup img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.category-mockup:hover .category-img-mockup img {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(185, 28, 56, 0.3));
}

.category-mockup span {
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    font-weight: 500;
    margin-top: 6px;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.category-mockup:hover span {
    color: var(--gold);
}

/* Catégorie sélectionnée - style rouge au clic */
.category-mockup.selected {
    background: linear-gradient(180deg, var(--primary) 0%, #8a1528 60%, #1a1a1a 100%);
    box-shadow: 
        0 20px 50px rgba(185, 28, 56, 0.5),
        0 0 0 1px rgba(201, 168, 124, 0.3),
        0 0 60px rgba(185, 28, 56, 0.2);
    transform: translateY(-12px) scale(1.08);
    border-color: rgba(201, 168, 124, 0.4);
}

.category-mockup.selected::after {
    transform: scaleX(1);
}

.category-mockup.selected .category-img-mockup {
    box-shadow: 0 8px 30px rgba(185, 28, 56, 0.4);
    transform: scale(1.1);
}

.category-mockup.selected span {
    color: var(--gold);
}

/* Texte de description élégant */
.category-description-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-description-text.active {
    max-height: 150px;
    opacity: 1;
    margin-top: 32px;
}

.category-description-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
    padding: 0 50px;
    position: relative;
    display: inline-block;
}

.category-description-text p::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.7;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: Georgia, serif;
}

.category-description-text p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.7;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: Georgia, serif;
}

/* ===== Section Produits Compacte ===== */
.products-section-compact {
    padding: 40px 0;
    background: var(--bg-cream);
}

.section-title-small {
    text-align: center;
    margin-bottom: 25px;
}

.section-title-small h2 {
    font-size: 1.5rem;
}

.products-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.product-card-compact {
    text-align: center;
    padding: 15px;
    background: var(--white);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-card-compact:hover {
    transform: translateY(-3px);
}

.product-img-compact {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
}

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

.product-placeholder-compact {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 10px;
}

.product-card-compact h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
}

/* ===== Section Avis Premium ===== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffe8e8 100%);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    box-shadow: 0 3px 12px rgba(196, 30, 58, 0.12);
}

.testimonials-header h2 {
    font-size: 2rem;
    background: linear-gradient(90deg, #b91c38 0%, #b91c38 60%, #4a6fa5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.testimonials-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 32px 26px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    overflow: visible;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--primary-light);
    line-height: 1;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 20px;
    margin-top: 12px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.author-name {
    display: block;
    font-weight: 700;
    color: #1a1a1a !important;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center;
    position: relative;
}

.author-name::before {
    content: '—';
    margin-right: 8px;
    color: var(--primary);
    font-weight: 400;
}

/* ===== Section Contact Premium ===== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.3), transparent);
}

.contact-header {
    text-align: center;
    margin-bottom: 45px;
}

.contact-header h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    letter-spacing: -0.4px;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 950px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-card {
    text-align: center;
    padding: 45px 30px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(185, 28, 56, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.1),
        0 5px 20px rgba(185, 28, 56, 0.08);
}

.contact-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s ease-in-out infinite;
}

.contact-card:hover::after {
    opacity: 1;
}

.contact-card-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.06),
        0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.contact-card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary), var(--gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(185, 28, 56, 0.15),
        0 5px 15px rgba(0,0,0,0.08);
}

.contact-card:hover .contact-card-icon::after {
    opacity: 1;
}

.contact-card-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.contact-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

.hours-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hours-compact span {
    font-size: 0.88rem;
}

.contact-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px var(--primary-glow);
    letter-spacing: 0.2px;
}

.contact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(196, 30, 58, 0.35);
}

/* Legacy contact styles */
.contact-grid-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-simple h3,
.hours-simple h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-info-simple p {
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-simple i {
    color: var(--primary);
    width: 20px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hour-row:last-child {
    border-bottom: none;
}

/* ===== Footer Premium ===== */
.footer-simple {
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 50%, #050505 100%);
    padding: 65px 0 40px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

.footer-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 124, 0.3), rgba(196, 30, 58, 0.3), rgba(201, 168, 124, 0.3), transparent);
}

/* Motif décoratif footer */
.footer-simple::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 28, 56, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.footer-content {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-simple .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    transition: all 0.4s ease;
}

.footer-simple .footer-logo:hover {
    transform: scale(1.05);
}

.footer-simple .logo-icon {
    font-size: 1.7rem;
    filter: drop-shadow(0 0 10px rgba(185, 28, 56, 0.3));
}

.footer-simple .logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
}

.footer-tagline {
    font-size: 0.88rem;
    margin-bottom: 25px;
    opacity: 0.45;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.footer-tagline::before,
.footer-tagline::after {
    content: '—';
    margin: 0 12px;
    opacity: 0.3;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.footer-contact span {
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

.footer-contact span:hover {
    color: var(--white);
}

.footer-contact i {
    margin-right: 8px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-contact span:hover i {
    color: var(--primary);
    transform: scale(1.2);
}

.footer-simple .social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 25px;
}

.footer-simple .social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.footer-simple .social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-simple .social-links a i {
    position: relative;
    z-index: 1;
}

.footer-simple .social-links a:hover {
    border-color: transparent;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 10px 25px rgba(185, 28, 56, 0.3),
        0 0 20px rgba(201, 168, 124, 0.2);
}

.footer-simple .social-links a:hover::before {
    opacity: 1;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.3;
    letter-spacing: 0.3px;
    margin-top: 10px;
}

/* ===== Messages Flash ===== */
.messages-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.alert {
    padding: 15px 40px 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

.alert-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== Responsive Design Pro ===== */

/* Tablettes paysage et petits écrans */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-split {
        min-height: 70vh;
    }
    
    .floating-text {
        font-size: 2.8rem;
    }
    
    .hero-arch-back {
        width: 340px;
        height: 60%;
        max-height: 420px;
    }
    
    .hero-arch {
        width: 290px;
        height: 55%;
        max-height: 380px;
    }
    
    .hero-center-image {
        max-width: 300px;
        max-height: 350px;
    }
    
    .hero-center-image img {
        max-height: 340px;
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .contact-grid-modern {
        gap: 20px;
    }
}

/* Tablettes portrait */
@media (max-width: 900px) {
    .floating-text {
        font-size: 3rem;
    }
    
    .float-1, .float-3 {
        top: 15%;
    }
    
    .float-2, .float-4 {
        top: 28%;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .contact-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .contact-card:last-child {
        grid-column: span 2;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Mobiles grands écrans */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* Navbar Mobile - Clean Design */
    .navbar {
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 8px;
        color: var(--secondary);
    }
    
    .logo-img {
        max-height: 30px;
    }
    
    .logo-icon {
        font-size: 1.2rem;
    }
    
    .nav-icons .nav-icon {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    
    /* Mobile Menu Toggle */
    .nav-toggle {
        display: block;
        order: 3;
    }
    
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        background: var(--text);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 90px 20px 30px;
        gap: 6px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        list-style: none;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a,
    .nav-menu .nav-link {
        display: block;
        padding: 14px 18px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text);
        border-radius: 10px;
        background: transparent;
        transition: all 0.2s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(0, 0, 0, 0.04);
        color: var(--secondary);
    }
    
    .nav-menu .nav-link.active {
        background: var(--primary);
        color: var(--white);
        font-weight: 600;
    }
    
    .nav-icons {
        order: 2;
    }
    
    /* Hero Mobile - REFONTE COMPLETE */
    .hero-split {
        min-height: auto;
        max-height: none;
        height: auto;
        padding-top: 55px;
        padding-bottom: 35px;
        align-items: flex-end;
        overflow: visible;
        position: relative;
    }
    
    /* Cacher certains éléments desktop sur mobile */
    .hero-split::before,
    .hero-split::after,
    .hero-decoration,
    .hero-tagline,
    .hero-top-decoration {
        display: none !important;
    }
    
    /* Particules DORÉES comme sur desktop */
    .hero-particles {
        display: block !important;
        z-index: 20;
    }
    
    .hero-particles .particle {
        width: 6px !important;
        height: 6px !important;
        background: var(--gold) !important;
        box-shadow: 0 0 8px rgba(201, 168, 124, 0.6) !important;
    }
    
    /* Repositionner les particules pour mobile - gauche ET droite */
    .hero-particles .particle:nth-child(1) {
        top: 30% !important;
        left: 6% !important;
        right: auto !important;
    }
    
    .hero-particles .particle:nth-child(2) {
        top: 28% !important;
        right: 6% !important;
        left: auto !important;
    }
    
    .hero-particles .particle:nth-child(3) {
        top: 45% !important;
        left: 4% !important;
        right: auto !important;
    }
    
    .hero-particles .particle:nth-child(4) {
        top: 42% !important;
        right: 5% !important;
        left: auto !important;
    }
    
    .hero-particles .particle:nth-child(5) {
        top: 58% !important;
        left: 8% !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .hero-particles .particle:nth-child(6) {
        top: 55% !important;
        right: 7% !important;
        left: auto !important;
        bottom: auto !important;
    }
    
    /* Scroll indicator masqué sur mobile (on utilise celui de quality-section) */
    .hero-scroll-indicator {
        display: none !important;
    }
    
    /* Scroll indicator dans section qualité - style PC */
    .quality-scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-top: 30px;
        margin-bottom: 0;
        height: 60px;
        overflow: hidden;
        transition: height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
    }
    
    .quality-scroll-indicator.hidden {
        height: 0;
        margin-top: 0;
        opacity: 0;
    }
    
    .quality-scroll-indicator .scroll-text {
        font-family: var(--font-heading);
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
    }
    
    .quality-scroll-indicator .scroll-line {
        width: 2px;
        height: 35px;
        background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 168, 124, 0.3) 100%);
        position: relative;
        border-radius: 2px;
    }
    
    .quality-scroll-indicator .scroll-dot {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 5px;
        background: var(--primary);
        border-radius: 50%;
        animation: scrollBounce 2s ease-in-out infinite;
    }
    
    .quality-scroll-indicator.hidden {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }
    
    .hero-container {
        padding: 0 10px;
        min-height: 240px;
        max-height: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        overflow: visible;
        padding-bottom: 0;
        position: relative;
    }
    
    .hero-floating-texts {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
        margin-top: 50px;
        margin-bottom: -80px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0 10px;
        height: auto;
        z-index: 15;
    }
    
    /* ========== LAYOUT 1 : Grille 2x2 (actuel) ========== */
    .hero-split.layout-1 .hero-floating-texts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0 10px;
        margin-bottom: -80px;
    }
    
    /* ========== LAYOUT 2 : Empilé en colonne ========== */
    .hero-split.layout-2 .hero-floating-texts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-top: 15px;
        margin-bottom: -30px;
    }
    .hero-split.layout-2 .floating-text {
        text-align: center;
    }
    .hero-split.layout-2 .float-1 { order: 1; }
    .hero-split.layout-2 .float-2 { order: 2; margin-bottom: 18px; }
    .hero-split.layout-2 .float-3 { order: 3; }
    .hero-split.layout-2 .float-4 { order: 4; }
    
    /* ========== LAYOUT 3 : Côtés de l'image (comme desktop) ========== */
    .hero-split.layout-3 .hero-floating-texts {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 0 8px;
        pointer-events: none;
    }
    .hero-split.layout-3 .float-1,
    .hero-split.layout-3 .float-2 {
        text-align: left;
    }
    .hero-split.layout-3 .float-3,
    .hero-split.layout-3 .float-4 {
        text-align: right;
    }
    .hero-split.layout-3 .hero-container {
        position: relative;
    }
    
    /* ========== LAYOUT 4 : Centré en haut sur 2 lignes ========== */
    .hero-split.layout-4 .hero-floating-texts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 15px;
        margin-bottom: 15px;
    }
    .hero-split.layout-4 .floating-text {
        text-align: center;
    }
    .hero-split.layout-4 .float-1,
    .hero-split.layout-4 .float-2 {
        width: auto;
    }
    .hero-split.layout-4 .float-3,
    .hero-split.layout-4 .float-4 {
        width: auto;
    }
    .hero-split.layout-4 .float-1 { order: 1; }
    .hero-split.layout-4 .float-2 { order: 2; }
    .hero-split.layout-4 .float-3 { order: 3; }
    .hero-split.layout-4 .float-4 { order: 4; }
    
    .floating-text {
        position: relative;
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: -1px;
        line-height: 1.0;
        top: auto !important;
        bottom: auto !important;
        animation: fadeInUp 0.8s ease forwards !important;
        opacity: 0;
        left: auto !important;
        right: auto !important;
        text-shadow: 0 2px 15px rgba(255, 255, 255, 0.8);
    }
    
    .float-1, .float-2 {
        text-align: left;
        justify-self: start;
    }
    
    .float-3, .float-4 {
        text-align: right;
        justify-self: end;
    }
    
    .float-1 {
        grid-column: 1;
        grid-row: 1;
        animation-delay: 0.1s !important;
    }
    
    .float-2 {
        grid-column: 1;
        grid-row: 2;
        animation-delay: 0.3s !important;
    }
    
    .float-3 {
        grid-column: 2;
        grid-row: 1;
        animation-delay: 0.2s !important;
    }
    
    .float-4 {
        grid-column: 2;
        grid-row: 2;
        animation-delay: 0.4s !important;
    }
    
    .hero-arch-back {
        width: 320px;
        height: 300px;
        max-height: 300px;
        border-radius: 160px 160px 0 0;
        animation: archGrow 0.8s ease forwards;
    }
    
    .hero-arch {
        width: 280px;
        height: 270px;
        max-height: 270px;
        border-radius: 140px 140px 0 0;
        animation: archGrow 0.7s ease 0.1s forwards;
        opacity: 0;
    }
    
    .hero-arch::after {
        display: none;
    }
    
    .hero-center-image {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0;
        margin-top: 0;
        position: relative;
        bottom: -30px;
        animation: heroImageReveal 1s ease 0.2s forwards;
        opacity: 0;
        align-self: flex-end;
        z-index: 5;
        display: flex;
        justify-content: center;
    }
    
    .hero-center-image img {
        max-height: 240px;
        max-width: 100%;
        width: auto;
        object-fit: contain;
    }
    
    .hero-placeholder-modern {
        width: 160px;
        height: 220px;
        border-radius: 80px 80px 16px 16px;
    }
    
    .placeholder-icon {
        width: 60px;
        height: 60px;
    }
    
    .placeholder-icon i {
        font-size: 1.6rem;
    }
    
    /* Section Qualité Mobile - REFAIT */
    .quality-section {
        padding: 20px 0 80px;
        overflow: hidden;
        margin-top: 0;
    }
    
    .quality-section::before {
        display: none;
    }
    
    .quality-content {
        margin-bottom: 12px;
    }
    
    .quality-title-mockup {
        font-size: 1.1rem;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    .quality-subtitle {
        font-size: 0.7rem;
        padding: 0 20px;
        margin-top: 4px;
    }
    
    .categories-row-mockup {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 12px;
        padding: 0 12px;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .category-mockup {
        min-width: unset;
        width: 100%;
        min-height: 110px;
        padding: 14px 12px 12px;
        border-radius: 16px 16px 12px 12px;
    }
    
    .category-mockup::before,
    .category-mockup::after {
        display: none;
    }
    
    .category-img-mockup {
        width: 75px;
        height: 75px;
        margin-bottom: 12px;
    }
    
    .category-img-mockup::after {
        display: none;
    }
    
    .category-img-mockup img {
        width: 65px;
        height: 65px;
    }
    
    .category-mockup span {
        font-size: 0.88rem;
        font-weight: 500;
    }
    
    /* Description catégorie mobile */
    .category-description-text {
        margin-top: 0;
        padding: 0 15px;
    }
    
    .category-description-text.active {
        max-height: 200px;
        margin-top: 25px;
    }
    
    .category-description-text p {
        font-size: 0.92rem;
        padding: 0 35px;
        line-height: 1.7;
    }
    
    .category-description-text p::before,
    .category-description-text p::after {
        font-size: 1.5rem;
    }
    
    .category-description-text p::before {
        left: 10px;
    }
    
    .category-description-text p::after {
        right: 10px;
    }
    
    /* Halal Badge Mobile - Cercle vert fixé en bas à droite */
    .halal-badge-quality {
        position: fixed;
        bottom: 85px;
        right: 20px;
        top: auto;
        z-index: 999;
    }
    
    .halal-badge-inner {
        width: 50px;
        height: 50px;
    }
    
    .halal-badge-inner::before {
        inset: 3px;
    }
    
    .halal-badge-quality .halal-arabic {
        font-size: 0.95rem;
    }
    
    .halal-badge-quality .halal-text {
        font-size: 0.38rem;
        margin-top: 1px;
    }
    
    .halal-badge {
        bottom: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }
    
    .halal-arabic {
        font-size: 0.8rem;
    }
    
    .halal-text {
        font-size: 0.38rem;
    }
    
    /* Section Témoignages Mobile - REFAIT */
    .testimonials-section {
        padding: 55px 0;
    }
    
    .testimonials-section::before {
        display: none;
    }
    
    .testimonials-header {
        margin-bottom: 32px;
        padding: 0 15px;
    }
    
    .testimonials-header h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .testimonials-subtitle {
        font-size: 0.88rem;
        padding: 0;
        margin-top: 12px;
        line-height: 1.6;
    }
    
    .section-badge {
        font-size: 0.68rem;
        padding: 6px 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 20px;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
        top: 8px;
        left: 14px;
        opacity: 0.4;
    }
    
    .testimonial-card::after {
        height: 3px;
    }
    
    .testimonial-text {
        font-size: 0.92rem;
        line-height: 1.75;
        margin-bottom: 22px;
    }
    
    .testimonial-stars {
        margin-bottom: 18px;
    }
    
    .testimonial-stars i {
        animation: none !important;
    }
    
    .author-name {
        font-size: 0.98rem;
    }
    
    /* Section Contact Mobile - REFAIT */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-header {
        margin-bottom: 28px;
        padding: 0 15px;
    }
    
    .contact-header h2 {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
        max-width: 420px;
        margin: 0 auto;
        align-items: stretch;
    }
    
    .contact-card {
        padding: 28px 20px;
        border-radius: 18px;
        height: auto;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .contact-card:last-child {
        grid-column: span 1;
        max-width: none;
        min-height: 160px;
    }
    
    .contact-card-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 16px;
    }
    
    .contact-card-icon i {
        font-size: 1.25rem;
    }
    
    .contact-card h4 {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .contact-card p {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    
    .hours-compact {
        gap: 5px;
    }
    
    .hours-compact span {
        font-size: 0.85rem;
    }
    
    .contact-cta {
        padding: 11px 22px;
        font-size: 0.8rem;
        margin-top: 15px;
    }
    
    /* Footer Mobile - REFAIT */
    .footer-simple {
        padding: 50px 0 35px;
    }
    
    .footer-simple::after {
        display: none;
    }
    
    .footer-content {
        padding: 0 25px;
    }
    
    .footer-simple .logo-icon {
        font-size: 1.5rem;
    }
    
    .footer-simple .logo-text {
        font-size: 1.15rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .footer-tagline::before,
    .footer-tagline::after {
        display: none;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 12px;
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .footer-contact span i {
        color: var(--gold);
    }
    
    .footer-simple .social-links {
        gap: 14px;
        margin-bottom: 20px;
    }
    
    .footer-simple .social-links a {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
    
    .footer-simple .social-links a::before {
        display: none;
    }
    
    .copyright {
        font-size: 0.78rem;
    }
}

/* Mobiles standards (iPhone, Samsung, etc.) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Navbar Petit Mobile */
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1rem;
        gap: 6px;
    }
    
    .logo-img {
        max-height: 26px;
    }
    
    .logo-icon {
        font-size: 1.1rem;
    }
    
    .nav-icons .nav-icon {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    
    /* Hero Petit Mobile - TOTALEMENT REFAIT */
    .hero-split {
        min-height: auto;
        height: auto;
        padding-top: 60px;
        padding-bottom: 0;
        align-items: flex-end;
        overflow: hidden;
    }
    
    .hero-container {
        min-height: 55vh;
        padding: 0 10px;
        justify-content: flex-start;
    }
    
    .hero-floating-texts {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        padding: 25px 5px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 6px 12px;
        height: auto;
    }
    
    .floating-text {
        position: relative;
        font-size: 1.9rem;
        letter-spacing: -0.8px;
        line-height: 1.05;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .float-1 {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
        justify-self: start;
    }
    
    .float-2 {
        grid-column: 1;
        grid-row: 2;
        text-align: left;
        justify-self: start;
    }
    
    .float-3 {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
        justify-self: end;
    }
    
    .float-4 {
        grid-column: 2;
        grid-row: 2;
        text-align: right;
        justify-self: end;
    }
    
    .hero-arch-back {
        width: 280px;
        height: 230px;
        max-height: 230px;
        border-radius: 140px 140px 0 0;
    }
    
    .hero-arch {
        width: 245px;
        height: 200px;
        max-height: 200px;
        border-radius: 122px 122px 0 0;
    }
    
    .hero-center-image {
        max-width: 320px;
        margin-bottom: 0;
        margin-top: 50px;
        align-self: flex-end;
    }
    
    .hero-center-image img {
        max-height: 230px;
        max-width: 100%;
        width: auto;
    }
    
    .hero-placeholder-modern {
        width: 140px;
        height: 190px;
        border-radius: 70px 70px 14px 14px;
    }
    
    .placeholder-icon {
        width: 55px;
        height: 55px;
    }
    
    .placeholder-icon i {
        font-size: 1.4rem;
    }
    
    /* Section Qualité Petit Mobile - REFAIT */
    .quality-section {
        padding: 40px 0 90px;
        overflow: hidden;
    }
    
    .quality-content {
        margin-bottom: 22px;
    }
    
    .quality-title-mockup {
        font-size: 1.15rem;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .quality-subtitle {
        font-size: 0.78rem;
        margin-top: 6px;
        padding: 0 20px;
    }
    
    .categories-row-mockup {
        gap: 12px;
        max-width: 320px;
        padding: 0 15px;
        margin-top: 20px;
    }
    
    .category-mockup {
        min-height: 125px;
        padding: 16px 12px 12px;
        border-radius: 16px 16px 12px 12px;
    }
    
    .category-img-mockup {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .category-img-mockup img {
        width: 50px;
        height: 50px;
    }
    
    .category-mockup span {
        font-size: 0.78rem;
        font-weight: 500;
    }
    
    /* Description catégorie petit mobile */
    .category-description-text.active {
        max-height: 180px;
        margin-top: 20px;
    }
    
    .category-description-text p {
        font-size: 0.85rem;
        padding: 0 30px;
        line-height: 1.65;
    }
    
    .category-description-text p::before,
    .category-description-text p::after {
        font-size: 1.3rem;
    }
    
    .category-description-text p::before {
        left: 8px;
    }
    
    .category-description-text p::after {
        right: 8px;
    }
    
    /* Halal Badge Petit Mobile */
    .halal-badge-quality {
        bottom: 12px;
        right: 12px;
    }
    
    .halal-badge-inner {
        padding: 5px 10px;
        gap: 5px;
        border-radius: 6px;
    }
    
    .halal-badge-inner > i {
        font-size: 0.75rem;
    }
    
    .halal-badge-quality .halal-arabic {
        font-size: 0.7rem;
    }
    
    .halal-badge-quality .halal-text {
        font-size: 0.45rem;
    }
    
    .halal-badge {
        bottom: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }
    
    .halal-arabic {
        font-size: 0.7rem;
    }
    
    .halal-text {
        font-size: 0.35rem;
    }
    
    /* Section Témoignages Petit Mobile - REFAIT */
    .testimonials-section {
        padding: 42px 0;
    }
    
    .testimonials-header {
        margin-bottom: 22px;
        padding: 0 12px;
    }
    
    .testimonials-header h2 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .testimonials-subtitle {
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    .section-badge {
        font-size: 0.58rem;
        padding: 4px 12px;
    }
    
    .testimonials-grid {
        gap: 14px;
        padding: 0 16px;
        max-width: 380px;
    }
    
    .testimonial-card {
        padding: 24px 18px;
        border-radius: 16px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 8px;
        left: 12px;
    }
    
    .testimonial-stars {
        font-size: 0.75rem;
        margin-bottom: 14px;
        gap: 3px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 18px;
    }
    
    .testimonial-author {
        padding-top: 14px;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    /* Section Contact Petit Mobile - REFAIT */
    .contact-section {
        padding: 42px 0;
    }
    
    .contact-header {
        margin-bottom: 22px;
        padding: 0 12px;
    }
    
    .contact-header h2 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .contact-grid-modern {
        gap: 14px;
        padding: 0 16px;
        max-width: 380px;
        align-items: stretch;
    }
    
    .contact-card {
        padding: 26px 18px;
        border-radius: 16px;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .contact-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }
    
    .contact-card-icon i {
        font-size: 1.15rem;
    }
    
    .contact-card h4 {
        font-size: 0.98rem;
        margin-bottom: 8px;
    }
    
    .contact-card p {
        font-size: 0.84rem;
        line-height: 1.55;
    }
    
    .hours-compact span {
        font-size: 0.82rem;
    }
    
    .contact-cta {
        margin-top: 14px;
        padding: 10px 20px;
        font-size: 0.78rem;
    }
    
    /* Footer Petit Mobile - REFAIT */
    .footer-simple {
        padding: 38px 0 28px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-simple .logo-icon {
        font-size: 1.25rem;
    }
    
    .footer-simple .logo-text {
        font-size: 1rem;
    }
    
    .footer-tagline {
        font-size: 0.78rem;
        margin-bottom: 15px;
    }
    
    .footer-contact {
        gap: 8px;
        font-size: 0.78rem;
        margin-bottom: 15px;
    }
    
    .footer-simple .social-links {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .footer-simple .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.82rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
}

/* Très petits écrans (iPhone SE, etc.) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }
    
    /* Navbar très petit mobile */
    .navbar {
        padding: 8px 0;
    }
    
    .logo {
        font-size: 0.9rem;
        gap: 5px;
    }
    
    .logo-img {
        max-height: 22px;
    }
    
    .nav-icons .nav-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    /* Hero très petit mobile - TOTALEMENT REFAIT */
    .hero-split {
        padding-top: 55px;
        overflow: hidden;
    }
    
    /* Cacher les pseudo-éléments */
    .hero-split::before,
    .hero-split::after {
        display: none;
    }
    
    .hero-container {
        min-height: 50vh;
        padding: 0 8px;
        overflow: hidden;
        justify-content: flex-start;
    }
    
    .hero-floating-texts {
        padding: 22px 3px 15px;
        gap: 5px 10px;
    }
    
    .floating-text {
        font-size: 1.6rem;
        letter-spacing: -0.6px;
        line-height: 1.05;
    }
    
    .hero-arch-back {
        width: 220px;
        height: 180px;
        max-height: 180px;
        border-radius: 110px 110px 0 0;
    }
    
    .hero-arch {
        width: 190px;
        height: 155px;
        max-height: 155px;
        border-radius: 95px 95px 0 0;
    }
    
    .hero-center-image {
        max-width: 260px;
        margin-top: 40px;
        align-self: flex-end;
    }
    
    .hero-center-image img {
        max-height: 180px;
    }
    
    .hero-placeholder-modern {
        width: 120px;
        height: 165px;
        border-radius: 60px 60px 12px 12px;
    }
    
    .placeholder-icon {
        width: 48px;
        height: 48px;
    }
    
    .placeholder-icon i {
        font-size: 1.2rem;
    }
    
    /* Section Qualité très petit mobile */
    .quality-section {
        padding: 35px 0 85px;
    }
    
    .quality-content {
        margin-bottom: 18px;
    }
    
    .quality-title-mockup {
        font-size: 1.05rem;
        padding: 0 10px;
        line-height: 1.45;
    }
    
    .quality-subtitle {
        font-size: 0.72rem;
        padding: 0 15px;
    }
    
    .categories-row-mockup {
        max-width: 280px;
        gap: 10px;
        padding: 0 10px;
        margin-top: 16px;
    }
    
    .category-mockup {
        min-height: 110px;
        padding: 14px 10px 10px;
        border-radius: 14px 14px 10px 10px;
    }
    
    .category-img-mockup {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .category-img-mockup img {
        width: 42px;
        height: 42px;
    }
    
    .category-mockup span {
        font-size: 0.72rem;
    }
    
    /* Description catégorie très petit mobile */
    .category-description-text.active {
        max-height: 160px;
        margin-top: 16px;
    }
    
    .category-description-text p {
        font-size: 0.78rem;
        padding: 0 25px;
        line-height: 1.6;
    }
    
    .category-description-text p::before,
    .category-description-text p::after {
        font-size: 1.1rem;
    }
    
    .category-description-text p::before {
        left: 6px;
    }
    
    .category-description-text p::after {
        right: 6px;
    }
    
    /* Halal Badge très petit mobile */
    .halal-badge-quality {
        bottom: 10px;
        right: 10px;
    }
    
    .halal-badge-inner {
        padding: 4px 8px;
        gap: 4px;
        border-radius: 5px;
    }
    
    .halal-badge-inner > i {
        font-size: 0.65rem;
    }
    
    .halal-badge-quality .halal-arabic {
        font-size: 0.6rem;
    }
    
    .halal-badge-quality .halal-text {
        font-size: 0.4rem;
    }
    
    .halal-badge {
        width: 34px;
        height: 34px;
        bottom: 8px;
        right: 8px;
    }
    
    .halal-arabic {
        font-size: 0.6rem;
    }
    
    .halal-text {
        font-size: 0.3rem;
    }
    
    /* Section Témoignages très petit mobile */
    .testimonials-section {
        padding: 35px 0;
    }
    
    .testimonials-header {
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .testimonials-header h2 {
        font-size: 1.1rem;
    }
    
    .testimonials-subtitle {
        font-size: 0.75rem;
    }
    
    .section-badge {
        font-size: 0.55rem;
        padding: 3px 10px;
    }
    
    .testimonials-grid {
        gap: 12px;
        padding: 0 12px;
        max-width: 320px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        border-radius: 14px;
    }
    
    .testimonial-card::before {
        font-size: 2.5rem;
        top: 6px;
        left: 10px;
    }
    
    .testimonial-stars {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .testimonial-author {
        padding-top: 12px;
    }
    
    .author-name {
        font-size: 0.85rem;
    }
    
    /* Section Contact très petit mobile */
    .contact-section {
        padding: 35px 0;
    }
    
    .contact-header {
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .contact-header h2 {
        font-size: 1.1rem;
    }
    
    .contact-grid-modern {
        gap: 12px;
        padding: 0 12px;
        max-width: 320px;
    }
    
    .contact-card {
        padding: 22px 15px;
        border-radius: 14px;
        min-height: 165px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .contact-card-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }
    
    .contact-card-icon i {
        font-size: 1rem;
    }
    
    .contact-card h4 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .contact-card p {
        font-size: 0.78rem;
        line-height: 1.5;
    }
    
    .hours-compact span {
        font-size: 0.75rem;
    }
    
    .contact-cta {
        margin-top: 12px;
        padding: 8px 16px;
        font-size: 0.72rem;
    }
    
    /* Footer très petit mobile */
    .footer-simple {
        padding: 32px 0 22px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-simple .logo-icon {
        font-size: 1.15rem;
    }
    
    .footer-simple .logo-text {
        font-size: 0.9rem;
    }
    
    .footer-tagline {
        font-size: 0.72rem;
        margin-bottom: 12px;
    }
    
    .footer-contact {
        gap: 6px;
        font-size: 0.72rem;
        margin-bottom: 12px;
    }
    
    .footer-simple .social-links {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .footer-simple .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .copyright {
        font-size: 0.65rem;
    }
}

/* Orientation paysage sur mobile */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-split {
        min-height: auto;
        height: auto;
        padding-top: 60px;
        padding-bottom: 0;
    }
    
    .hero-container {
        min-height: 80vh;
    }
    
    .hero-floating-texts {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 20px 15px 12px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 5px 15px;
        height: auto;
    }
    
    .floating-text {
        position: relative;
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.1;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .float-1, .float-2 {
        text-align: left;
        justify-self: start;
    }
    
    .float-3, .float-4 {
        text-align: right;
        justify-self: end;
    }
    
    .float-1 { grid-column: 1; grid-row: 1; }
    .float-2 { grid-column: 1; grid-row: 2; }
    .float-3 { grid-column: 2; grid-row: 1; }
    .float-4 { grid-column: 2; grid-row: 2; }
    
    .hero-arch-back {
        width: 200px;
        height: 220px;
        max-height: 220px;
    }
    
    .hero-arch {
        width: 170px;
        height: 195px;
        max-height: 195px;
    }
    
    .hero-center-image {
        max-width: 200px;
    }
    
    .hero-center-image img {
        max-height: 210px;
        max-width: 100%;
    }
    
    .categories-row-mockup {
        display: flex;
        flex-wrap: nowrap;
        max-width: none;
        gap: 12px;
        overflow-x: auto;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-mockup {
        min-width: 110px;
        flex-shrink: 0;
    }
    
    .quality-section {
        padding: 35px 0;
    }
    
    .testimonials-grid,
    .contact-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
    
    .contact-card:last-child {
        grid-column: span 1;
    }
}

/* =====================================================
   CONSEILS DE CUISSON - Page produit
   ===================================================== */
.cooking-tips-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cooking-tips-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.cooking-tips-header i {
    font-size: 2rem;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(196, 30, 58, 0.05));
    padding: 15px;
    border-radius: 50%;
}

.cooking-tips-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.cooking-tips-content {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.cooking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cooking-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.cooking-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cooking-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #d4273f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cooking-info-icon i {
    color: white;
    font-size: 1.1rem;
}

.cooking-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cooking-info-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cooking-info-value {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.cooking-tips-text {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--primary);
}

.cooking-tips-text h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.cooking-tips-text h3 i {
    color: var(--gold);
}

.cooking-tips-text p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

/* Responsive conseils de cuisson */
@media (max-width: 768px) {
    .cooking-tips-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .cooking-tips-header h2 {
        font-size: 1.4rem;
    }
    
    .cooking-tips-content {
        padding: 20px;
    }
    
    .cooking-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cooking-info-item {
        padding: 12px 15px;
    }
    
    .cooking-tips-text {
        padding: 20px;
    }
}
