:root {
    --vert: #0B3D2E;
    --vert-2: #145A42;
    --dore: #C9A961;
    --dore-clair: #E8D9B5;
    --blanc: #FFFFFF;
    --noir: #1C1C1C;
    --gris-100: #F9FAFB;
    --gris-200: #F3F4F6;
    --gris-300: #E5E7EB;
    --gris-400: #9CA3AF;
    --gris-600: #6B7280;
    --gris-800: #1F2937;
    --rouge: #DC2626;
    --vert-success: #10B981;
    --orange-warning: #F59E0B;
    --violet: #8B5CF6;
    --rayon-sm: 8px;
    --rayon: 14px;
    --rayon-lg: 24px;
    --rayon-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--noir);
    background: var(--blanc);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== MARQUEE ========== */
.marquee-wrap {
    background: var(--dore-clair);
    color: var(--vert);
    overflow: hidden;
    padding: 10px 0;
    border-bottom: 2px solid var(--dore);
}

.marquee {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: scroll 35s linear infinite;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .marquee {
        font-size: 0.7rem;
        gap: 20px;
        animation-duration: 25s;
    }
}

.marquee-wrap:hover .marquee {
    animation-play-state: paused;
}

/* ========== HEADER ========== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gris-300);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-wrapper:hover {
    opacity: 0.85;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vert);
    letter-spacing: -0.5px;
}

@media (max-width: 550px) {
    .brand-name {
        font-size: 1.1rem;
    }
    .logo-img {
        height: 36px;
    }
}

nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--noir);
    cursor: pointer;
    padding: 6px 0;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--vert);
}

.nav-link.active {
    color: var(--vert);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: var(--dore);
    border-radius: 2px;
    animation: fadeIn 0.3s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.lang-switch {
    display: flex;
    gap: 3px;
    background: var(--gris-100);
    padding: 4px;
    border-radius: var(--rayon-sm);
}

.lang-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    background: transparent;
    color: var(--gris-600);
    text-transform: uppercase;
}

.lang-btn.active {
    background: var(--vert);
    color: var(--blanc);
}

.lang-btn:hover:not(.active) {
    background: var(--gris-200);
}

.refresh-btn {
    background: var(--gris-100);
    color: var(--vert);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid var(--gris-300);
}

.refresh-btn:hover {
    background: var(--vert);
    color: var(--blanc);
    transform: rotate(180deg);
    border-color: var(--vert);
}

.refresh-btn.spinning i {
    animation: spin 0.8s ease;
}

.cart-btn {
    position: relative;
    background: var(--vert);
    color: var(--blanc);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cart-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #EF4444;
    color: var(--blanc);
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid var(--blanc);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: scaleIn 0.3s ease;
}

.cart-badge:empty {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--vert);
    padding: 4px 8px;
}

/* ========== HERO ========== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(145deg, var(--vert) 0%, var(--vert-2) 100%);
    color: var(--blanc);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary {
    background: var(--dore);
    color: var(--vert);
    padding: 16px 34px;
    border-radius: var(--rayon);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--blanc);
    color: var(--blanc);
    padding: 14px 28px;
    border-radius: var(--rayon);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--blanc);
    color: var(--vert);
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.trust-item i {
    color: var(--dore);
}

.hero-img {
    border-radius: var(--rayon-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: slideInRight 0.8s ease;
}

.hero-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.hero-img:hover img {
    transform: scale(1.02);
}

/* ========== SECTIONS ========== */
section {
    padding: 70px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vert);
    text-align: center;
    margin-bottom: 14px;
}

.section-desc {
    text-align: center;
    color: var(--gris-600);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== GRIDS ========== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ========== CARDS ========== */
.card {
    background: var(--blanc);
    border-radius: var(--rayon-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gris-300);
    cursor: pointer;
    animation: fadeInUp 0.6s ease both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--dore);
}

.card-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gris-100);
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-img-wrap:hover img {
    transform: scale(1.08);
}

