/* ============================================================
   HEBY STORE — Styles personnalisés
   Identité visuelle :
     Mauve foncé  : #5e016e  (primaire)
     Mauve pâle   : #8a4b98
     Orange       : #f39200  (CTA / boutons)
     Or           : #e8ca79  (accents premium)
     Gris         : #d1ced2
   ============================================================ */

/* ----------------------------------------------------------
   HERO BANNER — HOMEPAGE
   ---------------------------------------------------------- */

/* Hauteur fixe sur desktop — remplace les 575px des règles bg-image-3-x
   et correspond mieux au ratio des images Heby (1648×640 ≈ 740px @ 1920px)  */
.header-banner.banner .banner-single {
    height: 640px !important;
}

/* Le swiper et ses slides doivent adopter la même hauteur */
.header-banner.banner .swiper,
.header-banner.banner .swiper-wrapper,
.header-banner.banner .swiper-slide {
    height: 640px !important;
}

/* Images couvrent tout le slide sans espace vide (override bg-image: contain) */
.header-banner.banner .banner-single.bg-image {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Le container intérieur doit occuper toute la hauteur pour centrer le texte */
.header-banner.banner .banner-single .container {
    height: 100%;
    display: flex;
    align-items: center;
}

/* grid 3 colonnes — content-box au centre */
.header-banner.banner .single-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding-left: 0 !important;
    width: 100%;
    z-index: 1;
}

.header-banner.banner .content-box {
    grid-column: 2;
    text-align: center;
}

/* Overlay sombre pour lisibilité du texte sur les photos */
.header-banner.banner .banner-single.bg-image::before {
    display: block !important;
    background: rgba(0, 0, 0, 0.40) !important;
    opacity: 1 !important;
}

/* Mobile — hauteur réduite */
@media (max-width: 768px) {
    .header-banner.banner .banner-single,
    .header-banner.banner .swiper,
    .header-banner.banner .swiper-wrapper,
    .header-banner.banner .swiper-slide {
        height: 420px !important;
    }
    .header-banner.banner .content-box {
        grid-column: 1 / -1;
    }
}

/* ----------------------------------------------------------
   OVERRIDES GLOBAUX DU TEMPLATE
   ---------------------------------------------------------- */

/* Boutons CTA principaux → Orange */
.slider-btn2,
.heby-btn-primary {
    background-color: var(--theme-orange) !important;
    border-color: var(--theme-orange) !important;
    color: #fff !important;
}
.slider-btn2:hover,
.heby-btn-primary:hover {
    background-color: #d97f00 !important;
    border-color: #d97f00 !important;
}

/* Topbar liens actifs */
.welcome-text a {
    color: var(--theme-gold) !important;
}

/* Logo texte Heby Store (si SVG remplacé) */
.heby-logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--theme-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
}
.heby-logo-text span {
    color: var(--theme-orange);
}

/* Étoiles de notation → Or */
.star-rating .fas.fa-star,
.star-rating .fas.fa-star-half-alt {
    color: var(--theme-gold) !important;
}

/* Accentuation des prix → Mauve foncé */
.price, .product-price {
    color: var(--theme-color) !important;
    font-weight: 700;
}

/* Tags produits */
.new-tag.product-tag {
    background-color: var(--theme-orange) !important;
}
.discount-tag.product-tag {
    background-color: var(--theme-color) !important;
}

/* ----------------------------------------------------------
   SECTION : ANNONCE TOPBAR
   ---------------------------------------------------------- */
