/* ==========================================================
 * assets/css/shop.css
 * Styles pages publiques boutique / catalogue / produit / accueil
 * ========================================================== */

/* ===================== HERO ===================== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.hero__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 111, 255, 0.5), transparent 70%);
    top: -150px;
    right: -100px;
}

.hero__shape--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 70%);
    bottom: -100px;
    left: -80px;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 111, 255, 0.25), transparent 70%);
    top: 40%;
    left: 40%;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
    }
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: rgba(26, 111, 255, 0.1);
    border: 1px solid rgba(26, 111, 255, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cpw-primary);
    width: fit-content;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    color: var(--cpw-text);
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--cpw-primary) 0%, var(--cpw-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.0625rem;
    color: var(--cpw-muted);
    line-height: 1.7;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

/* ===================== BARRE DE CONFIANCE ===================== */
.trust-bar {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
}

.trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.trust-bar__icon {
    font-size: 1.375rem;
    color: var(--cpw-primary);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.trust-bar__item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cpw-text);
    line-height: 1.3;
}

.trust-bar__item span {
    display: block;
    font-size: 0.75rem;
    color: var(--cpw-muted);
}

/* ===================== EN-TETE DE SECTION ===================== */
.section-header {
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .section-header { text-align: center; }
}

.section-footer-action {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===================== GRILLE BOUTIQUES ===================== */
.boutiques-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .boutiques-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .boutiques-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
    .boutiques-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Carte boutique */
.boutique-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s var(--transition-smooth),
                transform 0.3s var(--transition-spring);
}

.boutique-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cpw-glow-blue);
}

.boutique-card--coming {
    opacity: 0.75;
    pointer-events: none;
}

.boutique-card--coming:hover {
    transform: none;
    box-shadow: var(--shadow-ios);
}

.boutique-card__coming-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.boutique-card__cover {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--hover-bg);
    flex-shrink: 0;
}

.boutique-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition-smooth);
}

.boutique-card:hover .boutique-card__cover img {
    transform: scale(1.05);
}

.boutique-card__cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--cpw-muted);
    background: linear-gradient(135deg, var(--hover-bg), var(--glass-border));
}

.boutique-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.125rem 1.125rem;
    gap: 0.5rem;
}

.boutique-card__logo-wrap {
    margin-top: -2rem;
    margin-bottom: 0.25rem;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.boutique-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 3px solid var(--panel-bg);
    object-fit: cover;
    box-shadow: var(--shadow-ios);
}

.boutique-card__logo-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--cpw-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    border: 3px solid var(--panel-bg);
    box-shadow: var(--shadow-ios);
}

.boutique-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cpw-text);
}

.boutique-card__desc {
    font-size: 0.8125rem;
    color: var(--cpw-muted);
    line-height: 1.5;
    flex: 1;
}

/* ===================== GRILLE PRODUITS ===================== */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 900px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

/* Carte produit */
.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s var(--transition-smooth),
                transform 0.3s var(--transition-spring);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cpw-glow-blue);
}

.product-card__img-link {
    aspect-ratio: 4 / 3;
    background: var(--hover-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.375rem;
    transition: transform 0.4s var(--transition-smooth);
}

.product-card:hover .product-card__img {
    transform: scale(1.06);
}

.product-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--cpw-muted);
}

.product-card__promo-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.6rem;
    background: #ef4444;
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.875rem;
}

.product-card__shop {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--cpw-muted);
}

.product-card__shop a {
    color: var(--cpw-muted);
    text-decoration: none;
    transition: color 0.2s var(--transition-smooth);
}

.product-card__shop a:hover { color: var(--cpw-primary); }

.product-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
}

.product-card__name a {
    color: var(--cpw-text);
    text-decoration: none;
    transition: color 0.2s var(--transition-smooth);
}

.product-card__name a:hover { color: var(--cpw-primary); }

.product-card__pricing {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.375rem;
}

.product-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cpw-primary);
}

.product-card__price-old {
    font-size: 0.8rem;
    color: var(--cpw-muted);
    text-decoration: line-through;
}

.product-card__price-from {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--cpw-muted);
    margin-right: 4px;
    vertical-align: middle;
}

.product-card__unit {
    font-size: 0.75rem;
    color: var(--cpw-muted);
}

.product-card__cat {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cpw-muted);
    margin-bottom: 0.2rem;
}

/* Actions carte produit — WhatsApp + icone panier */
.product-card__actions {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.75rem;
}

.btn-whatsapp-card {
    flex: 1 1 0;
    min-width: 0;
    background-color: #25d366;
    color: #ffffff !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    transition: background-color 0.25s ease, transform 0.15s ease;
    text-decoration: none;
}

.btn-whatsapp-card:hover {
    background-color: #1ebc59;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-whatsapp-card:active {
    transform: scale(0.97);
}

.btn-whatsapp-card i {
    font-size: 1.05rem;
    flex-shrink: 0;
}

.product-card__btn-main {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* ===================== SECTION VALEURS ===================== */
.section-values {
    background: var(--cpw-accent-soft);
    border-radius: var(--radius-lg);
    margin: 0 1.25rem;
}

@media (min-width: 1200px) {
    .section-values { margin: 0 auto; max-width: 1200px; }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 480px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    text-align: center;
    align-items: center;
}

.value-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(26, 111, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: var(--cpw-primary);
    flex-shrink: 0;
}

.value-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cpw-text);
}

.value-card__text {
    font-size: 0.875rem;
    color: var(--cpw-muted);
    line-height: 1.6;
}

/* ===================== CTA BLOC ===================== */
.cta-block {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 2.5rem;
    flex-wrap: wrap;
}

