/**
 * BienHabillé - Elementor Widgets CSS
 */

/* ============================================== */
/* 1. BH SLIDER */
/* ============================================== */
.bh-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.bh-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.bh-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bh-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bh-slide__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bh-slide__video iframe,
.bh-slide__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bh-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.bh-slide__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    z-index: 3;
    box-sizing: border-box;
}

.bh-slide__content--left { align-items: flex-start; text-align: left; }
.bh-slide__content--center { align-items: center; text-align: center; }
.bh-slide__content--right { align-items: flex-end; text-align: right; }

.bh-slide__content--v-top { justify-content: flex-start; }
.bh-slide__content--v-center { justify-content: center; }
.bh-slide__content--v-bottom { justify-content: flex-end; }

.bh-slide__subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.bh-slide__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.bh-slide__description {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 30px 0;
    max-width: 600px;
}

.bh-slide__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bh-slide__button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.bh-slide__button:hover {
    background-color: #000000;
    color: #ffffff;
}

.bh-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.bh-slider__arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.bh-slider__arrow--prev { left: 20px; }
.bh-slider__arrow--next { right: 20px; }

.bh-slider .swiper-pagination {
    bottom: 20px !important;
}

.bh-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.bh-slider .swiper-pagination-bullet-active {
    background: #ffffff;
}

.swiper-slide-active {
    z-index: 2 !important;
}

@media (max-width: 768px) {
    .bh-slide__title {
        font-size: 28px;
    }
    .bh-slide__content {
        padding: 20px;
    }
    .bh-slider__arrow {
        width: 40px;
        height: 40px;
    }
    .bh-slider__arrow--prev { left: 10px; }
    .bh-slider__arrow--next { right: 10px; }
}

/* ============================================== */
/* 2. BH CATEGORY BAR */
/* ============================================== */
.bh-catbar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.bh-catbar__wrapper {
    flex: 1;
    overflow: hidden;
}

.bh-catbar__list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.bh-catbar__list::-webkit-scrollbar {
    display: none;
}

.bh-catbar__item {
    flex-shrink: 0;
    min-width: 140px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bh-catbar__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bh-catbar__item--has-image .bh-catbar__title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 2px;
}

.bh-catbar__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bh-catbar__title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.bh-catbar__arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: opacity 0.3s ease;
}

.bh-catbar__arrow--prev {
    background: linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
}

@media (max-width: 768px) {
    .bh-catbar__arrow {
        display: none !important;
    }
    .bh-catbar__item {
        min-width: 120px;
        height: 100px;
    }
}

/* ============================================== */
/* 3. BH CATEGORY GRID */
/* ============================================== */
.bh-catgrid {
    padding: 20px 0;
}

