/* ============================================================
   SMART DEALS AFRICA - BOUTIQUE DESIGN SYSTEM
   Inspiré directement de la boutique de luxe :
   Fond ivoire lin, typographie Serif prestigieuse, rouge signature
   ============================================================ */

:root {
    --sd-bg-body: #f7f4f2;
    --sd-bg-card: #ffffff;
    --sd-dark: #121318;
    --sd-dark-card: #181920;
    --sd-red-signature: #c41e24;
    --sd-red-hover: #a8171c;
    --sd-border: #e9e4de;
    --sd-text-main: #14151a;
    --sd-text-muted: #72717d;
    --sd-gold-accent: #d4af37;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    background-color: var(--sd-bg-body) !important;
    color: var(--sd-text-main);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

/* Typographie de prestige */
.font-serif {
    font-family: var(--font-serif) !important;
}

.text-brand-red {
    color: var(--sd-red-signature) !important;
}

.bg-brand-red {
    background-color: var(--sd-red-signature) !important;
    color: #ffffff !important;
}

/* ============================================================
   HEADER MODERNE & ÉPURÉ (Desktop & Mobile)
   ============================================================ */
.sd-header {
    background-color: var(--sd-bg-body);
    border-bottom: 1px solid var(--sd-border);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

/* Logo façon Salif'C / Smart Deals Boutique */
.sd-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.sd-logo-badge {
    width: 44px;
    height: 44px;
    border: 1.5px solid #d4c8be;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 18px;
    color: var(--sd-dark);
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sd-logo-badge span.accent {
    color: var(--sd-red-signature);
}

.sd-logo-text {
    display: flex;
    flex-direction: column;
}

.sd-logo-text .brand-title {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--sd-dark);
    line-height: 1.1;
    text-transform: uppercase;
}

.sd-logo-text .brand-subtitle {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--sd-red-signature);
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 2px;
}

/* Menu desktop centré */
.sd-nav-center {
    display: flex;
    align-items: center;
    gap: 36px;
}

.sd-nav-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #4a4a52;
    text-decoration: none !important;
    padding: 8px 0;
    position: relative;
    transition: color 0.25s ease;
}

.sd-nav-link:hover {
    color: var(--sd-red-signature);
}

.sd-nav-link.active {
    color: var(--sd-red-signature) !important;
    font-weight: 800;
}

/* Barre indicatrice rouge sous le lien actif */
.sd-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--sd-red-signature);
    border-radius: 2px;
}

/* Boutons d'action du header */
.sd-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header-icon {
    background: none;
    border: none;
    color: var(--sd-dark);
    font-size: 17px;
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.btn-header-icon:hover {
    color: var(--sd-red-signature);
    transform: scale(1.1);
}

/* Bouton panier circulaire rouge (Image 1 & 2) */
.btn-circle-cart {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--sd-red-signature);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 14px rgba(196, 30, 36, 0.35);
    transition: all 0.25s ease;
}

.btn-circle-cart:hover {
    background-color: var(--sd-red-hover);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(196, 30, 36, 0.5);
}

.btn-circle-cart i {
    font-size: 16px;
}

.btn-circle-cart .cart-count-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: #ffffff;
    color: var(--sd-red-signature);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--sd-red-signature);
    line-height: 1;
}

/* ============================================================
   HERO SECTION MOBILE & DESKTOP (Conforme Image 2)
   ============================================================ */
.sd-hero-card {
    background: linear-gradient(180deg, #2b2e38 0%, #15161c 65%, #0f1014 100%);
    border-radius: 20px;
    color: #ffffff;
    padding: 40px 28px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

@media (min-width: 992px) {
    .sd-hero-card {
        padding: 65px 55px;
        border-radius: 26px;
    }
}

.sd-hero-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(196, 30, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sd-hero-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sd-red-signature);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-hero-title {
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 32px;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .sd-hero-title {
        font-size: 52px;
    }
}

.sd-hero-quote {
    font-family: var(--font-serif);
    font-style: italic;
    color: #e63946;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 14px;
}

.sd-hero-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-bottom: 24px;
}

.sd-hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--sd-red-signature);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: 6px;
    border: none;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 36, 0.4);
}

.btn-hero-primary:hover {
    background-color: var(--sd-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 36, 0.6);
}