.cta-block__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(26, 111, 255, 0.1);
    color: var(--cpw-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-block__content {
    flex: 1;
    min-width: 240px;
}

.cta-block__title {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
}

.cta-block__text {
    color: var(--cpw-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.cta-block__actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

/* ===================== PAGE BOUTIQUES ===================== */
.page-hero {
    padding: 2.5rem 0 1.5rem;
    text-align: center;
}

.page-hero__title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-hero__subtitle {
    font-size: 1rem;
    color: var(--cpw-muted);
}

/* ===================== PAGE CATALOGUE (shop.php) ===================== */
.shop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 3rem;
}

@media (min-width: 900px) {
    .shop-layout { grid-template-columns: 260px 1fr; }
}

.shop-sidebar {
    position: relative;
}

@media (max-width: 899px) {
    .shop-sidebar {
        display: none;
    }

    .shop-sidebar.is-open {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        overflow-y: auto;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(6px);
        padding: 1rem;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (min-width: 900px) {
    .shop-sidebar {
        position: sticky;
        top: calc(var(--header-h) + 1rem);
    }
}

.shop-sidebar__inner {
    padding: 1.25rem;
}

.shop-sidebar__block {
    margin-bottom: 1.5rem;
}

.shop-sidebar__block:last-child {
    margin-bottom: 0;
}

.shop-sidebar__title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--cpw-muted);
    margin-bottom: 0.75rem;
}

.shop-search-form__row {
    display: flex;
    gap: 0.5rem;
}

.shop-search-form__input {
    flex: 1;
    min-width: 0;
    font-size: 0.875rem;
}

.shop-search-form__btn {
    flex-shrink: 0;
    padding: 0.625rem 0.875rem;
}

.shop-cats {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.shop-cats__link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--cpw-text);
    text-decoration: none;
    transition: all 0.2s var(--transition-smooth);
}

.shop-cats__link:hover,
.shop-cats__link.is-active {
    background: rgba(26, 111, 255, 0.1);
    color: var(--cpw-primary);
}

.shop-cats__link i {
    font-size: 0.75rem;
    color: var(--cpw-muted);
    flex-shrink: 0;
    width: 14px;
}

.shop-cats__link:hover i,
.shop-cats__link.is-active i {
    color: var(--cpw-primary);
}

.shop-cats__count {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--cpw-muted);
    background: var(--hover-bg);
    padding: 0.1rem 0.45rem;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
}

.shop-cats__group-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cpw-muted);
    padding: 0.75rem 0.75rem 0.25rem;
    opacity: 0.7;
    list-style: none;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.shop-toolbar__count {
    font-size: 0.875rem;
    color: var(--cpw-muted);
}

.shop-toolbar__count strong {
    color: var(--cpw-text);
    font-weight: 700;
}

.shop-toolbar__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shop-sort-select {
    width: auto;
    padding: 0.45rem 2rem 0.45rem 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    background-size: 10px;
    -webkit-appearance: none;
    appearance: none;
}

.shop-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.shop-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(26, 111, 255, 0.1);
    border: 1px solid rgba(26, 111, 255, 0.2);
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    color: var(--cpw-primary);
    font-weight: 500;
}

.shop-filter-tag__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(26, 111, 255, 0.15);
    color: var(--cpw-primary);
    font-size: 0.6rem;
    text-decoration: none;
    transition: background 0.2s var(--transition-smooth);
    flex-shrink: 0;
}

.shop-filter-tag__remove:hover {
    background: rgba(26, 111, 255, 0.3);
}

.shop-filter-tag--reset {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.25);
    color: #ef4444;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.shop-filter-tag--reset:hover {
    background: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

/* ===================== PAGE DETAIL PRODUIT (produit.php) ===================== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1.5rem 0 3rem;
}

@media (min-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .product-detail {
        grid-template-columns: 1.1fr 1fr;
    }
}

@media (max-width: 767px) {
    .product-detail {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .product-detail__gallery {
        position: static !important;
        top: auto !important;
    }

    .product-detail__img-main {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: var(--radius-lg);
    }

    .product-detail__img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .product-detail__info {
        position: relative;
        z-index: 1;
    }
}

.product-detail__gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}

.product-detail__img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--hover-bg);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.5rem;
    transition: transform 0.4s var(--transition-smooth);
}

.product-detail__img-main:hover .product-detail__img {
    transform: scale(1.04);
}

.product-detail__img-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hover-bg);
    border-radius: var(--radius-lg);
    font-size: 4rem;
    color: var(--cpw-muted);
}

.product-detail__promo-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.8rem;
    background: #ef4444;
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 700;
}

.product-detail__thumbs {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.product-detail__thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    background: none;
    padding: 0;
    flex-shrink: 0;
}

.product-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 2px;
    display: block;
}

.product-detail__thumb:hover {
    border-color: var(--cpw-primary);
    transform: translateY(-2px);
}

.product-detail__thumb.is-active {
    border-color: var(--cpw-primary);
    box-shadow: 0 0 0 3px rgba(26, 111, 255, 0.2);
}

@media (max-width: 767px) {
    .product-detail__thumb {
        width: 60px;
        height: 60px;
    }
}

.product-detail__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-detail__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
}

.product-detail__boutique-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--cpw-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s var(--transition-smooth);
}

.product-detail__boutique-link:hover {
    color: var(--cpw-primary-dark);
}

.product-detail__cat-sep {
    color: var(--cpw-muted);
}

.product-detail__cat-link {
    color: var(--cpw-muted);
    text-decoration: none;
    transition: color 0.2s var(--transition-smooth);
}

.product-detail__cat-link:hover {
    color: var(--cpw-primary);
}

.product-detail__name {
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--cpw-text);
    line-height: 1.2;
}

.product-detail__pricing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-detail__price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--cpw-primary);
    font-family: 'Montserrat', sans-serif;
}

.product-detail__price-old {
    font-size: 1.125rem;
    color: var(--cpw-muted);
    text-decoration: line-through;
}

.product-detail__price-from {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cpw-muted);
    margin-right: 6px;
    vertical-align: middle;
}

.product-detail__unit {
    font-size: 0.875rem;
    color: var(--cpw-muted);
}

.product-detail__desc {
    font-size: 0.9375rem;
    color: var(--cpw-muted);
    line-height: 1.7;
}

.product-detail__add-wrap {
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.product-detail__add-btn {
    flex: 1;
    min-width: 180px;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
}

.product-detail__add-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.product-detail__stock {
    font-size: 13px;
    color: var(--cpw-muted);
    margin-top: 10px;
}

.product-detail__trust {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.product-detail__trust-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.product-detail__trust-item > i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 111, 255, 0.08);
    color: var(--cpw-primary);
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}

.product-detail__trust-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cpw-text);
    line-height: 1.3;
}

.product-detail__trust-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--cpw-muted);
}

/* ===================== GALERIE — navigation ===================== */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, transform 0.2s ease;
    opacity: 0;
}