.heby-announcement {
    background-color: var(--theme-color);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.heby-announcement a {
    color: var(--theme-gold);
    font-weight: 700;
    text-decoration: underline;
    margin-left: 8px;
}

/* ----------------------------------------------------------
   SECTION : POURQUOI CHOISIR HEBY STORE
   ---------------------------------------------------------- */
.heby-why-section {
    background: linear-gradient(135deg, #fdf6ff 0%, #fff8ee 100%);
    padding: 80px 0;
}
.heby-why-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-color-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.heby-why-section .section-badge::before,
.heby-why-section .section-badge::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--theme-orange);
}
.heby-why-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--theme-color);
    margin-bottom: 16px;
    line-height: 1.2;
}
.heby-why-section .section-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 560px;
}
.heby-why-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(94, 1, 110, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.heby-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(94, 1, 110, 0.15);
}
.heby-why-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 26px;
}
.heby-why-card .card-icon-gold {
    background: linear-gradient(135deg, #c9a227, var(--theme-gold));
}
.heby-why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 10px;
}
.heby-why-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------------------------
   SECTION : TÉMOIGNAGES
   ---------------------------------------------------------- */
.heby-testimonials-section {
    background-color: var(--theme-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.heby-testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.heby-testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.heby-testimonials-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.heby-testimonials-section .section-badge::before,
.heby-testimonials-section .section-badge::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--theme-gold);
}
.heby-testimonials-section .section-title {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 50px;
}
.heby-testi-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    z-index: 1;
}
.heby-testi-card .quote-icon {
    color: var(--theme-gold);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}
.heby-testi-card .testi-text {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}
.heby-testi-card .testi-stars {
    color: var(--theme-gold);
    font-size: 14px;
    margin-bottom: 16px;
}
.heby-testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.heby-testi-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-orange), var(--theme-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}
.heby-testi-card .author-name {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin: 0;
}
.heby-testi-card .author-location {
    color: var(--theme-gold);
    font-size: 12px;
    margin: 0;
}

/* ----------------------------------------------------------
   SECTION : CALL TO ACTION FINAL
   ---------------------------------------------------------- */
.heby-cta-section {
    background: linear-gradient(135deg, rgba(94,1,110,0.92) 0%, rgba(138,75,152,0.88) 100%),
                url('../images/background/banner-slide-bg.jpg') center/cover no-repeat;
    padding: 90px 0;
    text-align: center;
}
.heby-cta-section .cta-badge {
    display: inline-block;
    background-color: var(--theme-gold);
    color: var(--theme-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.heby-cta-section h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.heby-cta-section h2 span {
    color: var(--theme-gold);
}
.heby-cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.heby-btn-cta {
    display: inline-block;
    background-color: var(--theme-orange);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 42px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 6px;
}
.heby-btn-cta:hover {
    background-color: #d97f00;
    transform: translateY(-2px);
}
.heby-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 6px;
}
.heby-btn-outline:hover {
    border-color: var(--theme-gold);
    color: var(--theme-gold) !important;
}

/* ----------------------------------------------------------
   SECTION : CATÉGORIES PERSONNALISÉES
   ---------------------------------------------------------- */
.heby-categories-section {
    padding: 70px 0;
    background-color: #fafafa;
}
.heby-category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    cursor: pointer;
    display: block;
    text-decoration: none !important;
}
.heby-category-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.heby-category-card:hover img {
    transform: scale(1.06);
}
.heby-category-card .cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(94,1,110,0.85));
    padding: 30px 20px 20px;
    text-align: center;
}
.heby-category-card .cat-name {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
}
.heby-category-card .cat-count {
    color: var(--theme-gold);
    font-size: 13px;
}
.heby-category-card .cat-arrow {
    display: inline-block;
    background-color: var(--theme-orange);
    color: #fff;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.3s;
}
.heby-category-card:hover .cat-arrow {
    background-color: var(--theme-gold);
    color: var(--theme-color);
}

/* Section headers personnalisés */
.heby-section-header {
    text-align: center;
    margin-bottom: 44px;
}
.heby-section-header .sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-color-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.heby-section-header .sub-badge::before,
.heby-section-header .sub-badge::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--theme-orange);
}
.heby-section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--theme-color);
    text-transform: uppercase;
    margin: 0;
}

/* ----------------------------------------------------------
   NEWSLETTER POPUP — Heby Store
   ---------------------------------------------------------- */
