/* ============================================================
   TWOTAILS PREMIUM DESIGN - GLASSMORPHISM EDITION
   Theme: Warehouse - PrestaShop
   Version: 2.0 - 2025
   ============================================================ */

/* ===========================================
   1. VARIABLES CSS GLOBALES
   =========================================== */
:root {
    --tt-primary: #e85a5a;
    --tt-primary-dark: #d64545;
    --tt-primary-light: #ff7b7b;
    --tt-secondary: #2d3748;
    --tt-accent: #24b9d7;
    --tt-accent-light: #5ed3e8;
    --tt-success: #48bb78;
    --tt-warning: #f6ad55;
    --tt-gradient-primary: linear-gradient(135deg, #e85a5a 0%, #ff7b7b 100%);
    --tt-gradient-accent: linear-gradient(135deg, #24b9d7 0%, #5ed3e8 100%);
    --tt-gradient-dark: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    --tt-glass-bg: rgba(255, 255, 255, 0.85);
    --tt-glass-border: rgba(255, 255, 255, 0.3);
    --tt-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --tt-shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
    --tt-shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.15);
    --tt-radius-sm: 8px;
    --tt-radius-md: 12px;
    --tt-radius-lg: 16px;
    --tt-radius-xl: 24px;
    --tt-font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --tt-font-display: 'Plus Jakarta Sans', var(--tt-font-main);
    --tt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================
   2. TYPOGRAPHIE GLOBALE
   =========================================== */
body {
    font-family: var(--tt-font-main) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--tt-font-display) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}


/* ===========================================
   17. FOOTER PREMIUM - REFONTE COMPLETE
   =========================================== */

/* Footer principal */
.tt-footer {
    background: #1e293b !important;
    color: #94a3b8 !important;
    padding: 0 !important;
}

.tt-footer__main {
    padding: 60px 0 40px !important;
}

.tt-footer__content {
    display: grid !important;
    grid-template-columns: 1.2fr 2fr !important;
    gap: 60px !important;
    align-items: start !important;
}

/* Colonne Brand (gauche) */
.tt-footer__brand {
    max-width: 280px !important;
}

.tt-footer__logo {
    display: inline-block !important;
    margin-bottom: 16px !important;
    text-decoration: none !important;
}

.tt-footer__logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    color: #e85a5a !important;
    letter-spacing: -0.02em !important;
}

.tt-footer__tagline {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #94a3b8 !important;
    margin-bottom: 24px !important;
}

.tt-footer__tagline .paw-emoji {
    display: inline !important;
}

/* Infos contact */
.tt-footer__info {
    background: rgba(255,255,255,0.05) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin-top: 20px !important;
}

.tt-footer__info p {
    margin: 6px 0 !important;
    font-size: 13px !important;
    color: #cbd5e1 !important;
    line-height: 1.5 !important;
}

.tt-footer__info strong {
    color: #fff !important;
    font-weight: 600 !important;
}

/* Colonnes de liens (droite) */
.tt-footer__links {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
}

.tt-footer__column {
    min-width: 0 !important;
}

.tt-footer__title {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid rgba(255,255,255,0.1) !important;
}

.tt-footer__title svg {
    width: 18px !important;
    height: 18px !important;
    stroke: #e85a5a !important;
    flex-shrink: 0 !important;
}

.tt-footer__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tt-footer__list li {
    margin-bottom: 10px !important;
}

.tt-footer__list a {
    font-size: 14px !important;
    color: #94a3b8 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
}

.tt-footer__list a:hover {
    color: #e85a5a !important;
    padding-left: 4px !important;
}

/* Footer bottom bar */
.tt-footer__bottom {
    background: rgba(0,0,0,0.2) !important;
    padding: 24px 0 !important;
}

.tt-footer__bottom-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