.product-detail__img-main:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav--prev { left: 0.625rem; }
.gallery-nav--next { right: 0.625rem; }

@media (max-width: 768px) {
    .gallery-nav { opacity: 0.75; }
}

.gallery-counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    padding: 0.2rem 0.6rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* ===================== VARIANTES ===================== */
.product-variants {
    margin-bottom: 18px;
}

.product-variants__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cpw-muted);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.product-variants__hint {
    font-size: 0.82rem;
    margin-top: 6px;
    min-height: 1.2em;
    color: var(--cpw-muted);
}

/* ===================== CONTROLE DE QUANTITE ===================== */
.qty-input {
    display: flex;
    align-items: center;
    background: var(--glass-bg, #ffffff);
    border: 1px solid var(--glass-border, #e2e8f0);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 48px;
}

.qty-input__btn {
    background: transparent;
    border: none;
    color: var(--text-main, #1e293b);
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.qty-input__btn:hover {
    background: rgba(100, 116, 139, 0.1);
}

.qty-input__btn:active {
    background: rgba(100, 116, 139, 0.2);
}

.qty-input__field {
    width: 50px;
    height: 100%;
    border: none;
    border-left: 1px solid var(--glass-border, #e2e8f0);
    border-right: 1px solid var(--glass-border, #e2e8f0);
    background: transparent;
    color: var(--text-main, #1e293b);
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: inherit;
    -moz-appearance: textfield;
}

.qty-input__field::-webkit-outer-spin-button,
.qty-input__field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

[data-theme="dark"] .qty-input {
    background: var(--glass-bg, #1e293b);
    border-color: var(--glass-border, #334155);
}

[data-theme="dark"] .qty-input__btn {
    color: var(--text-main, #f8fafc);
}

[data-theme="dark"] .qty-input__btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .qty-input__field {
    color: var(--text-main, #f8fafc);
    border-color: var(--glass-border, #334155);
}

/* ===================== PAGINATION ===================== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.pagination__btn {
    min-width: 38px;
    height: 38px;
    padding: 0 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cpw-muted);
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    text-decoration: none;
    transition: all 0.2s var(--transition-smooth);
}

.pagination__btn:hover,
.pagination__btn.is-active {
    background: var(--cpw-primary);
    border-color: var(--cpw-primary);
    color: #fff;
}

.pagination__btn.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ===================== ETAT VIDE ===================== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state__icon {
    font-size: 3.5rem;
    color: var(--cpw-muted);
    margin-bottom: 1.25rem;
    display: block;
}

.empty-state__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.empty-state__text {
    color: var(--cpw-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem 0;
    font-size: 0.8125rem;
    color: var(--cpw-muted);
    flex-wrap: wrap;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--cpw-muted);
    text-decoration: none;
    transition: color 0.2s var(--transition-smooth);
}

.breadcrumb__item:hover { color: var(--cpw-primary); }

.breadcrumb__item--active {
    color: var(--cpw-text);
    font-weight: 500;
    pointer-events: none;
}

.breadcrumb__sep {
    font-size: 0.7rem;
    color: var(--glass-border);
}

/* ===================== PAGE BOUTIQUES — STATS ===================== */
.boutiques-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.boutiques-stats__item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.boutiques-stats__item strong {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--cpw-primary);
    font-family: 'Montserrat', sans-serif;
}

.boutiques-stats__item span {
    font-size: 0.78rem;
    color: var(--cpw-muted);
}

.boutiques-stats__sep {
    width: 1px;
    height: 32px;
    background: var(--border-light);
    flex-shrink: 0;
}

.boutiques-grid--full {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .boutiques-grid--full { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
    .boutiques-grid--full { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
    .boutiques-grid--full { grid-template-columns: repeat(4, 1fr); }
}

.boutique-card__active-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    background: rgba(34, 197, 94, 0.15);
    color: #16a34a;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.boutique-card__active-badge i {
    font-size: 0.45rem;
}

.boutique-card__cover--lg {
    height: 160px;
}

.boutique-card__count {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--cpw-muted);
    margin-bottom: 0.25rem;
}

.boutique-card__cta {
    margin-top: auto;
    align-self: flex-start;
}

/* ===================== EN-TETE BOUTIQUE (shop.php) ===================== */
.shop-header {
    position: relative;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2rem;
}

.shop-header__cover {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 111, 255, 0.15), rgba(124, 58, 237, 0.15));
    position: relative;
}

@media (min-width: 768px) {
    .shop-header__cover { height: 260px; }
}

.shop-header__cover--placeholder {
    background: linear-gradient(135deg, rgba(26, 111, 255, 0.1), rgba(124, 58, 237, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 3rem;
}

.shop-header__cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-header__cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
}

.shop-header__inner {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    padding-top: 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .shop-header__inner { gap: 1.75rem; margin-top: -70px; }
}

.shop-header__logo-wrap {
    flex-shrink: 0;
}

.shop-header__logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid var(--glass-highlight);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: var(--panel-bg);
}

.shop-header__logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--panel-bg);
    border: 3px solid var(--glass-highlight);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cpw-primary);
}

@media (min-width: 768px) {
    .shop-header__logo,
    .shop-header__logo-placeholder { width: 100px; height: 100px; }
}

.shop-header__info {
    flex: 1;
    min-width: 0;
}

.shop-header__status {
    margin-bottom: 0.4rem;
}

.shop-header__name {
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--cpw-text);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-header__desc {
    font-size: 0.875rem;
    color: var(--cpw-muted);
    margin-bottom: 0.25rem;
}

.shop-header__count {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--cpw-muted);
}

/* ===================== CATALOGUE — chips & barre ===================== */
.catalog-hero {
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.catalog-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.catalog-hero__title {
    font-size: clamp(1.625rem, 3.5vw, 2.5rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--cpw-text);
    margin-bottom: 0.25rem;
}

.catalog-hero__subtitle {
    font-size: 0.9375rem;
    color: var(--cpw-muted);
    margin: 0;
}

.catalog-hero__stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.catalog-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.catalog-hero__stat strong {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--cpw-primary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.catalog-hero__stat span {
    font-size: 0.72rem;
    color: var(--cpw-muted);
    white-space: nowrap;
}

.catalog-hero__stat-sep {
    width: 1px;
    height: 32px;
    background: var(--border-light);
    flex-shrink: 0;
}

@media (max-width: 599px) {
    .catalog-hero__stats { display: none; }
}

.catalog-chips-bar {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    position: sticky;
    top: var(--header-h, 64px);
    z-index: 10;
}

.catalog-chips {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.catalog-chips::-webkit-scrollbar { display: none; }

.catalog-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cpw-muted);
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.catalog-chip:hover {
    border-color: var(--cpw-primary);
    color: var(--cpw-primary);
    background: rgba(26, 111, 255, 0.06);
}

.catalog-chip.is-active {
    background: var(--cpw-primary);
    border-color: var(--cpw-primary);
    color: #fff;
}

/* ===================== SECTIONS APERCU BOUTIQUES ===================== */
.section-boutique-preview {
    position: relative;
}

.section-boutique-preview:nth-child(even) {
    background: var(--cpw-accent-soft, rgba(26,111,255,0.03));
}

.section-boutique-preview + .section-boutique-preview {
    border-top: 1px solid var(--glass-border, rgba(255,255,255,0.08));
}

.boutique-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.boutique-preview-header__left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.boutique-preview-header__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.boutique-preview-header__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: inherit;
}

@media (min-width: 640px) {
    .boutique-preview-header__icon {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }
}

.boutique-preview-header__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.boutique-preview-header__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cpw-muted);
}

.boutique-preview-header__name {
    font-size: clamp(1.125rem, 2.5vw, 1.625rem);
    font-weight: 800;
    color: var(--cpw-text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.boutique-preview-header__desc {
    font-size: 0.825rem;
    color: var(--cpw-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.boutique-preview-header__cta {
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    padding: 0.5rem 1.125rem;
    transition: gap 0.2s ease, transform 0.2s ease;
}

.boutique-preview-header__cta:hover {
    gap: 0.75rem;
    transform: translateX(2px);
}

.boutique-preview-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border, rgba(255,255,255,0.08));
}

.boutique-preview-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent, var(--cpw-primary));
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid currentColor;
    transition: background 0.22s ease, transform 0.22s ease, gap 0.2s ease;
    opacity: 0.85;
}

.boutique-preview-footer__link:hover {
    background: rgba(var(--cpw-primary-rgb, 26,111,255), 0.08);
    opacity: 1;
    transform: translateX(4px);
    gap: 0.875rem;
}

.boutique-preview-footer__link i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.boutique-preview-footer__link:hover i {
    transform: translateX(3px);
}

/* ===================== WIDGET WHATSAPP FLOTTANT ===================== */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: visible;
}

.whatsapp-widget:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 28px rgba(37,211,102,0.65);
    color: #fff;
    text-decoration: none;
}

.whatsapp-widget__icon {
    font-size: 1.75rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    color: #fff;
}

.whatsapp-widget__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,0.45);
    animation: waPulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.6); opacity: 0;   }
    100% { transform: scale(1.6); opacity: 0;   }
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 76px;
        left: 16px;
    }

    .scroll-top-btn {
        bottom: 76px;
        right: 16px;
    }
}