.bh-catgrid__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.bh-catgrid__item {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.bh-catgrid__item:hover {
    transform: translateY(-5px);
}

.bh-catgrid__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.bh-catgrid__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bh-catgrid__item:hover .bh-catgrid__image {
    transform: scale(1.05);
}

.bh-catgrid__image--placeholder {
    background-color: #f0f0f0;
}

.bh-catgrid__title {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

@media (max-width: 1024px) {
    .bh-catgrid__grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .bh-catgrid__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .bh-catgrid--mobile-scroll .bh-catgrid__grid {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .bh-catgrid--mobile-scroll .bh-catgrid__item {
        min-height: 0;
    }
}

/* ============================================== */
/* 4. BH CATEGORY CAROUSEL */
/* ============================================== */
.bh-catcarousel {
    padding: 40px 20px;
}

.bh-catcarousel--archive {
    padding-top: 10px;
    padding-bottom: 24px;
}

.bh-catcarousel__title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 30px 0;
    text-align: center;
}

.bh-catcarousel__container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bh-catcarousel__wrapper {
    flex: 1;
    overflow: hidden;
}

.bh-catcarousel__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.bh-catcarousel__item--current .bh-catcarousel__label {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.bh-catcarousel__item:hover {
    transform: translateY(-5px);
}

.bh-catcarousel__circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
}

.bh-catcarousel__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bh-catcarousel__circle--placeholder {
    background-color: #e8e8e8;
}

.bh-catcarousel__circle--placeholder .bh-catcarousel__circle-text {
    color: #333333;
    font-size: 20px;
}

.bh-catcarousel__circle-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    padding: 10px;
}

.bh-catcarousel__label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.bh-catcarousel__arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.bh-catcarousel__arrow:hover {
    background: #f0f0f0;
    border-color: #000000;
}

@media (max-width: 1024px) {
    .bh-catcarousel__circle {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .bh-catcarousel {
        padding: 20px 10px;
    }
    .bh-catcarousel__circle {
        width: 80px;
        height: 80px;
    }
    .bh-catcarousel__arrow {
        width: 40px;
        height: 40px;
    }
    .bh-catcarousel__circle-text {
        font-size: 12px;
    }
}

/* ============================================== */
/* 5. BH PRODUCTS GRID */
/* ============================================== */
.bh-products-grid {
    padding: 30px 0;
}
.bh-products-grid__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #000;
}
.bh-products-grid__grid {
    display: grid;
    gap: 20px;
}
.bh-products-grid--masonry {
    column-fill: balance;
}
.bh-products-grid__item {
    text-align: center;
}
.bh-products-grid__link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}
.bh-products-grid__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.bh-products-grid__img--1x1 { aspect-ratio: 1/1; }
.bh-products-grid__img--3x4 { aspect-ratio: 3/4; }
.bh-products-grid__img--4x3 { aspect-ratio: 4/3; }
.bh-products-grid__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bh-products-grid__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.bh-products-grid__badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
}
.bh-products-grid__badge--sale { background: #e74c3c; color: #fff; }
.bh-products-grid__badge--featured { background: #000; color: #fff; }
.bh-products-grid__actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.bh-products-grid__item:hover .bh-products-grid__actions {
    opacity: 1;
}
.bh-products-grid__action {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
}
.bh-products-grid__action:hover { background: #000; color: #fff; }
.bh-products-grid__grid--overlay .bh-products-grid__link { position: relative; min-height: 200px; }
.bh-products-grid__grid--overlay .bh-products-grid__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}
.bh-products-grid__grid--overlay .bh-products-grid__price,
.bh-products-grid__grid--overlay .bh-products-grid__name { color: #fff; }
.bh-products-grid__grid--bordered .bh-products-grid__link { border: 1px solid #eee; border-radius: 4px; }
.bh-products-grid__body { padding: 15px 0 0; }
.bh-products-grid__name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px;
}
.bh-products-grid__rating { margin-bottom: 5px; }
.bh-products-grid__price {
    font-size: 14px;
    color: #666;
}
.bh-products-grid__load-more { text-align: center; margin-top: 30px; }
.bh-products-grid__load-more-btn {
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
}

/* ============================================== */
/* 6. BH HERO BANNER */
/* ============================================== */
.bh-hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.bh-hero-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.bh-hero-banner__overlay {
    position: absolute;
    inset: 0;
}
.bh-hero-banner__content {
    position: relative;
    z-index: 2;
    padding: 40px;
    text-align: center;
}
.bh-hero-banner__bg { position: absolute; inset: 0; }
.bh-hero-banner__bg-image,
.bh-hero-banner__bg-color,
.bh-hero-banner__bg-gradient { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bh-hero-banner__bg-video { position: absolute; inset: 0; }
.bh-hero-banner__bg-video iframe { width: 100%; height: 100%; object-fit: cover; }
.bh-hero-banner--parallax .bh-hero-banner__bg-image { background-attachment: fixed; }
.bh-hero-banner--kenburns .bh-hero-banner__bg-image { animation: bh-kenburns 20s ease-out infinite; }
@keyframes bh-kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
.bh-hero-banner__content { display: flex; flex-direction: column; gap: 15px; }
.bh-hero-banner--top-left .bh-hero-banner__content { align-items: flex-start; text-align: left; justify-content: flex-start; }
.bh-hero-banner--top-center .bh-hero-banner__content { align-items: center; text-align: center; justify-content: flex-start; }
.bh-hero-banner--top-right .bh-hero-banner__content { align-items: flex-end; text-align: right; justify-content: flex-start; }
.bh-hero-banner--center-left .bh-hero-banner__content { align-items: flex-start; text-align: left; justify-content: center; }
.bh-hero-banner--center .bh-hero-banner__content { align-items: center; text-align: center; justify-content: center; }
.bh-hero-banner--center-right .bh-hero-banner__content { align-items: flex-end; text-align: right; justify-content: center; }
.bh-hero-banner--bottom-left .bh-hero-banner__content { align-items: flex-start; text-align: left; justify-content: flex-end; }
.bh-hero-banner--bottom-center .bh-hero-banner__content { align-items: center; text-align: center; justify-content: flex-end; }
.bh-hero-banner--bottom-right .bh-hero-banner__content { align-items: flex-end; text-align: right; justify-content: flex-end; }
.bh-hero-banner--left .bh-hero-banner__content { text-align: left; align-items: flex-start; }
.bh-hero-banner--right .bh-hero-banner__content { text-align: right; align-items: flex-end; }
.bh-hero-banner__buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.bh-hero-banner__text { margin: 0; color: rgba(255,255,255,0.9); }
.bh-hero-banner__scroll { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; animation: bh-scroll-bounce 2s infinite; }
@keyframes bh-scroll-bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.bh-hero-banner__subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin: 0 0 10px;
}
.bh-hero-banner__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}
.bh-hero-banner__btn {
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}
.bh-hero-banner__btn:hover { opacity: 0.9; }

/* ============================================== */
/* 7. BH NEWSLETTER */
/* ============================================== */
.bh-newsletter {
    padding: 40px 20px;
    text-align: center;
}
.bh-newsletter__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}
.bh-newsletter__desc {
    margin: 0 0 20px;
    color: #666;
}
.bh-newsletter__form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.bh-newsletter__input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.bh-newsletter__btn {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
}

/* ============================================== */
/* 8. BH TRUST BADGES */
/* ============================================== */
.bh-trust-badges {
    padding: 30px 20px;
}
.bh-trust-badges__grid {
    display: grid;
    gap: 20px;
}
.bh-trust-badges__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.bh-trust-badges__icon {
    flex-shrink: 0;
    font-size: 24px;
}
.bh-trust-badges__title {
    font-weight: 600;
    font-size: 14px;
}
.bh-trust-badges__text {
    display: block;
    font-size: 12px;
    color: #666;
}

/* ============================================== */
/* 9. BH FAQ ACCORDION */
/* ============================================== */
.bh-faq-accordion {
    padding: 20px 0;
}
.bh-faq-accordion__item {
    border-bottom: 1px solid #eee;
}
.bh-faq-accordion__trigger {
    width: 100%;
    padding: 15px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bh-faq-accordion__icon {
    font-size: 20px;
    transition: transform 0.3s;
}
.bh-faq-accordion__item--open .bh-faq-accordion__icon {
    transform: rotate(45deg);
}
.bh-faq-accordion__content {
    padding: 0 20px 15px;
    color: #666;
    font-size: 14px;
}
.bh-faq-accordion--icon-left .bh-faq-accordion__trigger { display: flex; align-items: center; gap: 10px; }
.bh-faq-accordion--icon-left .bh-faq-accordion__icon { order: -1; }
.bh-faq-accordion--card .bh-faq-accordion__item { margin-bottom: 10px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.bh-faq-accordion--card .bh-faq-accordion__trigger { border-radius: 8px; }

/* ============================================== */
/* 10. BH BREADCRUMB */
/* ============================================== */
.bh-breadcrumb {
    padding: 15px 0;
    font-size: 13px;
}
.bh-breadcrumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.bh-breadcrumb__item a:hover { text-decoration: underline; }
.bh-breadcrumb__sep {
    opacity: 0.6;
}

/* ============================================== */
/* 11. BH BACK TO TOP */
/* ============================================== */
.bh-back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s;
}
.bh-back-to-top:hover { opacity: 0.9; }
.bh-back-to-top--bottom-right { bottom: 20px; right: 20px; }
.bh-back-to-top--bottom-left { bottom: 20px; left: 20px; }
.bh-back-to-top--bottom-center { bottom: 20px; left: 50%; transform: translateX(-50%); }

/* ============================================== */
/* 12. BH ICON BOX */
/* ============================================== */
.bh-icon-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
}
.bh-icon-box--top { flex-direction: column; align-items: center; text-align: center; }
.bh-icon-box--left { flex-direction: row; text-align: left; }
.bh-icon-box--right { flex-direction: row-reverse; text-align: right; }
.bh-icon-box__icon {
    flex-shrink: 0;
    font-size: 32px;
}
.bh-icon-box__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}
.bh-icon-box__desc {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* ============================================== */
/* 13. BH TESTIMONIALS */
/* ============================================== */
.bh-testimonials {
    padding: 40px 20px;
}
.bh-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.bh-testimonials__card {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
}
.bh-testimonials__stars {
    margin-bottom: 10px;
}
.bh-testimonials__star {
    color: #ddd;
}
.bh-testimonials__star.active { color: #ffc107; }
.bh-testimonials__quote {
    font-size: 16px;
    font-style: italic;
    margin: 0 0 15px;
}
.bh-testimonials__author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bh-testimonials__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.bh-testimonials__name {
    font-weight: 600;
    font-size: 14px;
}
.bh-testimonials .swiper-pagination { margin-top: 15px; }

/* ============================================== */
/* 14. BH PRODUCTS CAROUSEL */
/* ============================================== */
.bh-products-carousel { padding: 30px 0; }
.bh-products-carousel__title { font-size: 24px; font-weight: 700; margin: 0 0 20px; }
.bh-products-carousel__swiper { overflow: hidden; }
.bh-products-carousel__slide { text-align: center; }
.bh-products-carousel__link { text-decoration: none; color: inherit; display: block; }
.bh-products-carousel__image { width: 100%; aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.bh-products-carousel__image img { width: 100%; height: 100%; object-fit: cover; }
.bh-products-carousel__name { font-size: 14px; font-weight: 600; margin: 10px 0 5px; }
.bh-products-carousel__price { font-size: 14px; color: #666; }

/* ============================================== */
/* 15. BH COUNTDOWN BANNER */
/* ============================================== */
.bh-countdown-banner { display: flex; align-items: center; justify-content: center; gap: 15px; flex-wrap: wrap; padding: 20px; }
.bh-countdown-banner__unit { text-align: center; }
.bh-countdown-banner__value { font-size: 32px; font-weight: 700; display: block; }
.bh-countdown-banner__label { font-size: 12px; text-transform: uppercase; }

/* ============================================== */
/* 16. BH TABS */
/* ============================================== */
.bh-tabs__list { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.bh-tabs__tab { padding: 10px 20px; border: none; background: #f5f5f5; cursor: pointer; border-radius: 4px; }
.bh-tabs__tab.active { background: #000; color: #fff; }
.bh-tabs__content { display: none; }
.bh-tabs__content.active { display: block; }

/* ============================================== */
/* 17. BH ACCORDION */
/* ============================================== */
.bh-accordion__item { border-bottom: 1px solid #eee; }
.bh-accordion__trigger { width: 100%; padding: 15px; background: none; border: none; text-align: left; cursor: pointer; display: flex; justify-content: space-between; }
.bh-accordion__content { padding: 0 15px 15px; }

/* ============================================== */
/* 18. BH PROGRESS BAR */
/* ============================================== */
.bh-progress-bar { margin-bottom: 15px; }
.bh-progress-bar__label { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 14px; }
.bh-progress-bar__track { height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
.bh-progress-bar__fill { height: 100%; background: #000; border-radius: 4px; transition: width 0.5s ease; }

/* ============================================== */
/* 19. BH PROMO BANNER (base — bannières empilées pleine largeur) */
/* ============================================== */
.bh-promo-banner {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bh-promo-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 55%);
    pointer-events: none;
}
.bh-promo-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 24px 16px;
    max-width: 90%;
}
.bh-promo-banner__title {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.bh-promo-banner__subtitle {
    margin: 0 0 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.95);
}
.bh-promo-banner__discount {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.bh-promo-banner__btn {
    display: inline-block;
    padding: 12px 28px;
    background: #000;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}
.bh-promo-banner__btn:hover { opacity: 0.88; }

/* ============================================== */
/* 20. Home mobile lookbook — classe bh-editorial-home sur la section Elementor */
/* ============================================== */
@media (max-width: 767px) {
    .elementor-section.bh-editorial-home > .elementor-container {
        max-width: 100%;
    }

    /* Conteneurs flex Elementor (nouvelle structure) */
    .e-con.bh-editorial-home > .e-con-inner {
        max-width: 100%;
    }

    .elementor-section.bh-editorial-home .bh-slider,
    .e-con.bh-editorial-home .bh-slider {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
        max-width: 100vw;
    }

    .elementor-section.bh-editorial-home .bh-slide__content,
    .e-con.bh-editorial-home .bh-slide__content {
        padding: 24px 16px 48px;
        justify-content: flex-end;
    }

    .elementor-section.bh-editorial-home .bh-slide__title {
        font-size: clamp(1.35rem, 6vw, 2rem);
        color: #111;
        text-shadow: 0 0 12px rgba(255,255,255,0.6);
    }

    .elementor-section.bh-editorial-home .bh-slide__button {
        background: #000;
        color: #fff;
        border-radius: 999px;
        padding: 12px 28px;
        text-transform: none;
        letter-spacing: 0.02em;
    }

    .elementor-section.bh-editorial-home .bh-catbar {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    .elementor-section.bh-editorial-home .bh-catbar__list {
        gap: 8px 16px;
        padding: 0 12px;
    }

    .elementor-section.bh-editorial-home .bh-catbar__item:not(.bh-catbar__item--has-image) {
        height: auto;
        min-height: 0;
        padding: 8px 0;
        background: transparent;
        flex-shrink: 0;
    }

    .elementor-section.bh-editorial-home .bh-catbar__item:not(.bh-catbar__item--has-image) .bh-catbar__title {
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
        border-bottom: 2px solid transparent;
    }

    .elementor-section.bh-editorial-home .bh-promo-banner {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
    }

    .elementor-section.bh-editorial-home .bh-promo-banner__title {
        color: #fff;
    }

    .elementor-section.bh-editorial-home .bh-trust-badges__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .elementor-section.bh-editorial-home .bh-trust-badges {
        padding: 20px 16px;
    }

    .elementor-section.bh-editorial-home .bh-newsletter {
        padding: 24px 16px;
    }

    .elementor-section.bh-editorial-home .bh-newsletter__btn {
        border-radius: 999px;
        background: #000;
        color: #fff;
    }

    .elementor-section.bh-editorial-home .bh-products-carousel__title {
        font-size: 1.25rem;
        font-weight: 700;
        padding: 0 16px;
    }

    .elementor-section.bh-editorial-home .bh-faq-accordion__trigger {
        font-size: 15px;
        padding: 14px 16px;
    }
}

/* ============================================== */
/* BH VIDEO BANNER — pleine largeur & sous header */
/* ============================================== */
.elementor-widget-bh-video-banner .bh-video-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.elementor-widget-bh-video-banner .bh-video-banner__video {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.elementor-widget-bh-video-banner .bh-video-banner__video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;
    min-width: 100%;
    height: 56.25vw;
    min-height: 100%;
    max-width: none;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}
.elementor-widget-bh-video-banner .bh-video-banner__video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}
.elementor-widget-bh-video-banner .bh-video-banner__poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.elementor-widget-bh-video-banner .bh-video-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.elementor-widget-bh-video-banner .bh-video-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    padding: 2rem 1.25rem;
    text-align: center;
    color: #fff;
}
.elementor-widget-bh-video-banner .bh-video-banner__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
}
.elementor-widget-bh-video-banner .bh-video-banner__btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
}
/* Sortir du conteneur Elementor (boxed / Container) — bord à bord */
.elementor-widget-bh-video-banner .bh-video-banner--full-bleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
/* Avec header transparent + hero : remonter sous la pile fixe (annonce + header mega) */
body.bh-hero-overlay.bh-mega-menu-active:not(.bh-has-announcement) .bh-video-banner--under-header {
    margin-top: calc(-1 * (env(safe-area-inset-top, 0px) + var(--bh-mega-header-total, 120px)));
}
body.bh-hero-overlay.bh-mega-menu-active.bh-has-announcement .bh-video-banner--under-header {
    margin-top: calc(-1 * (env(safe-area-inset-top, 0px) + var(--bh-topbar-height, 36px) + var(--bh-mega-header-total, 120px)));
}
body.bh-hero-overlay:not(.bh-mega-menu-active) .bh-video-banner--under-header {
    margin-top: calc(-1 * var(--bh-header-height, 140px));
}

/* Mobile : hero type vitrine (hauteur proche 100 % viewport, comme les sites ref) */
@media (max-width: 1024px) {
    body.bh-hero-overlay .elementor-widget-bh-video-banner .bh-video-banner--under-header {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        min-height: 100svh !important;
    }
}