/* ================================================== */
/* FICHIER PRINCIPAL : STYLE.CSS             */
/* ================================================== */

/* 1. Importation des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400;700;900&display=swap');

/* Classes utilitaires pour Lato (si besoin) */
.lato-thin { font-family: "Lato", sans-serif; font-weight: 100; font-style: normal; }
.lato-light { font-family: "Lato", sans-serif; font-weight: 300; font-style: normal; }
.lato-regular { font-family: "Lato", sans-serif; font-weight: 400; font-style: normal; }
.lato-bold { font-family: "Lato", sans-serif; font-weight: 700; font-style: normal; }
.lato-black { font-family: "Lato", sans-serif; font-weight: 900; font-style: normal; }
.lato-thin-italic { font-family: "Lato", sans-serif; font-weight: 100; font-style: italic; }
.lato-light-italic { font-family: "Lato", sans-serif; font-weight: 300; font-style: italic; }
.lato-regular-italic { font-family: "Lato", sans-serif; font-weight: 400; font-style: italic; }
.lato-bold-italic { font-family: "Lato", sans-serif; font-weight: 700; font-style: italic; }
.lato-black-italic { font-family: "Lato", sans-serif; font-weight: 900; font-style: italic; }

/* 2. Variables globales */
:root {
    /* Couleurs */
    --main-bg-color: #fcfcfc;
    --primary-gold: #D4AF37;
    --primary-dark-green: #0A3833;
    --text-dark: #085150;
    --text-light: #fefefe;
    --border-light: #eee;
    --light-grey: #e0e0e0;

    /* Polices */
    --font-primary: 'Lato', sans-serif; /* Police pour les titres */
    --font-secondary: 'Lato', sans-serif; /* Police pour le corps du texte */
}

/* 3. Styles de base et reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    line-height: 1.7;
    font-family: var(--font-primary);
    background-color: var(--main-bg-color);
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

/* 4. Styles des titres */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-dark-green);
}

/* ================================================== */
/* STYLES DES COMPOSANTS               */
/* ================================================== */