/* ===================== PANIER — mobile ===================== */
@media (max-width: 768px) {
    .cart-layout,
    .cart-empty,
    .empty-state {
        padding-bottom: 80px;
    }

    #cartSummary {
        margin-bottom: 24px;
    }
}

/* ===================== HERO — cartes visuelles boutiques ===================== */
@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 899px) {
    .hero .hero__visual {
        display: none !important;
    }
}

@media (min-width: 900px) {
    .hero__visual {
        position: relative;
        height: 420px;
    }

    .hero__card-stack {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero__card {
        position: absolute;
        flex-direction: row;
        padding: 0;
        min-width: 230px;
        max-width: 280px;
        overflow: hidden;
        gap: 0;
        display: flex;
        animation: floatCard 4s ease-in-out infinite;
    }

    .hero__card--1 { top: 0;   left: 5%;  animation-delay: 0s;   }
    .hero__card--2 { top: 27%; left: 22%; animation-delay: 0.8s; }
    .hero__card--3 { top: 54%; left: 8%;  animation-delay: 1.6s; }
    .hero__card--4 { top: 78%; left: 25%; animation-delay: 2.4s; }

    .hero__card-visual {
        width: 90px;
        flex-shrink: 0;
        height: 100%;
        overflow: hidden;
        background: var(--hover-bg);
    }

    .hero__card-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        padding: 0.25rem;
        display: block;
        transition: transform 0.4s ease;
    }

    .hero__card:hover .hero__card-img {
        transform: scale(1.06);
    }

    .hero__card-info {
        padding: 0.75rem 1rem;
        flex: 1;
        min-width: 0;
    }
}

.hero__card-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.hero__card-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero__card-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cpw-text);
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.3;
}