.btn-hero-secondary {
    background-color: rgba(20, 21, 26, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 6px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
    background-color: #ffffff;
    color: var(--sd-dark) !important;
    border-color: #ffffff;
}

/* ============================================================
   SECTION "TENDANCES DU MOMENT" (Conforme Image 2)
   ============================================================ */
.sd-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.sd-section-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sd-red-signature);
    margin-bottom: 6px;
}

.sd-section-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--sd-dark);
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .sd-section-title {
        font-size: 34px;
    }
}

.sd-nav-arrows {
    display: flex;
    gap: 8px;
}

.sd-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--sd-border);
    background: #ffffff;
    color: var(--sd-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.sd-arrow-btn:hover {
    background: var(--sd-red-signature);
    color: #ffffff;
    border-color: var(--sd-red-signature);
}

/* ============================================================
   CARTES PRODUITS ÉPURÉES (Conforme Image Utilisateur)
   Reproduction exacte : Badge haut-gauche, Cœur haut-droite,
   Kicker marque, Titre Serif, Prix rouge vif et double bouton +Panier / WhatsApp
   ============================================================ */
.sd-product-card,
.product-item .service-item {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid var(--sd-border) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    position: relative !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
}

.sd-product-card:hover,
.product-item .service-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
    border-color: #d8d0c8 !important;
}

.sd-product-img-wrapper,
.product-item .service-item .position-relative.overflow-hidden {
    position: relative !important;
    width: 100% !important;
    height: 230px !important;
    background: #fdfdfd !important;
    overflow: hidden !important;
}

.sd-product-img-wrapper img,
.product-item .service-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.45s ease !important;
}

.sd-product-card:hover .sd-product-img-wrapper img,
.product-item .service-item:hover img {
    transform: scale(1.06) !important;
}

/* Bouton favoris cœur flottant en haut à droite (Conforme Image) */
.sd-card-heart,
.product-item .service-item .sd-card-heart {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    color: #4a4a52 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: all 0.2s ease !important;
    z-index: 5 !important;
}

.sd-card-heart:hover,
.sd-card-heart.active {
    color: var(--sd-red-signature) !important;
    transform: scale(1.12) !important;
}

/* Badge de catégorie flottant en haut à gauche (Conforme Image) */
.sd-card-badge,
.product-item .service-item .product-badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    background: #ffffff !important;
    border: 1px solid #e0ddd7 !important;
    border-radius: 6px !important;
    padding: 4px 10px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    color: #121318 !important;
    z-index: 5 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
}

/* Conteneur des informations */
.sd-product-info,
.product-item .service-item .p-4 {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

/* Kicker sous-titre / marque (ex: APPLE • TITANE) */
.sd-product-cat,
.product-item .service-item small.text-golden {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    color: var(--sd-text-muted) !important;
    margin-bottom: 4px !important;
    display: block !important;
}

/* Titre du produit en Serif */
.sd-product-name,
.product-item .service-item h6 {
    font-family: var(--font-serif) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--sd-dark) !important;
    margin: 4px 0 10px 0 !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 42px !important;
}

/* Description masquée pour garder la carte compacte et propre */
.product-item .service-item p.text-muted {
    display: none !important;
}

/* Prix */
.sd-product-pricing,
.product-item .service-item .prices-line {
    margin-top: auto !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
}

.sd-price-current,
.product-item .service-item .price-promo {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--sd-red-signature) !important;
    margin: 0 !important;
}

.sd-price-old,
.product-item .service-item .price-original {
    font-size: 13px !important;
    color: #999999 !important;
    text-decoration: line-through !important;
    margin-left: 6px !important;
}

/* Ligne des boutons d'action (Bouton Noir +Panier & Bouton Vert WhatsApp) */
.sd-product-btns,
.product-item .service-item .action-line {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    width: 100% !important;
}

.btn-sd-cart,
.product-item .service-item .btn-cart-sm {
    flex: 1 !important;
    background-color: var(--sd-dark) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
    height: 42px !important;
}

.btn-sd-cart:hover,
.product-item .service-item .btn-cart-sm:hover {
    background-color: var(--sd-red-signature) !important;
    transform: translateY(-1px) !important;
}