/* Barre d'annonce */
.announcement-bar {
    background-color: var(--primary-dark-green);
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    position: relative;
    z-index: 1001;
}
.announcement-slider-container {
    flex-grow: 1;
    text-align: center;
    position: relative;
    height: 20px;
    overflow: hidden;
}
.announcement-slide {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}
.announcement-slide.active {
    opacity: 1;
    visibility: visible;
}
.announcement-slide p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #d4af37;
    text-transform: uppercase;
}
.announcement-arrow {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.announcement-arrow:hover {
    opacity: 1;
}

/* En-tête */
.fixed {
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: transparent;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3%;
    
    backdrop-filter: blur(5px);
    transition: background .2s,color .2s,border .2s,box-shadow .2s,transform .15s ease-in-out;
}
.header:hover {
    background-color: white;
}
.header .logo .logo-img {
    height: 40px;
}
.navbar a {
    margin: 0 1.2rem;
    color: #d4af37;
    font-weight: 500;
    font-size: .9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.navbar a:hover {
    color: var(--primary-gold);
}
.icons i, .icons .fa-bars {
    font-size: 1.1rem;
    margin-left: 1.5rem;
    cursor: pointer;
    color: #d4af37;
    transition: color 0.3s ease;
}
.icons i:hover, .icons .fa-bars:hover {
    color: var(--primary-gold);
}
#menu-btn {
    display: none;
}
.content {
    margin-bottom: -4rem;
}
/* Section Héroïque */
.hero-slider {
    position: relative;
    width: 100%;
    height: 1100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
a.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.hero-video {
    z-index: 1;
    position: relative;
    right: 12%;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 43%);
    z-index: 2;
}
.hero-slider .hero-content {
    position: absolute;
    z-index: 3;
    color: var(--text-light);
    width: 100%;
    height: 100%;
    max-width: 900px;
    display: flex;
    padding: 2rem;
    flex-direction: column;
    justify-content: center;
}
.hero-slider .hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    display: none;
    letter-spacing: 1px;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.hero-slider .hero-content p {
    font-size: calc(0.95rem * 1);
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary-dark-green);
    border: none;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 50;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.slider-btn:hover {
    background-color: var(--primary-gold);
    color: var(--text-light);
}
.slider-btn.prev { left: 2%; }
.slider-btn.next { right: 2%; }

/* Boutons généraux */
.btn {
    background: #d4af37;
    color: var(--text-dark);
    border-radius: 1px;
    font-weight: 400;
    padding: .65rem 1.75rem;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--primary-gold);
}
.btn:hover {
    background-color: darken(var(--primary-gold), 10%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    background-color: var(--primary-dark-green);
    color: var(--text-light);
    border: 1px solid var(--primary-dark-green);
}
.btn-small:hover {
    background-color: var(--primary-gold);
    color: var(--text-light);
    border-color: var(--primary-gold);
}
.btn-dark {
    background-color: var(--primary-dark-green);
    color: var(--text-light);
    border: 1px solid var(--primary-dark-green);
}
.btn-dark:hover {
    background-color: var(--primary-gold);
    color: var(--text-light);
    border-color: var(--primary-gold);
}

/* Titres de Section */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    text-align: center;
    position: relative;
    padding-top: 2rem;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

/* Section Collections Phares */
.featured-collections {
    padding: 4rem 3%;
    text-align: center;
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin: 0 auto;
}
.collection-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.collection-card img {
    width: 100%;
    height: max-content;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.collection-card:hover img {
    transform: scale(1.05);
}
.collection-card h3 {
    /* font-size: 1.8rem; */
    margin: 1.5rem 0 1rem;
    text-transform: uppercase;
}
.collection-card .btn-small {
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Section "À Propos" */
.about-us-mini {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0rem 0%;
}
.about-us-content {
    flex: 1;
    min-width: 350px;
    padding-right: 3rem;
    padding-left: 3%;
}
.about-us-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
    padding-top: 0;
}
.about-us-content .section-title::after {
    left: 0;
    transform: translateX(0);
}
.about-us-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}
.about-us-image {
    flex: 1;
    min-width: 400px;
    text-align: center;
}
.about-us-image img {
    max-width: 100%;
    height: auto;
}

/* Section Dernières Créations */
.latest-products {
    padding: 2rem 3%;
    text-align: center;
    background: #fefbef;
}
.latest-products .product-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}
.latest-products .product-card {
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.latest-products .product-card h3 {
    font-size: calc(0.85rem * 1);
    text-transform: uppercase;
}
.latest-products .product-card .price {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1.2rem;
    flex: 1;
    font-size: calc(0.85rem * 1);
    text-transform: uppercase;
}
.latest-products .product-card .add-to-cart {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    background-color: var(--primary-gold);
    color: var(--text-light);
    border: 1px solid var(--primary-gold);
    width: 100%;
    display: FLEX;
    ALIGN-ITEMS: CENTER;
    justify-content: center;
    margin-top: auto;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.latest-products .product-card .add-to-cart:hover {
    background-color: var(--primary-dark-green);
    transform: translateY(-2px);
    border: 1px solid var(--primary-dark-green);
}
.latest-products .product-card .add-to-cart i {
    margin-right: 0.5rem;
    color: var(--text-light);
}

/* Pied de page */
.footer {
    background: var(--primary-dark-green);
    color: var(--text-light);
    padding: 4rem 3%;
    border-top: 5px solid var(--primary-gold);
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}
.footer-section.footer-brand {
    flex: 1.5;
}
.footer-section .logo-img-footer {
    height: 50px;
    margin-bottom: 1rem;
}
.footer-section h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}
.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}
.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: var(--primary-gold);
}
.social-icons {
    margin-top: 1.5rem;
}
.social-icons a {
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 1.2rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: var(--primary-gold);
}
.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Placeholders de chargement */
.collection-card-placeholder {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 1.5rem;
    text-align: center;
}
.placeholder-image {
    width: 100%;
    height: 180px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}