.hero__card-label {
    font-size: 0.72rem;
    color: var(--cpw-muted);
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.hero__card-status {
    margin-top: 0.25rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
}

/* ===================== DÉGRADÉS COUVERTURES BOUTIQUES ===================== */
.boutique-card__cover-placeholder,
.shop-header__cover--placeholder {
    background: linear-gradient(135deg, #1a6fff 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 3rem;
}

.boutique-cover--ahlonga-bien-etre-et-vitalite {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.boutique-cover--ahlonga-multi-saveurs {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    color: #ffffff;
}

.boutique-cover--ahlonga-bien-etre-et-vitalite .boutique-gradient-cover__name,
.boutique-cover--ahlonga-bien-etre-et-vitalite .boutique-gradient-cover__tagline,
.boutique-cover--ahlonga-bien-etre-et-vitalite .boutique-gradient-cover__icon,
.boutique-cover--ahlonga-multi-saveurs .boutique-gradient-cover__name,
.boutique-cover--ahlonga-multi-saveurs .boutique-gradient-cover__tagline,
.boutique-cover--ahlonga-multi-saveurs .boutique-gradient-cover__icon {
    color: #ffffff;
}

.boutique-cover--default {
    background: linear-gradient(135deg, #1a6fff 0%, #7c3aed 100%);
}

.boutique-gradient-cover {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px 24px;
    overflow: hidden;
}

.boutique-gradient-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: 0;
}

.boutique-gradient-cover::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    z-index: 0;
}

.boutique-gradient-cover__shape {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    z-index: 0;
}

.boutique-gradient-cover__content {
    position: relative;
    z-index: 1;
}

.boutique-gradient-cover__icon {
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 6px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.boutique-gradient-cover__name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.boutique-gradient-cover__tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    margin-top: 3px;
    font-weight: 500;
}

/* ===================== VITRINE OKDEGUE ===================== */
.section-vitrine-okdegue {
    background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, rgba(146,64,14,0.04) 100%);
    border-top: 1px solid rgba(245,158,11,0.15);
    border-bottom: 1px solid rgba(245,158,11,0.15);
}

.vitrine__header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.vitrine__logo-wrap {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(245,158,11,0.4);
    box-shadow: 0 4px 20px rgba(245,158,11,0.25);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vitrine__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vitrine__logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #d97706;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.vitrine__header-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.vitrine__header-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d97706;
}

.vitrine__header-name {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--cpw-text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.vitrine__header-tagline {
    font-size: 0.875rem;
    color: var(--cpw-muted);
    margin: 0;
}

.vitrine__header-cta {
    flex-shrink: 0;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: transparent;
    color: #fff;
}

.vitrine__header-cta:hover {
    background: linear-gradient(135deg, #d97706, #92400e);
    color: #fff;
    border-color: transparent;
}

.vitrine__media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .vitrine__media-grid { grid-template-columns: 1fr; }
}

.vitrine__media-item {
    position: relative;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--hover-bg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vitrine__media-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.vitrine__media-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.25rem;
    display: block;
    transition: transform 0.4s ease;
}

.vitrine__media-item:hover .vitrine__media-img {
    transform: scale(1.04);
}

.vitrine__media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(146,64,14,0.08));
    border: 2px dashed rgba(245,158,11,0.4);
    border-radius: var(--radius-lg, 16px);
    color: #d97706;
    text-align: center;
    padding: 1rem;
}

.vitrine__media-placeholder i { font-size: 2.5rem; opacity: 0.7; }
.vitrine__media-placeholder span { font-size: 0.9375rem; font-weight: 700; color: var(--cpw-text); }
.vitrine__media-placeholder small { font-size: 0.75rem; color: var(--cpw-muted); }

.vitrine__media-overlay {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
}

.vitrine__media-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill, 999px);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(245,158,11,0.9);
    color: #fff;
    backdrop-filter: blur(6px);
}

.vitrine__media-badge--promo {
    background: rgba(239,68,68,0.9);
}

.vitrine__media-item--video {
    background: linear-gradient(135deg, #1c1917, #292524);
    cursor: pointer;
}

.vitrine__video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vitrine__video-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem;
}

.vitrine__play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(245,158,11,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(245,158,11,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vitrine__media-item--video:hover .vitrine__play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(245,158,11,0.25);
}

.vitrine__video-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.vitrine__video-hint {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    max-width: 200px;
    line-height: 1.5;
}

.vitrine__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.vitrine__video--iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 639px) {
    .vitrine__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .vitrine__header-cta {
        width: 100%;
        justify-content: center;
    }

    .vitrine__logo-wrap {
        width: 72px;
        height: 72px;
    }
}

/* ===================== MODALE VIDEO ===================== */
.video-modal {
    border: none;
    border-radius: 1rem;
    padding: 0;
    background: #000;
    max-width: 860px;
    width: 90vw;
    box-shadow: 0 25px 60px rgba(0,0,0,.6);
    margin: auto;
}

.video-modal::backdrop {
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(4px);
}

.video-modal__inner {
    position: relative;
}

.video-modal__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    z-index: 10;
    font-size: 1rem;
}

.video-modal__player {
    width: 100%;
    border-radius: 1rem;
    display: block;
}