/* Icônes paiement */
.tt-footer__payment {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.tt-footer__payment img {
    height: 24px !important;
    width: auto !important;
    opacity: 0.8 !important;
    transition: opacity 0.2s ease !important;
}

.tt-footer__payment img:hover {
    opacity: 1 !important;
}

/* Liens légaux */
.tt-footer__legal {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.tt-footer__legal a {
    font-size: 13px !important;
    color: #64748b !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.tt-footer__legal a:hover {
    color: #e85a5a !important;
}

/* Copyright */
.tt-footer__copyright {
    font-size: 13px !important;
    color: #64748b !important;
    margin: 0 !important;
}

/* Responsive footer */
@media (max-width: 991px) {
    .tt-footer__content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .tt-footer__brand {
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .tt-footer__info {
        display: inline-block !important;
        text-align: left !important;
    }
    
    .tt-footer__links {
        grid-template-columns: repeat(3, 1fr) !important;
        text-align: left !important;
    }
    
    .tt-footer__bottom-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .tt-footer__legal {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .tt-footer__links {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .tt-footer__payment {
        justify-content: center !important;
    }
}

/* ===========================================
   18. ANIMATIONS GLOBALES
   =========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===========================================
   19. RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 991px) {
    #main .product-container {
        padding: 24px !important;
        border-radius: var(--tt-radius-lg) !important;
    }
    
    #main h1.page-title {
        font-size: 1.5rem !important;
    }
    
    .product-prices .current-price {
        font-size: 1.5rem !important;
    }
    
    .product-quantity {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .product-add-to-cart .add-to-cart {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    #main .product-container {
        padding: 16px !important;
        margin-top: 16px !important;
    }
    
    .category-header {
        padding: 32px 20px !important;
    }
    
    .category-header h1 {
        font-size: 1.75rem !important;
    }
    
    .product-tabs .nav-link {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
    
    .tab-content {
        padding: 20px !important;
    }
    
    .product-miniature .product-description {
        padding: 16px !important;
    }
}

/* ===========================================
   20. UTILITAIRES
   =========================================== */
.tt-gradient-text {
    background: var(--tt-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tt-glass {
    background: var(--tt-glass-bg) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--tt-glass-border) !important;
}

.tt-shadow-hover {
    transition: var(--tt-transition) !important;
}

.tt-shadow-hover:hover {
    box-shadow: var(--tt-shadow-medium) !important;
    transform: translateY(-4px) !important;
}

/* ===========================================
   21. FOOTER TWOTAILS PREMIUM - EXACT MAQUETTE
   =========================================== */
.tt-footer {
    font-family: var(--tt-font-main) !important;
}

.tt-footer__main {
    background: #f8fafc !important;
    padding: 80px 0 60px !important;
    border-top: 1px solid #e2e8f0 !important;
}

.tt-footer__content {
    display: flex !important;
    justify-content: space-between !important;
    gap: 60px !important;
}

/* Brand Column */
.tt-footer__brand {
    flex: 0 0 280px !important;
    max-width: 280px !important;
}

.tt-footer__logo {
    display: inline-block !important;
    margin-bottom: 20px !important;
    text-decoration: none !important;
}

.tt-footer__logo-text {
    font-family: var(--tt-font-display) !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #e85a5a 0%, #ff8a8a 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.tt-footer__tagline {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #64748b !important;
    margin-bottom: 28px !important;
}

/* Social Icons */
.tt-footer__social {
    display: flex !important;
    gap: 12px !important;
}

.tt-footer__social a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: #334155 !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.tt-footer__social a:hover {
    background: #e85a5a !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(232, 90, 90, 0.4) !important;
}

.tt-footer__social svg {
    width: 16px !important;
    height: 16px !important;
}

/* Links Columns Container */
.tt-footer__links {
    display: flex !important;
    gap: 80px !important;
}

/* Single Column */
.tt-footer__column {
    min-width: 140px !important;
}

footer.tt-footer .tt-footer__title,
footer.tt-footer h4.tt-footer__title,
footer.tt-footer .tt-footer__column h4,
footer#footer .tt-footer__title,
footer#footer h4.tt-footer__title,
.tt-footer__title,
.tt-footer h4,
.tt-footer__column h4 {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 20px !important;
    visibility: visible !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #334155 !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

.tt-footer__title svg {
    color: #e85a5a !important;
    stroke: #e85a5a !important;
    fill: none !important;
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
}

.tt-footer__list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tt-footer__list li {
    margin-bottom: 12px !important;
}

.tt-footer__list a {
    color: #64748b !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.tt-footer__list a:hover {
    color: #e85a5a !important;
}

/* Bottom Bar */
.tt-footer__bottom {
    background: #f1f5f9 !important;
    padding: 24px 0 !important;
    border-top: 1px solid #e2e8f0 !important;
}

.tt-footer__bottom-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

/* Payment Icons */
.tt-footer__payment {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.tt-footer__payment img {
    height: 22px !important;
    opacity: 1 !important;
    filter: none !important;
    transition: all 0.3s ease !important;
}

.tt-footer__payment img:hover {
    transform: scale(1.1) !important;
}

/* Legal Links */
.tt-footer__legal {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.tt-footer__legal a {
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.tt-footer__legal a:hover {
    color: #e85a5a !important;
}

/* Copyright */
.tt-footer__copyright {
    color: #64748b !important;
    font-size: 13px !important;
    margin: 0 !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .tt-footer__content {
        gap: 40px !important;
    }
    
    .tt-footer__links {
        gap: 50px !important;
    }
}

@media (max-width: 991px) {
    .tt-footer__main {
        padding: 60px 0 40px !important;
    }
    
    .tt-footer__content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .tt-footer__brand {
        flex: none !important;
        max-width: 100% !important;
        margin-bottom: 40px !important;
    }
    
    .tt-footer__social {
        justify-content: center !important;
    }
    
    .tt-footer__links {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 40px !important;
    }
    
    .tt-footer__column {
        text-align: left !important;
    }
    
    .tt-footer__bottom-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .tt-footer__legal {
        justify-content: center !important;
    }
}

@media (max-width: 575px) {
    .tt-footer__links {
        flex-direction: column !important;
        gap: 32px !important;
    }
    
    .tt-footer__column {
        text-align: center !important;
    }
    
    .tt-footer__title {
        justify-content: center !important;
    }
    
    .tt-footer__list a:hover {
        padding-left: 0 !important;
    }
    
    .tt-footer__payment {
        justify-content: center !important;
    }
}

/* Hide old footer */
#footer-container-main,
.footer-container.footer-style-1,
.footer-container.footer-style-2,
.footer-container.footer-style-3,
.footer-container.footer-style-4,
.footer-container.footer-style-5 {
    display: none !important;
}

/* ===========================================
   PRODUCT CARDS - BEAUTIFUL MODERN DESIGN
   =========================================== */

/* Product Card Container */
.product-miniature,
.js-product-miniature {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e5e7eb !important;
    transition: all 0.4s ease !important;
    position: relative !important;
}

.product-miniature:hover,
.js-product-miniature:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-8px) !important;
}

/* Image wrapper */
.product-miniature .thumbnail-container,
.product-miniature .product-thumbnail {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border-radius: 16px 16px 0 0 !important;
}

.product-miniature .product-thumbnail img {
    transition: transform 0.5s ease !important;
}

.product-miniature:hover .product-thumbnail img {
    transform: scale(1.05) !important;
}

/* Badges / Flags */
.product-miniature .product-flags,
.product-miniature .product-flag {
    top: 12px !important;
    left: 12px !important;
}

.product-miniature .product-flag {
    padding: 6px 12px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    border-radius: 6px !important;
    border: 1px solid #e5e7eb !important;
}

.product-miniature .product-flag.new {
    background: linear-gradient(135deg, #10b981, #34d399) !important;
    color: #fff !important;
}

.product-miniature .product-flag.on-sale,
.product-miniature .product-flag.discount {
    background: linear-gradient(135deg, #ef4444, #f87171) !important;
    color: #fff !important;
}

.product-miniature .product-flag.pack,
.product-miniature .product-flag.online-only {
    background: linear-gradient(135deg, #f59e0b, #fbbf24) !important;
    color: #fff !important;
}

/* Product content */
.product-miniature .product-description {
    padding: 16px !important;
    background: #ffffff !important;
}

/* Brand / Manufacturer */
.product-miniature .product-manufacturer,
.product-miniature .manufacturer-name {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #e85a5a !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 4px !important;
}

/* Product title */
.product-miniature .product-title,
.product-miniature .product-title a {
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    text-decoration: none !important;
}

.product-miniature .product-title a:hover {
    color: #e85a5a !important;
}

/* Hide ratings */
.product-miniature .star-content,
.product-miniature .comments_note,
.product-miniature .product-comments,
.product-miniature .iqitreviews-mini {
    display: none !important;
}

/* Price */
.product-miniature .product-price-and-shipping {
    margin: 12px 0 !important;
}

.product-miniature .regular-price {
    font-size: 14px !important;
    color: #9ca3af !important;
    text-decoration: line-through !important;
    font-weight: 400 !important;
}

.product-miniature .price,
.product-miniature .product-price {
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #e85a5a !important;
}

/* Add to cart button */
.product-miniature .add-to-cart,
.product-miniature .ajax_add_to_cart_button,
.product-miniature .add-to-cart-btn,
.product-miniature button[data-button-action="add-to-cart"] {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    background: #ffffff !important;
    color: #e85a5a !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    border: 2px solid #fee2e2 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.product-miniature .add-to-cart:hover,
.product-miniature .ajax_add_to_cart_button:hover,
.product-miniature .add-to-cart-btn:hover,
.product-miniature button[data-button-action="add-to-cart"]:hover {
    background: linear-gradient(135deg, #e85a5a, #ff6b6b) !important;
    border-color: #e85a5a !important;
    color: #fff !important;
}

/* Quick view & wishlist buttons */
.product-miniature .quick-view,
.product-miniature .wishlist-button-add {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    transition: all 0.3s ease !important;
}

.product-miniature .quick-view:hover,
.product-miniature .wishlist-button-add:hover {
    background: #e85a5a !important;
    border-color: #e85a5a !important;
    color: #fff !important;
}

/* Discount percentage */
.product-miniature .discount-percentage,
.product-miniature .discount-amount {
    background: linear-gradient(135deg, #ef4444, #f87171) !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
}

/* ===========================================
   TWOTAILS CUSTOM PRODUCT CARDS - CATEGORY STYLE
   Matching "Vous aimerez aussi" design
   =========================================== */

/* Card container */
.product-miniature,
.js-product-miniature,
article.product-miniature,
article.js-product-miniature {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04) !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
}

.product-miniature:hover,
.js-product-miniature:hover,
article.product-miniature:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
    border-color: #e0e0e0 !important;
    transform: translateY(-4px) !important;
}

/* Image container */
.tt-product-card__image {
    position: relative !important;
    background: #f5f5f5 !important;
    aspect-ratio: 1 !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
    border-bottom: none !important;
}

.tt-product-card__image-link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.tt-product-card__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-miniature:hover .tt-product-card__img {
    transform: scale(1.06) !important;
}

/* Badges */
.tt-product-card__badges {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    z-index: 2 !important;
}

.tt-product-card__badge {
    padding: 6px 14px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-radius: 20px !important;
    color: #fff !important;
    width: fit-content !important;
    line-height: 1.2 !important;
}

.tt-product-card__badge--new {
    background: #E85D5D !important;
}

.tt-product-card__badge--discount,
.tt-product-card__badge--on-sale {
    background: #DC2626 !important;
}

.tt-product-card__badge--pack,
.tt-product-card__badge--online-only {
    background: #f59e0b !important;
}

/* Content container */
.tt-product-card__content {
    padding: 16px 16px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    background: #fff !important;
}

/* Brand */
article.product-miniature .tt-product-card__content .tt-product-card__brand,
.product-miniature .tt-product-card__content .tt-product-card__brand,
.tt-product-card__content > .tt-product-card__brand,
span.tt-product-card__brand {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #6B7280 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 4px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    line-height: 1.4 !important;
}

/* Title */
.tt-product-card__title {
    margin: 0 0 10px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    min-height: auto !important;
    color: #1A1A2E !important;
    padding: 0 !important;
}

.tt-product-card__title a {
    color: #1A1A2E !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.tt-product-card__title a:hover {
    color: #E85D5D !important;
}

/* Price row - inline with rating */
.tt-product-card__price-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin-top: auto !important;
}

.tt-product-card__price-current {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #E85D5D !important;
}

.tt-product-card__price-old {
    font-size: 13px !important;
    color: #6B7280 !important;
    text-decoration: line-through !important;
}

/* Rating inline */
.tt-product-card__rating {
    display: inline-flex !important;
    align-items: center !important;
    margin-left: auto !important;
}

.tt-product-card__rating .grade-stars,
.tt-product-card__rating .star_content,
.tt-product-card__rating .star-content {
    display: inline-flex !important;
    align-items: center !important;
    gap: 1px !important;
}

.tt-product-card__rating .grade-stars .star,
.tt-product-card__rating .star_content .star,
.tt-product-card__rating .star-content .star {
    font-size: 12px !important;
    color: #F59E0B !important;
}

.tt-product-card__rating .nb-comments,
.tt-product-card__rating .reviews-count,
.tt-product-card__rating .count {
    font-size: 12px !important;
    color: #6B7280 !important;
    margin-left: 4px !important;
}

/* Hide add-to-cart button, stock info, and ALL old warehouse elements */
.tt-product-card__form,
.tt-product-card__btn,
.product-miniature .product-description,
.product-miniature .thumbnail-container,
.product-miniature .product-flags:not(.tt-product-card__badges),
.product-miniature .highlighted-informations,
.product-miniature .product-actions,
.product-miniature .product-availability,
.product-miniature .iqitreviews-mini,
.product-miniature #ocs_product_stock_info,
.product-miniature .ocs_modal,
.product-miniature .ocs_btn_open_modal,
.product-miniature [id^="ocs_"],
.product-miniature .quick-view,
.product-miniature .product-flag,
.product-miniature .product-list-reviews,
.product-miniature .comments_note,
.product-miniature .regular-price,
.product-miniature .discount,
.product-miniature .product-price-and-shipping,
.product-miniature .variant-links,
.product-miniature .product-miniature-default > .product-description,
.product-miniature .product-miniature-default > .thumbnail-container,
.product-miniature .product-miniature-default > div:not(.tt-product-card__image):not(.tt-product-card__content),
.product-miniature .product-miniature-default > a:not(.tt-product-card__image-link),
article.product-miniature > div:not(.tt-product-card__image):not(.tt-product-card__content):not([class*="tt-product"]),
article.product-miniature > span:not([class*="tt-product"]) {
    display: none !important;
}

/* Product discount badge from PrestaShop */
.product-miniature .discount-percentage,
.product-miniature .discount-amount {
    background: #DC2626 !important;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-size: 11px !important;
}


/* ===========================================
   PRODUCT TABS - BEST-SELLERS STYLE
   =========================================== */

/* Tab navigation container */
.elementor-nav-menu,
.elementor-nav-menu--main,
ul.menu-item {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    border: 1px solid #e5e7eb !important;
    background: transparent !important;
    list-style: none !important;
}

/* Individual tab buttons - Pill style */
a.elementor-item,
.elementor-item {
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    text-decoration: none !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50px !important;
    background: #ffffff !important;
    transition: all 0.25s ease !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    cursor: pointer !important;
}

/* Remove underline */
a.elementor-item::before,
a.elementor-item::after,
.elementor-item::before,
.elementor-item::after {
    display: none !important;
    border: 1px solid #e5e7eb !important;
    background: none !important;
}

/* Hover state */
a.elementor-item:hover,
.elementor-item:hover {
    color: #334155 !important;
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
}

/* Active state - Dark blue background */
a.elementor-item.elementor-item-active,
a.elementor-item-active,
.elementor-item.elementor-item-active {
    color: #fff !important;
    background: #334155 !important;
    border-color: #334155 !important;
    box-shadow: none !important;
}

/* ===========================================
   PRODUCT CARDS - STYLE PREMIUM TWOTAILS
   =========================================== */

/* Card container */
.product-miniature,
.js-product-miniature {
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid #f0f0f0 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-miniature:hover,
.js-product-miniature:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-6px) !important;
    border-color: #e5e5e5 !important;
}

/* Image container */
.product-miniature .thumbnail-container,
.product-miniature .product-thumbnail {
    position: relative !important;
    background: #fafafa !important;
    padding: 20px !important;
    display: block !important;
}

.product-miniature .product-thumbnail img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transition: transform 0.4s ease !important;
}

.product-miniature:hover .product-thumbnail img {
    transform: scale(1.05) !important;
}

/* Badge NOUVEAU / PROMO */
.product-miniature .product-flags,
.product-miniature .product-flag {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 2 !important;
}

.product-miniature .product-flag {
    display: inline-block !important;
    padding: 6px 14px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    border-radius: 6px !important;
    border: none !important;
}

.product-miniature .product-flag.new {
    background: #dcfce7 !important;
    color: #16a34a !important;
}

.product-miniature .product-flag.on-sale,
.product-miniature .product-flag.discount {
    background: #fee2e2 !important;
    color: #dc2626 !important;
}

.product-miniature .product-flag.pack {
    background: #fef3c7 !important;
    color: #d97706 !important;
}

/* Wishlist button */
.product-miniature .wishlist-button-add,
.product-miniature .wishlist-btn,
.product-miniature [class*="wishlist"] {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
    background: #e8f5e9 !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    z-index: 2 !important;
}

.product-miniature .wishlist-button-add:hover,
.product-miniature .wishlist-btn:hover {
    background: #c8e6c9 !important;
    transform: scale(1.1) !important;
}

.product-miniature .wishlist-button-add i,
.product-miniature .wishlist-btn i,
.product-miniature .wishlist-button-add svg {
    color: #4caf50 !important;
    font-size: 18px !important;
}

/* Product content area */
.product-miniature .product-description {
    padding: 20px !important;
    background: #ffffff !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Product title */
.product-miniature .product-title,
.product-miniature .product-title a {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
    text-decoration: none !important;
    display: block !important;
    min-height: 44px !important;
}

.product-miniature .product-title a:hover {
    color: #e85a5a !important;
}

/* Price section */
.product-miniature .product-price-and-shipping {
    margin-top: auto !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.product-miniature .price,
.product-miniature .product-price {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #f97316 !important;
}

.product-miniature .regular-price {
    font-size: 14px !important;
    color: #9ca3af !important;
    text-decoration: line-through !important;
}

/* Discount badge */
.product-miniature .discount-percentage,
.product-miniature .discount-amount {
    display: inline-block !important;
    padding: 4px 10px !important;
    background: #f97316 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
}

/* Stock availability */
.product-miniature .product-availability,
.product-miniature .availability {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #16a34a !important;
    margin-bottom: 16px !important;
}

.product-miniature .product-availability::before {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    background: #16a34a !important;
    border-radius: 50% !important;
}

/* Add to cart button */
.product-miniature .add-to-cart,
.product-miniature .ajax_add_to_cart_button,
.product-miniature button[data-button-action="add-to-cart"],
.product-miniature .add-to-cart-button {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px 20px !important;
    background: linear-gradient(135deg, #e85a5a 0%, #ff7b7b 100%) !important;
    color: #fff !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 4px 12px rgba(232, 90, 90, 0.3) !important;
}

.product-miniature .add-to-cart:hover,
.product-miniature .ajax_add_to_cart_button:hover,
.product-miniature button[data-button-action="add-to-cart"]:hover {
    background: linear-gradient(135deg, #d64545 0%, #e85a5a 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(232, 90, 90, 0.4) !important;
}

.product-miniature .add-to-cart i,
.product-miniature .ajax_add_to_cart_button i {
    font-size: 16px !important;
}

/* Add to cart button - coral/red style */
.product-miniature .add-to-cart,
.product-miniature .ajax_add_to_cart_button,
.product-miniature button[data-button-action="add-to-cart"] {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    background: #e85a5a !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    margin-top: 12px !important;
}

.product-miniature .add-to-cart:hover,
.product-miniature .ajax_add_to_cart_button:hover,
.product-miniature button[data-button-action="add-to-cart"]:hover {
    background: #d64545 !important;
    transform: scale(1.02) !important;
}

/* Image container */
.product-miniature .thumbnail-container,
.product-miniature .product-thumbnail {
    background: #fafafa !important;
    border-radius: 12px 12px 0 0 !important;
}


/* ===========================================
   PRODUCT CARDS - CLEAN MINIMAL DESIGN V2
   =========================================== */

/* Reset and clean card */
.product-miniature,
.js-product-miniature {
    background: #fff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: none !important;
    border: 1px solid #eaeaea !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-miniature:hover,
.js-product-miniature:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border-color: #ddd !important;
}

/* Image area - clean white */
.product-miniature .thumbnail-container,
.product-miniature .product-thumbnail {
    background: #fff !important;
    padding: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-miniature .product-thumbnail img {
    max-height: 180px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
}

.product-miniature:hover .product-thumbnail img {
    transform: scale(1.03) !important;
}

/* Content area */
.product-miniature .product-description {
    padding: 16px 16px 20px !important;
    background: #fff !important;
    border-top: 1px solid #f5f5f5 !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Brand - small and subtle */
.product-miniature .product-manufacturer,
.product-miniature .manufacturer-name {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 6px !important;
}

/* Product title - clean */
.product-miniature .product-title,
.product-miniature .product-title a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
    text-decoration: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 42px !important;
}

.product-miniature .product-title a:hover {
    color: #e85a5a !important;
}

/* Price - prominent */
.product-miniature .product-price-and-shipping {
    margin-top: auto !important;
    margin-bottom: 14px !important;
}

.product-miniature .price,
.product-miniature .product-price {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #111 !important;
}

.product-miniature .regular-price {
    font-size: 14px !important;
    color: #aaa !important;
    text-decoration: line-through !important;
    margin-right: 10px !important;
}

/* Button - clean coral */
.product-miniature .add-to-cart,
.product-miniature .ajax_add_to_cart_button,
.product-miniature button[data-button-action="add-to-cart"] {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 20px !important;
    background: #e85a5a !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    border-radius: 6px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.product-miniature .add-to-cart:hover,
.product-miniature .ajax_add_to_cart_button:hover {
    background: #d64545 !important;
}

/* Hide duplicate info */
.product-miniature .product-flags {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 2 !important;
}

.product-miniature .product-flag {
    padding: 4px 10px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    background: #10b981 !important;
    color: #fff !important;
    border: none !important;
}

.product-miniature .product-flag.on-sale,
.product-miniature .product-flag.discount {
    background: #ef4444 !important;
}


/* Footer info section */
.tt-footer__info {
    margin-top: 20px !important;
}
.tt-footer__info p {
    margin: 8px 0 !important;
    font-size: 14px !important;
    color: #94a3b8 !important;
}
.tt-footer__info strong {
    color: #fff !important;
}
.tt-footer__contact,
.tt-footer__hours,
.tt-footer__phone {
    line-height: 1.5 !important;
}


/* ===========================================
   NOS UNIVERS - CATEGORIES SECTION
   =========================================== */

/* Section container */
.elementor-element-2a4ab9c,
[data-id="2a4ab9c"] {
    padding: 60px 0 80px !important;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%) !important;
}

/* Section title "Nos Univers" */
.elementor-element-e09c496 .elementor-heading-title,
.elementor-element-59b4157 .elementor-heading-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    letter-spacing: -0.02em !important;
}

/* Category columns container */
.elementor-element-2a4ab9c .elementor-row {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
}

/* Each category column */
.elementor-element-2a4ab9c .elementor-column {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 160px !important;
    text-align: center !important;
    transition: transform 0.3s ease !important;
}

.elementor-element-2a4ab9c .elementor-column:hover {
    transform: translateY(-8px) !important;
}

/* Category image container */
.elementor-element-2a4ab9c .elementor-image {
    width: 140px !important;
    height: 140px !important;
    margin: 0 auto 16px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
}

.elementor-element-2a4ab9c .elementor-column:hover .elementor-image {
    box-shadow: 0 12px 40px rgba(22, 163, 74, 0.25) !important;
    transform: scale(1.05) !important;
}

/* Category image */
.elementor-element-2a4ab9c .elementor-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

/* Category title */
.elementor-element-2a4ab9c .elementor-widget-heading .elementor-heading-title {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-top: 8px !important;
    transition: color 0.3s ease !important;
}

.elementor-element-2a4ab9c .elementor-column:hover .elementor-heading-title {
    color: #16a34a !important;
}

/* ===========================================
   NOS UNIVERS - RESPONSIVE
   =========================================== */

@media (max-width: 1200px) {
    .elementor-element-2a4ab9c .elementor-row {
        gap: 24px !important;
    }
    
    .elementor-element-2a4ab9c .elementor-column {
        max-width: 140px !important;
    }
    
    .elementor-element-2a4ab9c .elementor-image {
        width: 120px !important;
        height: 120px !important;
    }
}

@media (max-width: 991px) {
    .elementor-element-2a4ab9c,
    [data-id="2a4ab9c"] {
        padding: 40px 15px 60px !important;
    }
    
    .elementor-element-e09c496 .elementor-heading-title,
    .elementor-element-59b4157 .elementor-heading-title {
        font-size: 2rem !important;
        margin-bottom: 35px !important;
    }
    
    .elementor-element-2a4ab9c .elementor-row {
        gap: 20px !important;
        justify-content: center !important;
    }
    
    .elementor-element-2a4ab9c .elementor-column {
        max-width: 120px !important;
        flex: 0 0 calc(33.33% - 20px) !important;
    }
    
    .elementor-element-2a4ab9c .elementor-image {
        width: 100px !important;
        height: 100px !important;
    }
    
    .elementor-element-2a4ab9c .elementor-widget-heading .elementor-heading-title {
        font-size: 12px !important;
    }
}

@media (max-width: 575px) {
    .elementor-element-2a4ab9c,
    [data-id="2a4ab9c"] {
        padding: 30px 15px 50px !important;
    }
    
    .elementor-element-e09c496 .elementor-heading-title,
    .elementor-element-59b4157 .elementor-heading-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
    }
    
    .elementor-element-2a4ab9c .elementor-row {
        gap: 20px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .elementor-element-2a4ab9c .elementor-column {
        flex: 0 0 calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
    }
    
    .elementor-element-2a4ab9c .elementor-image {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 12px !important;
    }
    
    .elementor-element-2a4ab9c .elementor-widget-heading .elementor-heading-title {
        font-size: 12px !important;
        letter-spacing: 0.03em !important;
    }
}

/* ===========================================
   HEADER MOBILE / RESPONSIVE - REFONTE COMPLETE
   =========================================== */

@media (max-width: 991px) {
    
    /* === HEADER PRINCIPAL === */
    #header,
    header#header {
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    }
    
    #header .header-top,
    .header-top {
        padding: 12px 14px !important;
        background: #fff !important;
        border-bottom: 1px solid #eef2f7 !important;
        min-height: 64px !important;
    }
    
    /* Container flex pour aligner les éléments */
    #header .header-top .container,
    #header .header-top .row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }
    
    /* === LOGO MOBILE === */
    #header .header-logo,
    .header-logo,
    #header .logo {
        order: 2 !important;
        flex: 0 0 auto !important;
        max-width: 112px !important;
        margin: 0 auto !important;
    }
    
    #header .header-logo img,
    .header-logo img,
    #header .logo img {
        max-height: 40px !important;
        width: auto !important;
        display: block !important;
    }
    
    /* Cacher le tagline sur mobile */
    #header .header-logo .logo-tagline,
    .header-logo span:not(.logo-text),
    #header .logo-tagline {
        display: none !important;
    }
    
    /* === ICONES GAUCHE (menu + search) === */
    #header .header-top-left,
    .header-top-left {
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    /* === ICONES DROITE (user + cart) === */
    #header .header-top-right,
    .header-top-right {
        order: 3 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    /* === STYLE DES ICONES MOBILE === */
    #header .header-top i,
    #header .header-top .material-icons,
    .header-top i {
        font-size: 22px !important;
        color: #1e293b !important;
    }
    
    #header .header-top a,
    .header-top a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        color: #1e293b !important;
        text-decoration: none !important;
        border-radius: 14px !important;
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06) !important;
        transition: all 0.2s ease !important;
    }

    #header .header-top-left a,
    #header .header-top-right a {
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
    }
    
    #header .header-top a:active {
        background: #f1f5f9 !important;
        transform: scale(0.95) !important;
    }
    
    /* === BOUTON MENU BURGER === */
    #header .iqitmegamenu-mobile-toggle,
    .iqitmegamenu-mobile-toggle,
    #header .menu-icon,
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 14px !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
    }
    
    #header .iqitmegamenu-mobile-toggle:active,
    .iqitmegamenu-mobile-toggle:active {
        background: #e2e8f0 !important;
        transform: scale(0.95) !important;
    }
    
    #header .iqitmegamenu-mobile-toggle i,
    .iqitmegamenu-mobile-toggle i {
        font-size: 22px !important;
        color: #1e293b !important;
    }
    
    /* === BOUTON RECHERCHE === */
    #header .search-widget-icon,
    #header .search-toggle,
    .header-top .search-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        border-radius: 14px !important;
    }
    
    /* === PANIER MOBILE === */
    #header .blockcart,
    .blockcart {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
        border: none !important;
        border-radius: 14px !important;
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25) !important;
    }
    
    #header .blockcart i,
    .blockcart i {
        color: #fff !important;
        font-size: 22px !important;
    }
    
    #header .blockcart .cart-products-count,
    .blockcart .cart-products-count {
        position: absolute !important;
        top: -6px !important;
        right: -6px !important;
        min-width: 20px !important;
        height: 20px !important;
        padding: 0 6px !important;
        background: #16a34a !important;
        color: #fff !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        line-height: 20px !important;
        text-align: center !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3) !important;
    }
    
    /* === ICONE USER === */
    #header .user-info,
    #header .header-top-right .user-info {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 14px !important;
    }
    
    #header .user-info i {
        color: #64748b !important;
        font-size: 20px !important;
    }
    
    /* === CACHER WISHLIST COMPLETEMENT SUR MOBILE === */
    #header .wishlist-link,
    #header [class*="wishlist"],
    .header-top .wishlist,
    #header .iqitwishlistplus,
    .iqitwishlistplus-link,
    .wishlist-button,
    #wishlist_block_top,
    .header-top [href*="wishlist"],
    #header a[title*="Wishlist"],
    #header a[title*="wishlist"],
    .blockcart-wishlist,
    #_desktop_wishlist,
    .wishlist-products-count,
    a[href*="iqitwishlist"],
    #iqitwishlist-nb,
    .fa-heart-o,
    #header a[href*="wishlist"],
    .header-top a[href*="wishlist"] {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* === CACHER LA BARRE DE RECHERCHE INLINE === */
    #header .search-widget,
    #header #search_widget,
    .header-top .search-widget {
        display: none !important;
    }
    
    /* === MENU MOBILE - STYLE TWOTAILS === */
    
    /* Header du menu - fond vert */
    .mobile-menu__header-wrapper {
        background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
    }
    
    /* Icônes et texte du header en blanc */
    .mobile-menu__header-wrapper .fa,
    .mobile-menu__title,
    .mobile-menu__back-btn,
    .mobile-menu__close {
        color: #fff !important;
    }
    
    /* Liens du menu */
    .mobile-menu__link {
        color: #1e293b !important;
        font-weight: 500 !important;
    }
    
    .mobile-menu__link:hover {
        background: #f0fdf4 !important;
        color: #16a34a !important;
    }
    
    /* Icône home en vert */
    .mobile-menu__link .fa-home {
        color: #16a34a !important;
    }
    
    /* === MENU MOBILE PLEINE LARGEUR === */
    .col-mobile-menu-push #_mobile_iqitmegamenu-mobile {
        width: 100vw !important;
        max-width: 100vw !important;
    }
    
    /* === PROMO BANNER MOBILE === */
    #header .header-banner,
    .header-banner,
    .promo-bar {
        padding: 8px 15px !important;
        font-size: 11px !important;
        text-align: center !important;
    }
    
    /* === CACHER ELEMENTS DESKTOP === */
    #header .hidden-sm-down,
    .header-nav-main,
    #iqitmegamenu-horizontal {
        display: none !important;
    }
}