.btn-sd-wa,
.product-item .service-item .btn-whatsapp-sm {
    background-color: #25D366 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    width: 44px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
}

.btn-sd-wa:hover,
.product-item .service-item .btn-whatsapp-sm:hover {
    background-color: #1da851 !important;
    transform: scale(1.06) !important;
}

/* Masquer le vieux texte "Commander" dans le bouton whatsapp pour garder seulement l'icône verte carrée */
.product-item .service-item .btn-whatsapp-sm {
    font-size: 0 !important;
}

.product-item .service-item .btn-whatsapp-sm i {
    font-size: 20px !important;
}

/* ============================================================
   BANDEAU DE CATÉGORIE & RÉASSURANCE STYLE ORAIMO
   Inspiré directement de ci.oraimo.com
   ============================================================ */
.oraimo-cat-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f6f2ec 100%);
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 18px;
    border: 1px solid #e7e0d8;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
    .oraimo-cat-banner {
        padding: 32px 30px;
    }
}

.oraimo-cat-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 800;
    color: var(--sd-dark);
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .oraimo-cat-title {
        font-size: 32px;
    }
}

.oraimo-cat-desc {
    font-size: 13.5px;
    color: var(--sd-text-muted);
    margin-bottom: 0;
    max-width: 700px;
    line-height: 1.55;
}

/* Bandeau de réassurance horizontal défilant (Trust Bar Oraimo) */
.oraimo-trust-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    border-top: 1px solid #ede8e1;
    border-bottom: 1px solid #ede8e1;
    margin-bottom: 16px;
    scrollbar-width: none;
}

.oraimo-trust-bar::-webkit-scrollbar {
    display: none;
}

.oraimo-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    white-space: nowrap;
}

.oraimo-trust-item i {
    color: var(--sd-red-signature);
    font-size: 14px;
}

/* Barre de filtres et compteur de résultats Oraimo */
.oraimo-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ede8e1;
}

.oraimo-results-count {
    font-size: 14px;
    font-weight: 700;
    color: #121318;
}

.oraimo-sort-select {
    border: 1px solid #dcd7cf;
    background: #ffffff;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    outline: none;
}

/* ============================================================
   DESIGN EXACT DU BADGE PRODUIT (CONFORME IMAGE 1 DE L'UTILISATEUR)
   Compact, soigné, sans étirement, aux coins arrondis
   ============================================================ */
.product-badge,
.sd-card-badge,
.product-item .service-item .product-badge,
.sd-product-card .sd-card-badge {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: fit-content !important;
    background: #ffffff !important;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 6px !important;
    padding: 3px 8px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 5 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

/* Bouton cœur favoris rond blanc en haut à droite (Conforme Image 1) */
.sd-card-heart,
.product-item .service-item .sd-card-heart,
.sd-product-card .sd-card-heart {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    left: auto !important;
    bottom: auto !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    color: #333333 !important;
    cursor: pointer !important;
    z-index: 5 !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
}

.sd-card-heart:hover,
.product-item .service-item .sd-card-heart:hover {
    transform: scale(1.08) !important;
    color: var(--sd-red-signature) !important;
}

/* Pastille note avis étoile en bas à gauche (Conforme Image 1) */
.oraimo-rating-pill {
    position: absolute !important;
    bottom: 10px !important;
    left: 10px !important;
    background: #ffffff !important;
    border: 1px solid #ebebeb !important;
    border-radius: 50px !important;
    padding: 2.5px 8px !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    color: #222222 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    z-index: 5 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
    line-height: 1.2 !important;
}

.oraimo-rating-pill i {
    color: #f59e0b !important;
    font-size: 9.5px !important;
}

.oraimo-rating-pill span {
    color: #777777 !important;
    font-weight: 500 !important;
    font-size: 10px !important;
}

/* ============================================================
   DESIGN UNIVERSEL DES PILULES DE CATÉGORIES (CONFORME IMAGE 2)
   Pilule active ROUGE, pilules inactives BLANCHES avec icône ROUGE
   ============================================================ */
.sd-filter-pills,
.sd-category-pills,
#categoryFilterPills {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    overflow-x: auto !important;
    padding: 6px 2px 14px 2px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
}

.sd-filter-pills::-webkit-scrollbar,
.sd-category-pills::-webkit-scrollbar,
#categoryFilterPills::-webkit-scrollbar {
    display: none !important;
}