/* ===================== PAGE CONTACT ===================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 8px;
}

.contact-info__header {
    margin-bottom: 28px;
}

.contact-info__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-info__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-card {
    position: relative;
    overflow: hidden;
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(26, 111, 255, 0.06);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scale(1.2);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cpw-primary, #1a6fff), #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(26,111,255,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover .contact-card__icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(26,111,255,0.4);
}

.contact-card:nth-child(1) .contact-card__icon {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}
.contact-card:nth-child(1):hover .contact-card__icon {
    box-shadow: 0 8px 20px rgba(22,163,74,0.4);
}
.contact-card:nth-child(2) .contact-card__icon {
    background: linear-gradient(135deg, #1a6fff, #60a5fa);
    box-shadow: 0 4px 14px rgba(26,111,255,0.3);
}
.contact-card:nth-child(3) .contact-card__icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 4px 14px rgba(245,158,11,0.3);
}
.contact-card:nth-child(3):hover .contact-card__icon {
    box-shadow: 0 8px 20px rgba(245,158,11,0.4);
}
.contact-card:nth-child(4) .contact-card__icon {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    box-shadow: 0 4px 14px rgba(124,58,237,0.3);
}
.contact-card:nth-child(4):hover .contact-card__icon {
    box-shadow: 0 8px 20px rgba(124,58,237,0.4);
}

.contact-card__title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cpw-muted);
    margin-bottom: 5px;
}

.contact-card__value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cpw-text);
    text-decoration: none;
    word-break: break-word;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.contact-card__value:hover {
    color: var(--cpw-primary);
}

.contact-card__hint {
    font-size: 0.78rem;
    color: var(--cpw-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3px;
}

.contact-faq {
    padding: 24px 28px;
    border-radius: var(--radius-lg);
}

.contact-faq__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-faq__title i {
    color: var(--primary);
}

.contact-faq__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-faq__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-faq__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-faq__list li > i {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-faq__list strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-faq__list p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.contact-form-card {
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
}

.contact-form-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-card__title i {
    color: var(--primary);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-align: right;
}

.contact-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 8px;
    justify-content: center;
}

.contact-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-alert--success {
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.3);
    color: #16a34a;
}

.contact-alert--error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #ef4444;
}

.contact-alert--warning {
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    color: #f59e0b;
}

.contact-success {
    text-align: center;
    padding: 20px 0;
}

.contact-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #15803d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: confirmPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.contact-success__icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-success__title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-success__text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px 20px;
    }

    .contact-info__title {
        font-size: 1.625rem;
    }
}

/* ===================== PAGE RECHERCHE ===================== */
.search-page-hero {
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.search-page-hero__title {
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--cpw-text);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.search-page-hero__query {
    color: var(--cpw-primary);
}

.search-page-hero__count {
    margin-top: 0.875rem;
    font-size: 0.9375rem;
    color: var(--cpw-muted);
}

.search-page-hero__count strong {
    color: var(--cpw-text);
    font-weight: 700;
}

.search-page-form {
    width: 100%;
    max-width: 680px;
}

.search-page-form__wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-pill);
    padding: 0.375rem 0.375rem 0.375rem 1.25rem;
    backdrop-filter: blur(12px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-page-form__wrap:focus-within {
    border-color: var(--cpw-primary);
    box-shadow: 0 0 0 3px rgba(26,111,255,0.15);
}

.search-page-form__icon {
    color: var(--cpw-muted);
    font-size: 1rem;
    flex-shrink: 0;
}

.search-page-form__input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    color: var(--cpw-text);
    font-family: inherit;
    min-width: 0;
    padding: 0.5rem 0;
}

.search-page-form__input::placeholder {
    color: var(--cpw-muted);
}

.search-page-form__clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--hover-bg);
    color: var(--cpw-muted);
    flex-shrink: 0;
    transition: all 0.2s ease;
    text-decoration: none;
}

.search-page-form__clear:hover {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}

.search-page-form__btn {
    flex-shrink: 0;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.search-filters-bar {
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    position: sticky;
    top: var(--header-h, 64px);
    z-index: 10;
    padding: 0.75rem 0;
}

.search-filters-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-tabs {
    display: flex;
    gap: 0.375rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}

.search-tabs::-webkit-scrollbar { display: none; }

.search-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cpw-muted);
    background: transparent;
    border: 1.5px solid transparent;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-tab:hover {
    color: var(--cpw-primary);
    background: rgba(26,111,255,0.06);
}

.search-tab.is-active {
    background: var(--cpw-primary);
    border-color: var(--cpw-primary);
    color: #fff;
}

.search-tab__count {
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-pill);
}

.search-tab.is-active .search-tab__count {
    background: rgba(255,255,255,0.25);
}

.search-tab:not(.is-active) .search-tab__count {
    background: var(--hover-bg);
    color: var(--cpw-muted);
}

.search-sort-form {
    flex-shrink: 0;
}

.search-sort-select {
    width: auto;
    padding: 0.4rem 2rem 0.4rem 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    background-size: 10px;
    -webkit-appearance: none;
    appearance: none;
}

.search-results {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.search-section {
    margin-bottom: 3rem;
}

.search-section__title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--cpw-text);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}

.search-section__title i {
    color: var(--cpw-primary);
}

.search-section__count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cpw-muted);
    background: var(--hover-bg);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-pill);
    margin-left: auto;
}

.search-boutiques-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .search-boutiques-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.search-boutique-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.125rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-boutique-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cpw-glow-blue);
}

.search-boutique-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    color: #fff;
    flex-shrink: 0;
}

.search-boutique-card__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search-boutique-card__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--cpw-text);
}

.search-boutique-card__desc {
    font-size: 0.8rem;
    color: var(--cpw-muted);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-boutique-card__arrow {
    color: var(--cpw-muted);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.search-boutique-card:hover .search-boutique-card__arrow {
    color: var(--cpw-primary);
    transform: translateX(4px);
}

.search-highlight {
    background: rgba(26,111,255,0.15);
    color: var(--cpw-primary);
    border-radius: 3px;
    padding: 0 2px;
    font-weight: 700;
    font-style: normal;
}

.search-empty {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.search-empty__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--hover-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--cpw-muted);
    margin: 0 auto 1.5rem;
}

.search-empty__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.search-empty__text {
    color: var(--cpw-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.search-empty__suggestions {
    margin-bottom: 1.5rem;
}

.search-empty__suggestions-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cpw-muted);
    margin-bottom: 0.75rem;
}

.search-empty__chips,
.search-landing__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.search-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-pill);
    background: var(--glass-bg);
    border: 1.5px solid var(--glass-border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cpw-text);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.search-chip:hover {
    border-color: var(--cpw-primary);
    color: var(--cpw-primary);
    background: rgba(26,111,255,0.06);
}

.search-landing {
    padding: 3rem 0;
}

.search-landing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .search-landing__grid { grid-template-columns: repeat(2, 1fr); }
}

.search-landing__heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cpw-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-landing__heading i {
    color: var(--cpw-primary);
}

.search-landing__chips {
    justify-content: flex-start;
}

.search-pages-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.search-page-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.125rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-page-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--cpw-glow-blue);
}