.placeholder-text {
    width: 70%;
    height: 24px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin: 0 auto 1.2rem auto;
}
.placeholder-btn {
    width: 50%;
    height: 40px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 0 auto;
}
.placeholder-image, .placeholder-text, .placeholder-btn {
    background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 20%, #e0e0e0 40%, #e0e0e0 100%);
    background-repeat: no-repeat;
    background-size: 800px 250px;
    animation: shimmer 1.5s linear infinite;
}
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

/* Bouton flottant WhatsApp */
.btn-whatsapp {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s, background 0.2s;
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* Page d'erreur */
.err-wrap {
    height: 100vh;
    width: min(640px,92%);
    margin: 60px auto;
    border-radius: 14px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.err-code {
    font-size: 72px;
    font-weight: 900;
    color: #0a3833;
    margin: 0;
}
.err-title {
    font-size: 24px;
    font-weight: 700;
    color: #0a3833;
    margin: 12px 0;
}
.err-desc {
    font-size: 16px;
    color: #6b574f;
    margin: 12px 0 24px;
}
.btn-home {
    display: inline-block;
    background: #0a3833;
    color: #cfa754;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
}
.btn-home:hover {
    background: #a77450;
}
/* ================================================== */
/* STYLE POUR LES PLACEHOLDERS DE PRODUITS */
/* ================================================== */

.product-card-placeholder {
    background: #fff;
    border-radius: 8px;
    overflow: hidden; /* Important pour l'animation */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* On peut réutiliser la classe .placeholder-image déjà créée */
.product-card-placeholder .placeholder-image {
    height: 250px; /* Adaptez à la hauteur de vos images produit */
    margin-bottom: 1.2rem;
}

/* Texte pour le nom du produit */
.placeholder-text-short {
    width: 80%;
    height: 22px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

/* Texte pour le prix */
.placeholder-text-price {
    width: 40%;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 1.2rem;
}

/* On peut réutiliser la classe .placeholder-btn déjà créée */
.product-card-placeholder .placeholder-btn {
    width: 100%;
    margin-top: auto; /* Pousse le bouton en bas */
}

/* Application de l'animation de scintillement */
.product-card-placeholder .placeholder-image,
.placeholder-text-short,
.placeholder-text-price,
.product-card-placeholder .placeholder-btn {
    background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 20%, #e0e0e0 40%, #e0e0e0 100%);
    background-repeat: no-repeat;
    background-size: 800px 300px;
    animation: shimmer 1.5s linear infinite;
}
/* ================================================== */
/* EFFET DE SURVOL POUR LES CARTES PRODUITS      */
/* ================================================== */

/* Conteneur pour les images */
.product-card .image-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 1.2rem;
    overflow: hidden;
}
.product-card .image-container img {
    object-position: bottom;
}
.product-card .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out; /* Transition douce */
}

/* L'image de survol est cachée par défaut */
.product-card .image-container .img-hover {
    opacity: 0;
}

/* Au survol de la carte, on affiche l'image de survol */
.product-card:hover .image-container .img-hover {
    opacity: 1;
}
.container_info_card {
    padding: 1.5rem;
    display: flex;
    /* MIN-height: 250px; */
    flex-direction: column;
    padding-top: 0;
}

    /* 2. On applique une image de fond au conteneur à la place */
    .hero-slider {
        background-image: url('/cdn/new_image_hero.png?v=3'); /* <-- Mettez le chemin de votre image ici */
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero-slider .hero-video {
        display: none;
    }
/* ================================================== */
/* STYLE BANNIÈRE DE RÉASSURANCE           */
/* ================================================== */
.trust-banner {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* Aligne les items en haut */
    flex-wrap: wrap; /* Permet aux items de passer à la ligne sur mobile */
    
    background-color: var(--primary-dark-green); /* Votre fond vert foncé */
    color: var(--text-light); /* Texte blanc/clair */
    
    padding: 3rem 3%;
    gap: 2rem; /* Espace entre les items */
}

.trust-item {
    flex: 1;
    min-width: 200px;
    font-size: medium;
    text-align: center;
    align-items: center;
    display: flex;
}

.trust-item i {
    font-size: 2.5rem; /* Taille des icônes */
    color: var(--primary-gold); /* Icônes en doré */
    margin-bottom: 1.2rem;
    display: block; /* Assure que le margin-bottom fonctionne bien */
}

.trust-item p {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin: 0;
}
/* =========================================================
   6. PANIER LATÉRAL (SIDE-CART)
   ========================================================= */
.body-lock { overflow: hidden; }
#sc-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1999;
}
.side-cart {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s ease;
}
.side-cart.open {
    transform: translateX(0);
}
.sc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}
.sc-head h3 {
    font-family: var(--font-headings);
    margin: 0;
}
.sc-close {
    background: none; border: none; font-size: 2rem; cursor: pointer;
}
.sc-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}
.sc-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.sc-item img {
    width: 80px; height: 80px; object-fit: cover; border-radius: 4px;
}
.sc-info { flex-grow: 1; }
.sc-name { font-weight: 600; }
.sc-opts { font-size: 0.8rem; color: #666; padding-left: 1.2rem; margin: 0.3rem 0; }
.sc-qty { font-size: 0.9rem; margin-top: 0.5rem; }
.sc-qty input { width: 40px; text-align: center; border: 1px solid #ccc; border-radius: 4px; padding: 0.2rem; }
.sc-right { text-align: right; }
.sc-line { font-weight: 700; }
.sc-del { background: none; border: none; color: #999; cursor: pointer; font-size: 1.5rem; }
.sc-foot {
    padding: 1.5rem;
    border-top: 1px solid var(--border-light);
}
.sc-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.sc-actions {
    display: flex;
    gap: 1rem;
}
.sc-actions .btn-ghost, .sc-actions .btn-add { flex: 1; }
/* =========================================================
   STYLE MODERNE POUR LA GRILLE DES CATÉGORIES (HOME)
   ========================================================= */

/* --- Conteneur principal --- */
.cats-products .container {
    max-width: 1300px;
    margin: 4rem auto;
    padding: 0 1rem;
}

/* --- Skeleton Loader --- */
#cp-skeleton {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.cp-skel {
    aspect-ratio: 4 / 5;
    background-color: #e2e2e2;
    background-image: linear-gradient(90deg, #e2e2e2, #f5f5f5, #e2e2e2);
    background-size: 200px 100%;
    background-repeat: no-repeat;
    border-radius: 8px;
    animation: shimmer 1.5s linear infinite;
}
@keyframes shimmer { 0% { background-position: -200px 0; } 100% { background-position: calc(200px + 100%) 0; } }

/* --- Grille des cartes réelles --- */
#cp-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cp-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 0px;
    overflow: hidden;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cp-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cp-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    padding: 2rem;
    align-items: flex-end;
    transition: background-color 0.4s ease;
}
.cp-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cp-card-content h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    text-align: left;
    margin: 0 0 1rem 0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.4);
}


.cp-card-button {
    display: inline-block;
    background-color: var(--primary-dark-green);
    color: var(--text-light);
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

/* --- Effets au survol --- */
.cp-card:hover .cp-card-background {
    transform: scale(1.05);
}

.cp-card:hover .cp-card-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.cp-card:hover .cp-card-button {
    background-color: var(--primary-gold);
    color: var(--primary-dark-green);
}

/* --- Message si vide ou erreur --- */
.cp-empty {
    text-align: center;
    padding: 3rem;
    color: #666;
}
.btn-submit-order i { margin-right: 0.5rem; }
.btn-add .spin { display: none; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; margin-right: .5rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-add.adding .spin { display: inline-block; }
.btn-add.adding .txt { opacity: .7; }
.btn-ghost { background: none; border: 1px solid #ccc; color: var(--text-dark); padding: 0.8rem 1.5rem; border-radius: 5px; cursor: pointer; }
.btn-add {
    background-color: var(--primary-dark-green);
    color: var(--text-light);
}
.btn-add, .btn-order, .btn-submit-order, .btn-virement {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-add:hover:not(:disabled) {
    background-color: #105a51;
}