.badge-promo {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--rouge);
    color: var(--blanc);
    padding: 5px 12px;
    border-radius: var(--rayon-sm);
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.card-body {
    padding: 20px;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--noir);
    margin-bottom: 6px;
}

.card-desc {
    color: var(--gris-600);
    font-size: 0.85rem;
    margin-bottom: 10px;
    min-height: 40px;
}

.card-stock {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--rayon-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.card-stock.ok {
    background: #DCFCE7;
    color: #166534;
}

.card-stock.faible {
    background: #FEF3C7;
    color: #92400E;
    animation: pulse 2s ease-in-out infinite;
}

.card-stock.rupture {
    background: #FEE2E2;
    color: #991B1B;
}

.card-prix {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.prix-actuel {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--vert);
}

.prix-barre {
    font-size: 0.95rem;
    color: var(--gris-400);
    text-decoration: line-through;
}

.btn-card {
    width: 100%;
    background: var(--vert);
    color: var(--blanc);
    padding: 14px;
    border-radius: var(--rayon);
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-card:hover {
    background: var(--vert-2);
    transform: scale(1.02);
}

.btn-card:disabled {
    background: var(--gris-300);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

/* ========== MODAL ZOOM ========== */
.modal-zoom {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.modal-zoom-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 92%;
    height: 92%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-zoom-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: scaleIn 0.4s ease;
}

.modal-zoom-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-zoom-close:hover {
    color: var(--dore);
    transform: rotate(90deg);
}

/* ========== TABS & FILTERS ========== */
.tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 35px;
    background: var(--gris-100);
    padding: 5px;
    border-radius: var(--rayon);
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.tab {
    flex: 1;
    padding: 12px 24px;
    border-radius: var(--rayon-sm);
    font-weight: 700;
    transition: var(--transition);
    background: transparent;
    color: var(--gris-600);
    cursor: pointer;
    font-size: 0.95rem;
}

.tab.active {
    background: var(--vert);
    color: var(--blanc);
    box-shadow: var(--shadow-sm);
}

.tab:hover:not(.active) {
    background: var(--gris-200);
}

.filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.filtre-btn {
    padding: 10px 22px;
    border: 2px solid var(--gris-300);
    border-radius: var(--rayon);
    font-weight: 600;
    transition: var(--transition);
    background: var(--blanc);
    color: var(--gris-600);
    cursor: pointer;
    font-size: 0.9rem;
}

.filtre-btn:hover {
    border-color: var(--vert);
    color: var(--vert);
}

.filtre-btn.active {
    border-color: var(--vert);
    background: var(--vert);
    color: var(--blanc);
}

/* ========== REVIEWS ========== */
.reviews {
    background: var(--gris-100);
}

.review-card {
    background: var(--blanc);
    padding: 30px;
    border-radius: var(--rayon-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    animation: fadeInUp 0.6s ease both;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

.review-card:hover {
    border-color: var(--dore-clair);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.review-stars {
    color: #FBBF24;
    margin-bottom: 12px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--gris-600);
    margin-bottom: 14px;
    line-height: 1.7;
}

.review-author {
    font-weight: 700;
    color: var(--vert);
}

/* ========== FAQ ========== */
.faq-item {
    background: var(--blanc);
    border: 1px solid var(--gris-300);
    border-radius: var(--rayon);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--dore);
}

.faq-q {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--vert);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.faq-q:hover {
    background: var(--gris-100);
}

.faq-a {
    padding: 0 24px 20px;
    color: var(--gris-600);
    display: none;
    line-height: 1.7;
}

.faq-a.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.faq-q i {
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-q.active i {
    transform: rotate(180deg);
}

/* ========== LIVRAISON ========== */
.livraison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.livraison-card {
    background: var(--gris-100);
    padding: 40px 30px;
    border-radius: var(--rayon-lg);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease both;
}

.livraison-card:nth-child(1) { animation-delay: 0.1s; }
.livraison-card:nth-child(2) { animation-delay: 0.2s; }
.livraison-card:nth-child(3) { animation-delay: 0.3s; }

.livraison-card:hover {
    border-color: var(--dore);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.livraison-card i {
    font-size: 2.8rem;
    color: var(--vert);
    margin-bottom: 18px;
    transition: var(--transition);
}

.livraison-card:hover i {
    transform: scale(1.1);
}

.livraison-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--vert);
    margin-bottom: 12px;
}

.livraison-card p {
    color: var(--gris-600);
    line-height: 1.8;
    white-space: pre-line;
}

/* ========== PANIER ========== */
.panier-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.panier-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.panier-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--gris-100);
    border-radius: var(--rayon);
    align-items: center;
    transition: var(--transition);
    animation: fadeInUp 0.4s ease both;
}

.panier-item:nth-child(1) { animation-delay: 0.05s; }
.panier-item:nth-child(2) { animation-delay: 0.1s; }
.panier-item:nth-child(3) { animation-delay: 0.15s; }

.panier-item:hover {
    background: var(--gris-200);
}

.panier-item img {
    width: 80px;
    height: 80px;
    border-radius: var(--rayon-sm);
    object-fit: cover;
    cursor: zoom-in;
    flex-shrink: 0;
}

.panier-item-info {
    flex: 1;
    min-width: 0;
}

.panier-item-info h4 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.panier-item-meta {
    font-size: 0.8rem;
    color: var(--gris-600);
}

.panier-item-prix {
    font-weight: 800;
    color: var(--vert);
    font-size: 1rem;
    white-space: nowrap;
}

.panier-item-del {
    background: #FEE2E2;
    color: #DC2626;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.panier-item-del:hover {
    background: #DC2626;
    color: var(--blanc);
    transform: scale(1.1);
}

.panier-resume {
    background: var(--gris-100);
    padding: 30px;
    border-radius: var(--rayon-lg);
    position: sticky;
    top: 100px;
    animation: fadeInUp 0.6s ease;
}

.resume-ligne {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: var(--gris-600);
}

.resume-ligne.total {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--vert);
    border-top: 2px solid var(--gris-300);
    padding-top: 16px;
    margin-top: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--noir);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gris-300);
    border-radius: var(--rayon);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--blanc);
}