.search-page-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(26,111,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--cpw-primary);
    flex-shrink: 0;
}

.search-page-card__info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.search-page-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--cpw-text);
}

.search-page-card__desc {
    font-size: 0.8rem;
    color: var(--cpw-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===================== AJUSTEMENTS HEADER & THEME ===================== */
@media (min-width: 900px) {
    .site-header .header-glass {
        max-width: 1400px !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

@media (max-width: 899px) {
    .header-actions #themeToggle {
        display: none !important;
    }
}

/* Badge info variantes */
.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* ===================== BOUTON WHATSAPP — PAGE DETAIL PRODUIT ===================== */
.btn-whatsapp-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    background-color: #25d366;
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
}

.btn-whatsapp-detail:hover {
    background-color: #1ebc59;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-detail:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-detail i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ===================== CATALOGUE (boutique.php / shop.php) Ajustement ===================== */

/* Grille produits en 2 colonnes dans la zone shop-main sur desktop */
@media (min-width: 900px) {
    .shop-main .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ordre des boutons dans la carte — WhatsApp en premier (flex), panier en second */
.product-card__actions {
    flex-direction: row;
}

/* Dans boutique.php et shop.php, l'ordre HTML est inversé (panier d'abord, WA ensuite).
   On utilise order pour remettre WA visuellement en premier sans modifier le PHP. */
.product-card__actions .btn-whatsapp-card {
    order: 1;
}

.product-card__actions .product-card__btn-main {
    order: 2;
}

/* Assure que le bouton WA prend bien l'espace restant dans tous les contextes */
.product-card__actions .btn-whatsapp-card {
    flex: 1 1 0;
}

.product-card__actions .product-card__btn-main {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Bouton WA — suppression du style font-size inline sur l'icone (déjà géré par .btn-whatsapp-card i) */
.product-card__actions .btn-whatsapp-card i {
    font-size: 1.05rem !important;
}

/* ==========================================================================
   STYLE DES CHAMPS DE FORMULAIRE (PAGE COMMANDE)
   ========================================================================== */

/* Spécificité accrue pour écraser les styles par défaut du navigateur ou de Bootstrap */
body .order-form-card .form-control,
body .form-group .form-control {
    border: 1px solid rgba(128, 128, 128, 0.3) !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    background-color: rgba(128, 128, 128, 0.05) !important; /* Fond légèrement grisé adaptatif */
    color: inherit !important; /* Le texte s'adapte au mode clair/sombre */
    font-size: 1rem !important;
    width: 100% !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease !important;
}

body .order-form-card .form-control:focus,
body .form-group .form-control:focus {
    outline: none !important;
    border-color: var(--color-primary, #3b82f6) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25) !important;
    background-color: rgba(128, 128, 128, 0.1) !important;
}

/* Couleur du texte indicatif (placeholder) adaptative */
body .form-control::placeholder {
    color: rgba(128, 128, 128, 0.7) !important;
}

/* ==========================================================================
   STYLE DES CONTRÔLES DE QUANTITÉ +/- (PAGE PANIER)
   ========================================================================== */

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(128, 128, 128, 0.3); /* Bordure adaptative */
    border-radius: 2rem;
    background-color: rgba(128, 128, 128, 0.05); /* Remplacement du fond blanc fixe */
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.qty-control__btn {
    background: transparent;
    border: none;
    color: inherit; /* Hérite de la couleur du texte (blanc en sombre, noir en clair) */
    opacity: 0.7;
    padding: 0.5rem 0.85rem;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}

.qty-control__btn:hover {
    background-color: rgba(128, 128, 128, 0.15);
    opacity: 1;
    color: var(--color-primary, #3b82f6);
}

.qty-control__btn:active {
    background-color: rgba(128, 128, 128, 0.25);
}

.qty-control__input {
    width: 3rem;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(128, 128, 128, 0.2);
    border-right: 1px solid rgba(128, 128, 128, 0.2);
    background: transparent;
    font-weight: 600;
    color: inherit; /* S'adapte au mode sombre */
    padding: 0.25rem 0;
    -moz-appearance: textfield; /* Masque les flèches natives sur Firefox */
}

/* Masque les flèches natives sur Chrome/Safari/Edge */
.qty-control__input::-webkit-outer-spin-button,
.qty-control__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===================== SECTION BOUTIQUES — ACCUEIL (2 colonnes max sur desktop) ===================== */
.section-boutiques .boutiques-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .section-boutiques .boutiques-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================== SECTION ÉVÉNEMENTS CÉRÉMONIES ===================== */

.section-event-ceremonies {
    padding: 2rem 0;
}

.event-banner {
    position: relative;
    background: linear-gradient(135deg, #3D0C1A 0%, #5A1525 40%, #2C0D14 100%);
    border-radius: var(--radius-lg, 16px);
    border-top: 4px solid #C9932A;
    border-bottom: 4px solid #C9932A;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0px 1fr auto 0px;
    align-items: center;
    gap: 0;
    min-height: 280px;
    box-shadow: 0 20px 60px rgba(61, 12, 26, 0.45), 0 0 0 1px rgba(201, 147, 42, 0.2);
}

@media (min-width: 640px) {
    .event-banner {
        grid-template-columns: 80px 1fr auto 80px;
    }
}

@media (min-width: 900px) {
    .event-banner {
        grid-template-columns: 120px 1fr auto 120px;
    }
}

.event-banner__decor {
    align-self: stretch;
    overflow: hidden;
    opacity: 0.7;
}

.event-banner__decor svg {
    display: block;
    height: 100%;
    width: 100%;
}

.event-banner__content {
    padding: 2.25rem 1.5rem 2.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
}

@media (min-width: 640px) {
    .event-banner__content {
        padding: 2.25rem 2rem;
    }
}

/* Badge */
.event-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    background: #C9932A;
    color: #3D0C1A;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: fit-content;
}

.event-banner__badge i {
    font-size: 0.6rem;
}

/* Titre */
.event-banner__title {
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #F5E6C8;
    line-height: 1.2;
    margin: 0;
}

.event-banner__title-accent {
    color: #C9932A;
}

/* Sous-titre */
.event-banner__subtitle {
    font-size: 0.9rem;
    color: #D4B896;
    line-height: 1.65;
    margin: 0;
    max-width: 560px;
}

/* Plats emblématiques */
.event-banner__dishes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.event-banner__dish {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.875rem 0.45rem 0.5rem;
    background: rgba(201, 147, 42, 0.1);
    border: 1px solid rgba(201, 147, 42, 0.3);
    border-radius: 999px;
}

.event-banner__dish--senegal {
    background: rgba(42, 122, 75, 0.15);
    border-color: rgba(42, 122, 75, 0.4);
}

.event-banner__dish-icon {
    font-size: 1.125rem;
    line-height: 1;
    flex-shrink: 0;
}

.event-banner__dish strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #F5E6C8;
    line-height: 1.2;
}

.event-banner__dish span {
    display: block;
    font-size: 0.68rem;
    color: #A87C52;
    line-height: 1.2;
}

/* Actions */
.event-banner__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
}

.event-banner__btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    background: #25D366;
    color: #fff !important;
    border: none;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    white-space: nowrap;
}

.event-banner__btn-wa:hover {
    background: #1ebc59;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.event-banner__btn-wa i {
    font-size: 1.25rem;
}

.event-banner__reassurance {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.78rem;
    color: #A87C52;
}

.event-banner__reassurance i {
    color: #C9932A;
    font-size: 0.7rem;
}

/* Visuel assiette */
.event-banner__visual {
    flex-shrink: 0;
    padding: 1rem 0;
    display: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .event-banner__visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ===================== Espacement section ===================== */
.section-boutique-preview + .section-values,
.section-boutique-preview ~ .section-values {
    margin-top: 3rem;
}

/* ===================== PADDING EVENT BANNER ===================== */
/* Force l'ajout d'un espace à gauche sur la version mobile */
.event-banner__content {
    padding: 2.25rem 1.5rem;
}

@media (min-width: 640px) {
    .event-banner__content {
        padding: 2.25rem 2rem;
    }
}

/* ==========================================================
 * NOUVELLES SECTIONS PREMIUM (PROCESSUS, SOURCING, AVIS)
 * ========================================================== */

/* --- SECTION PROCESSUS --- */
.section-process {
    padding: 4.5rem 0;
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.process-step {
    padding: 2.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--radius-lg);
    transition: transform 0.3s var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--cpw-glow-blue);
}

.process-step__icon {
    width: 64px;
    height: 64px;
    background: rgba(26, 111, 255, 0.1);
    color: var(--cpw-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.process-step__title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--cpw-text);
    margin-bottom: 0.75rem;
}

.process-step__text {
    font-size: 0.9rem;
    color: var(--cpw-muted);
    line-height: 1.6;
}

/* --- SECTION SOURCING --- */
.section-sourcing {
    padding: 5rem 0;
}

.sourcing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .sourcing-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.sourcing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sourcing-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.9375rem;
    color: var(--cpw-muted);
    line-height: 1.5;
}

.sourcing-list li i {
    color: #16a34a;
    font-size: 1.25rem;
    margin-top: 2px;
}

.sourcing-list strong {
    color: var(--cpw-text);
    font-weight: 700;
}

.sourcing-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.sourcing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sourcing-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.1), rgba(21, 128, 61, 0.15));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #16a34a;
}