.filter-btn,
.sd-filter-pill,
.sd-cat-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    border-radius: 50px !important;
    padding: 8px 18px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    background: #ffffff !important;
    color: #1a1a1a !important;
    border: 1px solid #e2e2e2 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    outline: none !important;
    line-height: 1.3 !important;
}

/* Icône rouge dans chaque pilule inactive */
.filter-btn i,
.sd-filter-pill i,
.sd-cat-pill i,
.filter-btn .cat-icon,
.sd-filter-pill .cat-icon {
    color: #c41e24 !important;
    font-size: 14px !important;
    transition: color 0.25s ease !important;
}

/* Pilule active : Fond Rouge Signature, texte Blanc (Conforme Image 2) */
.filter-btn.active,
.sd-filter-pill.active,
.sd-cat-pill.active {
    background: #c41e24 !important;
    color: #ffffff !important;
    border-color: #c41e24 !important;
    box-shadow: 0 2px 8px rgba(196, 30, 36, 0.28) !important;
    font-weight: 700 !important;
}

.filter-btn.active i,
.sd-filter-pill.active i,
.sd-cat-pill.active i,
.filter-btn.active .cat-icon,
.sd-filter-pill.active .cat-icon {
    color: #ffffff !important;
}

/* Survol des pilules */
.filter-btn:hover:not(.active),
.sd-filter-pill:hover:not(.active),
.sd-cat-pill:hover:not(.active) {
    background: #fdfdfd !important;
    border-color: #c41e24 !important;
    color: #c41e24 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08) !important;
}

/* ============================================================
   GRILLE MOBILE EN 2 COLONNES (STYLE ORAIMO)
   ============================================================ */
@media (max-width: 767px) {
    #productGrid .product-item {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
        margin-bottom: 8px !important;
    }

    .sd-product-img-wrapper,
    .product-item .service-item .position-relative.overflow-hidden {
        height: 160px !important;
    }

    .sd-card-heart,
    .product-item .service-item .sd-card-heart {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
        top: 6px !important;
        right: 6px !important;
    }

    .sd-product-info,
    .product-item .service-item .p-4 {
        padding: 10px 8px !important;
    }

    .sd-product-cat,
    .product-item .service-item small.text-golden {
        font-size: 9px !important;
        margin-bottom: 2px !important;
    }

    .sd-product-name,
    .product-item .service-item h6 {
        font-size: 12.5px !important;
        min-height: 32px !important;
        margin: 2px 0 6px 0 !important;
        line-height: 1.2 !important;
    }

    .sd-product-pricing,
    .product-item .service-item .prices-line {
        margin-bottom: 8px !important;
        gap: 4px !important;
    }

    .sd-price-current,
    .product-item .service-item .price-promo {
        font-size: 14.5px !important;
    }

    .sd-price-old,
    .product-item .service-item .price-original {
        font-size: 10.5px !important;
        margin-left: 4px !important;
    }

    .btn-sd-cart,
    .product-item .service-item .btn-cart-sm {
        padding: 6px 8px !important;
        font-size: 10px !important;
        height: 34px !important;
        letter-spacing: 0 !important;
    }

    .btn-sd-wa,
    .product-item .service-item .btn-whatsapp-sm {
        width: 34px !important;
        height: 34px !important;
    }

    .btn-sd-wa i,
    .product-item .service-item .btn-whatsapp-sm i {
        font-size: 15px !important;
    }
}


/* ============================================================
   BADGE FILTRES DE LA BOUTIQUE
   ============================================================ */
.sd-filter-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.sd-filter-pills::-webkit-scrollbar {
    display: none;
}

.sd-filter-pill {
    background: #ffffff;
    border: 1px solid var(--sd-border);
    color: var(--sd-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.sd-filter-pill:hover,
.sd-filter-pill.active {
    background: var(--sd-red-signature);
    color: #ffffff;
    border-color: var(--sd-red-signature);
}

/* Modal et Tiroir Panier assortis */
.cart-offcanvas {
    background-color: #ffffff;
}

.cart-offcanvas .offcanvas-header {
    background-color: var(--sd-dark);
    border-bottom: 2px solid var(--sd-red-signature);
}