/* === PETIT MOBILE (< 576px) === */
@media (max-width: 575px) {
    
    #header .header-top {
        padding: 8px 10px !important;
    }
    
    #header .header-logo,
    .header-logo {
        max-width: 80px !important;
    }
    
    #header .header-logo img,
    .header-logo img {
        max-height: 38px !important;
    }
    
    #header .header-top i {
        font-size: 20px !important;
    }
    
    #header .iqitmegamenu-mobile-toggle,
    .iqitmegamenu-mobile-toggle {
        width: 36px !important;
        height: 36px !important;
    }
    
    #iqitmegamenu-mobile ul li a,
    .iqitmegamenu-mobile ul li a {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }
}

/* ===========================================
   WINTER SLIDER BANNER
   =========================================== */

.winter-slider-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%);
}

.winter-slider-section .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 30px;
}

.winter-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.winter-slider::-webkit-scrollbar {
    display: none;
}

.winter-slider__slide {
    flex: 0 0 calc(50% - 10px);
    min-width: 300px;
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winter-slider__slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.winter-slider__slide a {
    display: block;
    text-decoration: none;
}

.winter-slider__slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.winter-slider__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.winter-slider__tag {
    display: inline-block;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.winter-slider__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .winter-slider__slide {
        flex: 0 0 85%;
        min-width: 280px;
    }
    
    .winter-slider__slide img {
        height: 220px;
    }
    
    .winter-slider__title {
        font-size: 1rem;
    }
}


/* ===========================================

/* ==========================================================================
   DESCRIPTION PRODUIT - VERSION SOBRE
   ========================================================================== */

.elementor-widget-product-description .elementor-widget-container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 30px 0 !important;
    color: #334155 !important;
    line-height: 1.6 !important;
}