.sourcing-image-placeholder i { font-size: 4rem; opacity: 0.8; }
.sourcing-image-placeholder span { font-weight: 700; font-size: 1.125rem; }

/* --- SECTION AVIS CLIENTS --- */
.section-reviews {
    padding: 4rem 0;
    background: var(--cpw-accent-soft);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.9375rem;
    color: var(--cpw-text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.review-author strong {
    font-size: 0.9rem;
    color: var(--cpw-text);
    font-weight: 700;
}

.review-author span {
    font-size: 0.75rem;
    color: var(--cpw-muted);
}

/* ===================== ALTERNANCE SECTIONS ===================== */
/* Retire le fond coloré de la section avis pour éviter la fusion avec la section valeurs */
.section-reviews {
    background: transparent;
}

/* ===================== EVENT BANNER — MOBILE & DESKTOP ===================== */

/* Correction du débordement horizontal global */
.section-event-ceremonies {
    overflow: hidden;
}

.event-banner {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile : suppression des décorations SVG latérales pour libérer l'espace */
@media (max-width: 639px) {
    .event-banner {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .event-banner__decor {
        display: none;
    }

    .event-banner__content {
        padding: 1.75rem 1.25rem;
        width: 100%;
        box-sizing: border-box;
    }

    .event-banner__title {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        word-break: break-word;
    }

    .event-banner__subtitle {
        font-size: 0.875rem;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .event-banner__dishes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .event-banner__dish {
        padding: 0.4rem 0.625rem 0.4rem 0.5rem;
        min-width: 0;
        overflow: hidden;
    }

    .event-banner__dish strong,
    .event-banner__dish span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 100%;
    }

    .event-banner__actions {
        width: 100%;
    }

    .event-banner__btn-wa {
        width: 100%;
        justify-content: center;
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
        white-space: normal;
        text-align: center;
    }

    .event-banner__reassurance {
        font-size: 0.72rem;
        flex-wrap: wrap;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .event-banner__visual {
        display: none;
    }
}

/* Tablette : décorations visibles, visuel encore masqué */
@media (min-width: 640px) and (max-width: 899px) {
    .event-banner__visual {
        display: none;
    }

    .event-banner {
        grid-template-columns: 60px 1fr 60px;
    }

    .event-banner__content {
        padding: 2rem 1.5rem;
    }

    .event-banner__btn-wa {
        font-size: 0.9rem;
    }
}

/* Desktop : tout s'affiche, bouton non limité en largeur */
@media (min-width: 900px) {
    .event-banner__btn-wa {
        width: auto;
        align-self: flex-start;
    }
}