.rts-newsletter-popup {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-light) 100%);
}
.rts-newsletter-popup .newsletter-heading {
    color: var(--theme-gold);
}

/* ----------------------------------------------------------
   TRUST STRIP (bande de services)
   ---------------------------------------------------------- */
.heby-trust-strip {
    padding: 28px 0;
    background: #fff;
    border-top: 3px solid #5e016e;
    border-bottom: 1px solid #f0e8f5;
}
.heby-trust-item {
    padding: 12px 10px;
}
.heby-trust-item .trust-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #5e016e, #8a4b98);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    color: #fff; font-size: 18px;
}
.heby-trust-item .trust-icon--gold {
    background: linear-gradient(135deg, #e8ca79, #d4a800);
    color: #5e016e;
}
.heby-trust-item h5 {
    font-size: 0.85rem; font-weight: 700;
    color: #5e016e; margin-bottom: 3px;
}
.heby-trust-item p {
    font-size: 0.78rem; color: #888; margin: 0; line-height: 1.4;
}

/* ----------------------------------------------------------
   QUICK CATEGORY TILES
   ---------------------------------------------------------- */
.heby-shop-cats-section {
    padding: 50px 0;
    background: #f8f4fb;
}
.heby-shop-cats-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}
.heby-shop-cats-header h2 {
    font-size: 1.4rem; font-weight: 800; color: #5e016e; margin: 0;
}
.view-all-link {
    color: #f39200; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; display: flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
}
.view-all-link:hover { color: #d97f00; gap: 10px; }

.heby-cat-tile {
    display: flex; align-items: center; gap: 14px;
    background: #fff; border-radius: 12px;
    border: 1px solid #e8e0f0;
    padding: 14px 14px;
    text-decoration: none;
    transition: all 0.25s;
    overflow: hidden;
}
.heby-cat-tile:hover {
    border-color: #5e016e;
    box-shadow: 0 6px 24px rgba(94,1,110,0.12);
    transform: translateY(-2px);
}
.heby-cat-tile__img {
    width: 70px; height: 70px; border-radius: 10px;
    overflow: hidden; flex-shrink: 0;
    background: #f8f4fb;
}
.heby-cat-tile__img img {
    width: 100%; height: 100%; object-fit: cover;
}
.heby-cat-tile__body { flex: 1; min-width: 0; }
.heby-cat-tile__body h4 {
    font-size: 0.88rem; font-weight: 700;
    color: #333; margin: 0 0 3px; line-height: 1.3;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.heby-cat-tile__body span {
    font-size: 0.75rem; color: #8a4b98;
}
.heby-cat-tile__arrow {
    color: #d1ced2; font-size: 12px; flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}
.heby-cat-tile:hover .heby-cat-tile__arrow {
    color: #5e016e; transform: translateX(4px);
}

/* ----------------------------------------------------------
   PROMO BANNERS 2-COL
   ---------------------------------------------------------- */
.heby-promo-banners {
    padding: 50px 0;
    background: #fff;
}
.heby-promo-box {
    border-radius: 16px !important;
    overflow: hidden;
    min-height: 260px;
    text-decoration: none;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 40px 40px 40px 40px !important;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.heby-promo-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}
.heby-promo-box--mauve {
    background: linear-gradient(135deg, #5e016e 0%, #8a4b98 100%);
}
.heby-promo-box--orange {
    background: linear-gradient(135deg, #f39200 0%, #e8ca79 100%);
}
.heby-promo-box .contents { z-index: 2; flex: 1; }
.heby-promo-box .pretitle {
    display: inline-block; background: rgba(255,255,255,0.2);
    color: #fff; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
}
.heby-promo-box .product-title {
    font-size: 1.6rem !important; font-weight: 800 !important;
    color: #fff !important; line-height: 1.2; margin-bottom: 0 !important;
}
.heby-promo-box .go-btn {
    background: rgba(255,255,255,0.2);
    color: #fff !important; border: 2px solid rgba(255,255,255,0.5);
    padding: 10px 22px; border-radius: 25px;
    font-weight: 700; font-size: 13px;
    display: inline-block; cursor: pointer;
    transition: background 0.2s;
}
.heby-promo-box:hover .go-btn {
    background: rgba(255,255,255,0.35);
}
.heby-promo-box .product-thumb {
    width: 180px; flex-shrink: 0; z-index: 2;
    margin-left: 20px;
}
.heby-promo-box .product-thumb img {
    width: 100%; height: 200px; object-fit: cover;
    border-radius: 12px; opacity: 0.9;
}

/* ----------------------------------------------------------
   GRILLE PRODUITS AVEC ONGLETS
   ---------------------------------------------------------- */
.heby-tabbed-products {
    padding: 60px 0;
    background: #f8f4fb;
}
.heby-tabbed-products .recent-products-header {
    display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
    margin-bottom: 30px; border-bottom: 2px solid #e8e0f0; padding-bottom: 20px;
}
.heby-tabbed-products .filter-buttons-group { margin-left: auto; }
.heby-tabbed-products .filter-btn {
    background: transparent; border: none;
    color: #888; font-weight: 600; font-size: 0.9rem;
    padding: 6px 14px; cursor: pointer; border-radius: 20px;
    transition: all 0.2s;
}
.heby-tabbed-products .filter-btn.active,
.heby-tabbed-products .filter-btn:hover {
    background: #5e016e; color: #fff;
}
.heby-tabbed-products .view-btn {
    color: #f39200; font-weight: 600; font-size: 0.85rem;
    text-decoration: none; display: flex; align-items: center; gap: 5px;
}
.heby-tabbed-products .view-btn:hover { color: #d97f00; }
.heby-tabbed-products .products-area.hide { display: none; }

/* ----------------------------------------------------------
   DEAL SECTION — COMPTE À REBOURS
   ---------------------------------------------------------- */

/* ----------------------------------------------------------
   NOUVELLE COLLECTION SLIDER
   ---------------------------------------------------------- */
.heby-collection-slider {
    padding: 60px 0;
    background: #fff;
}

/* ----------------------------------------------------------
   CTA COMPACT
   ---------------------------------------------------------- */
.heby-cta-compact {
    padding: 50px 0;
}
.heby-cta-compact h2 { font-size: 1.8rem; }
.heby-cta-compact .heby-btn-cta,
.heby-cta-compact .heby-btn-outline {
    font-size: 13px; padding: 11px 22px;
}

/* ----------------------------------------------------------
   DEAL SECTION — fond mauve dégradé + textes + countdown
   ---------------------------------------------------------- */
.heby-deal-section {
    background: linear-gradient(135deg, #3a0044 0%, #5e016e 50%, #4a0058 100%);
}

/* Text-stroke sur les textes sans fond pour rester lisibles
   quelle que soit la couleur de l'image de fond */
.heby-deal-section .slider-title {
    text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 0 3px rgba(0,0,0,0.9) !important;
    -webkit-text-stroke: 0.5px rgba(255,255,255,0.4);
}
.heby-deal-section .slider-subtitle {
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    -webkit-text-stroke: 0.3px rgba(255,255,255,0.3);
}
.heby-deal-section .slider-description p {
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Countdown — section9 template (sélecteur exact du template, couleurs heby)
   Le template CSS main.css gère le box + centrage, on surcharge juste les couleurs */
.heby-deal-section.section9 .container-fluid .section-inner .single-inner .content-box .countdown ul li {
    background: rgba(255,255,255,0.12) !important;
    border: 2px solid rgba(232,202,121,0.45) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
    color: #e8ca79 !important;
    text-align: center !important;
    margin-right: 12px !important;
}
.heby-deal-section.section9 .container-fluid .section-inner .single-inner .content-box .countdown ul li:last-child {
    margin-right: 0 !important;
}
.heby-deal-section.section9 .container-fluid .section-inner .single-inner .content-box .countdown ul li span {
    color: #e8ca79 !important;
    font-weight: 800 !important;
}

/* ----------------------------------------------------------
   TÉMOIGNAGES — surcharges couleur
   ---------------------------------------------------------- */
.heby-testi-native .rts-testimonial-section,
.heby-testi-native {
    background: linear-gradient(135deg, #5e016e 0%, #8a4b98 100%);
    padding: 70px 0;
}
.heby-testi-native .slider-inner { text-align: center; padding: 20px; }
.heby-testi-native .description { color: rgba(255,255,255,0.9) !important; font-size: 1.05rem; line-height: 1.8; font-style: italic; }
.heby-testi-native .author-name { color: #e8ca79 !important; font-size: 1.1rem; font-weight: 700; }
.heby-testi-native .author-box p { color: rgba(255,255,255,0.65); }
.heby-testi-native .author-dp { margin-bottom: 14px !important; }
.heby-testi-native .author-dp img {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid #e8ca79 !important;
    padding: 0 !important;
    display: block;
    margin: 0 auto;
}
.heby-testi-native .swiper-pagination-bullet { background: rgba(255,255,255,0.4); }
.heby-testi-native .swiper-pagination-bullet-active { background: #e8ca79; }

/* ----------------------------------------------------------
   SPECIAL OFFER SECTION — surcharges
   ---------------------------------------------------------- */
/* padding-bottom généreux pour compenser le top:-100px du footer-feature1 */
.heby-special-offer { background: #f8f4fb; padding: 70px 0 160px; }
.heby-special-offer .watermark { color: #5e016e !important; }
.heby-special-offer .sub-text { color: #8a4b98 !important; }
.heby-special-offer .subscribe-input { border: 2px solid #5e016e; }
.heby-special-offer .subscribe-btn { background: #f39200 !important; color: #fff !important; }
.heby-special-offer .shop-now-btn1 { color: #f39200 !important; }
.heby-special-offer .shop-now-btn1:hover { color: #5e016e !important; }
.heby-special-offer .collection-text { color: #8a4b98; }
.heby-special-offer .shop-now-box .title { color: #5e016e; }
.heby-special-offer .cart-btn { background: #5e016e !important; color: #fff !important; }

/* ----------------------------------------------------------
   PRODUIT 7 STYLE (offer section 3 banners)
   ---------------------------------------------------------- */
.product-item7 { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.product-item7 .product-image img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.4s; }
.product-item7:hover .product-image img { transform: scale(1.05); }
.product-item7 .bottom-text {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(94,1,110,0.92) 0%, transparent 100%);
    padding: 30px 20px 20px;
}
.product-item7 .sub-title { color: #e8ca79; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; margin: 0 0 4px; }
.product-item7 .title { color: #fff; font-size: 1.2rem; font-weight: 800; margin: 0 0 10px; }
.product-item7 .btn-text { color: #f39200; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: color 0.2s; }
.product-item7 .btn-text:hover { color: #e8ca79; }

/* Onglets produits hide/show */
.products-area.hide { display: none; }

/* ----------------------------------------------------------
   FOOTER — surcharge mineure
   ---------------------------------------------------------- */
.footer-feature1 .box-title {
    color: var(--theme-color);
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 991px) {
    .heby-why-section .section-title { font-size: 28px; }
    .heby-cta-section h2 { font-size: 28px; }
    .heby-category-card img { height: 220px; }
}
@media (max-width: 576px) {
    .heby-why-section { padding: 50px 0; }
    .heby-testimonials-section { padding: 50px 0; }
    .heby-cta-section { padding: 60px 0; }
    .heby-cta-section h2 { font-size: 24px; }
}

/* ===========================================================
   HEBY FOOTER — styles complets indépendants du template
   =========================================================== */

/* Wrapper principal */
.heby-footer {
    background: #1a0020;
    position: relative;
}

/* ── Bande avantages ─────────────────────────────── */
.heby-footer-features {
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.07);
    padding: 0;
}

.hf-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid #f0eaf2;
    height: 100%;
}

.hf-feature-item--last { border-right: none; }

.hf-feature-icon {
    min-width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f8f0ff, #fff4e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #5e016e;
}

.hf-feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a0020;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hf-feature-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* ── Corps du footer ─────────────────────────────── */
.heby-footer-body {
    padding: 60px 0 50px;
}

.hf-col { padding-right: 10px; }

/* Logo */
.hf-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.hf-logo-img {
    height: 64px;
    width: auto;
    flex-shrink: 0;
}
.hf-logo-text {
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}
.hf-logo-text span { color: #f39200; }

/* Description */
.hf-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 24px;
}

/* Contact liste */
.hf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.hf-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.hf-contact-list li i {
    color: #f39200;
    font-size: 16px;
    min-width: 18px;
    margin-top: 3px;
}
.hf-contact-list li div span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}
.hf-contact-list li div a,
.hf-contact-list li div strong {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}
.hf-contact-list li div a:hover { color: #f39200; }

/* Réseaux sociaux */
.hf-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.hf-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: transform .2s, opacity .2s;
}
.hf-social-btn:hover { transform: translateY(-3px); opacity: .85; color: #fff; }
.hf-fb { background: #1877f2; }
.hf-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.hf-wa { background: #25d366; }

/* Titres des widgets */
.hf-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f39200;
    display: inline-block;
}

/* Liens */
.hf-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hf-links li { margin-bottom: 10px; }
.hf-links li a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s, padding-left .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hf-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f39200;
    display: inline-block;
    flex-shrink: 0;
}
.hf-links li a:hover { color: #f39200; padding-left: 4px; }

/* Newsletter */
.hf-newsletter {
    display: flex;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 28px;
}
.hf-newsletter input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: none;
    padding: 12px 14px;
    font-size: 13px;
    color: #fff;
    outline: none;
}
.hf-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.hf-newsletter button {
    background: #f39200;
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}
.hf-newsletter button:hover { background: #d97f00; }

/* Horaires */
.hf-hours h4 {
    font-size: 12px;
    font-weight: 700;
    color: #e8ca79;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.hf-hours h4 i { margin-right: 6px; }
.hf-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hf-hours ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.hf-hours ul li span{
    color:#ffffff;
}
.hf-hours ul li:last-child { border-bottom: none; }
.hf-hours ul li strong { color: #fff; font-weight: 600; }

/* ── Barre de copyright ──────────────────────────── */
.heby-footer-bottom {
    background: #0f0014;
    padding: 16px 0;
}
.hf-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.hf-bottom-inner > span {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}
.hf-bottom-inner > span strong { color: rgba(255,255,255,0.75); }
.hf-bottom-links {
    display: flex;
    gap: 20px;
}
.hf-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color .2s;
}
.hf-bottom-links a:hover { color: #f39200; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 991px) {
    .hf-feature-item { border-right: none; border-bottom: 1px solid #f0eaf2; }
    .hf-feature-item--last { border-bottom: none; }
    .heby-footer-body { padding: 40px 0 30px; }
}
@media (max-width: 576px) {
    .hf-bottom-inner { flex-direction: column; text-align: center; }
    .hf-newsletter { flex-direction: column; }
    .hf-newsletter button { border-radius: 0; }
}

/* btn-text blanc dans la section promo (product-item7) */
.rts-offer-section--promo .product-item7 .bottom-text .btn-text {
    color: #fff !important;
}
.rts-offer-section--promo .product-item7 .bottom-text .btn-text:hover {
    color: #f39200 !important;
}

/* ── Avatar utilisateur dans le header ──────────────────────── */
.hb-account-avatar {
    padding: 0 !important;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5e016e, #8a4b98) !important;
    border: 2px solid #e8ca79 !important;
}
.hb-account-avatar:hover {
    background: linear-gradient(135deg, #8a4b98, #5e016e) !important;
    border-color: #f39200 !important;
}
.hb-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}
.hb-avatar-initials {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    font-family: 'Nunito', sans-serif;
}