/* Titres */
.elementor-widget-product-description .elementor-widget-container h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 40px 0 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #f1f5f9 !important;
}

.elementor-widget-product-description .elementor-widget-container h2:first-child {
    margin-top: 0 !important;
}

/* Paragraphes */
.elementor-widget-product-description .elementor-widget-container p {
    margin-bottom: 1.5rem !important;
    font-size: 15px !important;
    text-align: left !important;
}

/* Listes */
.elementor-widget-product-description .elementor-widget-container ul {
    margin: 20px 0 !important;
    padding-left: 20px !important;
    list-style-type: disc !important;
}

.elementor-widget-product-description .elementor-widget-container ul li {
    margin-bottom: 8px !important;
    padding-left: 5px !important;
}

/* Tableaux */
.elementor-widget-product-description .elementor-widget-container table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 30px 0 !important;
    border: 1px solid #e2e8f0 !important;
}

.elementor-widget-product-description .elementor-widget-container table th {
    background: #f8fafc !important;
    padding: 12px 15px !important;
    text-align: left !important;
    font-weight: 600 !important;
    border-bottom: 2px solid #e2e8f0 !important;
    color: #475569 !important;
}

.elementor-widget-product-description .elementor-widget-container table td {
    padding: 12px 15px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    font-size: 14px !important;
}

.elementor-widget-product-description .elementor-widget-container table tr:last-child td {
    border-bottom: none !important;
}

/* Accents discrets */
.elementor-widget-product-description .elementor-widget-container strong {
    color: #0f172a !important;
}

.elementor-widget-product-description .elementor-widget-container a {
    color: var(--tt-primary, #e30613) !important;
    text-decoration: underline !important;
}

/* Responsive */
@media (max-width: 768px) {
    .elementor-widget-product-description .elementor-widget-container {
        padding: 20px 15px !important;
    }
    
    .elementor-widget-product-description .elementor-widget-container h2 {
        font-size: 1.25rem !important;
    }
}