.form-group input:focus {
    outline: none;
    border-color: var(--vert);
    box-shadow: 0 0 0 3px rgba(11, 61, 46, 0.1);
}

.btn-whatsapp {
    width: 100%;
    background: #25D366;
    color: var(--blanc);
    padding: 16px;
    border-radius: var(--rayon);
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gris-600);
    font-size: 0.85rem;
    margin-top: 14px;
}

/* ========== FOOTER ========== */
.footer-pro {
    background: var(--gris-100);
    padding: 60px 0 0;
    margin-top: 80px;
    border-top: 1px solid var(--gris-300);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--gris-300);
    margin-bottom: 50px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.service-item i {
    font-size: 1.6rem;
    color: var(--vert);
    margin-top: 2px;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--gris-600);
    margin: 0;
}

.footer-grid-pro {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.newsletter-col h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--vert);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.newsletter-col p {
    color: var(--gris-600);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.6;
}

.newsletter-form-pro {
    display: flex;
    gap: 0;
    max-width: 420px;
}

.newsletter-form-pro input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gris-300);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--blanc);
}

.newsletter-form-pro input:focus {
    outline: none;
    border-color: var(--vert);
}

.newsletter-form-pro button {
    background: var(--noir);
    color: var(--blanc);
    padding: 14px 28px;
    border-radius: 0 8px 8px 0;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form-pro button:hover {
    background: var(--vert);
}

.footer-col-pro h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-link {
    display: block;
    background: none;
    border: none;
    color: var(--gris-600);
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    padding: 0;
}

.footer-link:hover {
    color: var(--vert);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 18px;
}

.social-links a {
    background: var(--blanc);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--vert);
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background: var(--vert);
    color: var(--blanc);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-bottom-pro {
    background: var(--vert);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom-pro a {
    color: var(--dore);
    text-decoration: underline;
}

.footer-bottom-pro a:hover {
    color: var(--blanc);
}

/* ========== MODAL TAILLE ========== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.show {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--blanc);
    padding: 35px;
    border-radius: var(--rayon-lg);
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: var(--transition);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--vert);
    margin-bottom: 20px;
    text-align: center;
}

.modal select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gris-300);
    border-radius: var(--rayon);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: inherit;
    background: var(--blanc);
}

.modal select:focus {
    outline: none;
    border-color: var(--vert);
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.btn-cancel {
    flex: 1;
    padding: 14px;
    border: 2px solid var(--gris-300);
    border-radius: var(--rayon);
    font-weight: 700;
    background: var(--blanc);
    color: var(--gris-600);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel:hover {
    background: var(--gris-100);
}

.btn-confirm {
    flex: 1;
    padding: 14px;
    background: var(--vert);
    color: var(--blanc);
    border-radius: var(--rayon);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-confirm:hover {
    background: var(--vert-2);
    transform: scale(1.02);
}

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--vert);
    color: var(--blanc);
    padding: 16px 24px;
    border-radius: var(--rayon);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(450px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3000;
    max-width: 90vw;
}

.toast.show {
    transform: translateX(0);
    animation: fadeInUp 0.4s ease;
}

.toast i {
    font-size: 1.2rem;
}

/* ========== UTILS ========== */
.hidden {
    display: none !important;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

/* ========== RESPONSIVITÉ ========== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-img img {
        height: 350px;
    }
    .panier-wrap {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid-pro {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .livraison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--blanc);
        flex-direction: column;
        padding: 20px 24px;
        border-top: 1px solid var(--gris-300);
        box-shadow: var(--shadow-md);
        gap: 8px;
    }
    nav.show {
        display: flex;
        animation: fadeInUp 0.3s ease;
    }
    .nav-link {
        padding: 12px 0;
        font-size: 1rem;
        text-align: left;
        width: 100%;
    }
    .menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-img img {
        height: 280px;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .livraison-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .trust-badges {
        justify-content: center;
    }
    .section-title {
        font-size: 2rem;
    }
    .panier-item {
        flex-wrap: wrap;
        gap: 12px;
    }
    .panier-item img {
        width: 70px;
        height: 70px;
    }
    .newsletter-form-pro {
        flex-direction: column;
    }
    .newsletter-form-pro input {
        border-radius: 8px;
        border-right: 2px solid var(--gris-300);
    }
    .newsletter-form-pro button {
        border-radius: 8px;
        margin-top: 10px;
    }
    .tabs {
        max-width: 100%;
    }
    .tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .filtre-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    .hero {
        padding: 40px 0 50px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .brand-name {
        font-size: 1rem;
    }
    .logo-img {
        height: 32px;
    }
    .cart-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .refresh-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .card-prix .prix-actuel {
        font-size: 1.3rem;
    }
    .modal-content {
        padding: 25px;
    }
    .panier-item-prix {
        font-size: 0.9rem;
    }
    .panier-resume {
        padding: 20px;
    }
    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col-pro h4 {
        font-size: 0.85rem;
    }
}
/* Animation de surbrillance pour le produit sélectionné */
.card-highlight {
    border: 3px solid #C9A961 !important;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.3), 0 20px 40px rgba(0,0,0,0.12) !important;
    transition: all 0.3s ease;
    animation: flashHighlight 1.5s ease;
}

@keyframes flashHighlight {
    0% { border-color: #C9A961; box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7); }
    50% { border-color: #FFD700; box-shadow: 0 0 0 15px rgba(255, 215, 0, 0.2); }
    100% { border-color: #C9A961; box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
}