/* ======================================================================
 * Pain de Sucre — Main stylesheet
 * Port Shopify lux-* → WordPress
 * ====================================================================== */

:root {
    --pds-ink:        #1c1a17;
    --pds-ink-soft:   #3a3732;
    --pds-muted:      #6a6660;
    --pds-line:       #ebe7df;
    --pds-bg:         #ffffff;
    --pds-bg-soft:    #f7f4ee;
    --pds-sand:       #e4d2b0;
    --pds-red:        #c2261d;
    --pds-gold:       #b08a60;
    --serif:          "Crimson Text", "Times New Roman", Georgia, serif;
    --sans:           "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0; padding: 0;
    font-family: var(--sans);
    color: var(--pds-ink);
    background: var(--pds-bg);
    font-size: 15px;
    line-height: 1.55;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* Containers */
.pds-container { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px){ .pds-container { padding: 0 18px; } }

.pds-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--serif);
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid var(--pds-ink);
    transition: background .2s,color .2s,border-color .2s;
}
.pds-btn--dark { background: var(--pds-ink); color: #fff; }
.pds-btn--dark:hover { background: #000; }
.pds-btn--light { background: #fff; color: var(--pds-ink); }
.pds-btn--light:hover { background: var(--pds-ink); color: #fff; }

.pds-page-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 60px 0 28px;
}

.pds-breadcrumb {
    font-size: 12px; color: var(--pds-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin: 20px 0 30px;
}
.pds-breadcrumb a { color: var(--pds-muted); }
.pds-breadcrumb a:hover { color: var(--pds-ink); }

.pds-page { padding-bottom: 80px; }
.pds-entry { max-width: 820px; margin: 0 auto; font-size: 16px; }

/* ======================================================================
 * Header + mobile nav
 * ====================================================================== */
.pds-header {
    position: sticky; top: 0;
    background: #fff;
    border-bottom: 1px solid var(--pds-line);
    z-index: 100;
}
.pds-header__inner {
    max-width: 1440px; margin: 0 auto;
    padding: 16px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
}
.pds-header__burger {
    display: none;
    width: 30px; height: 30px;
    flex-direction: column; justify-content: center; gap: 5px;
}
.pds-header__burger span { display: block; height: 1.5px; background: var(--pds-ink); }
.pds-header__logo { text-align: center; }
.pds-header__logo .custom-logo,
.pds-header__logo img {
    display: inline-block;
    max-height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}
@media (max-width: 900px) {
    .pds-header__logo .custom-logo,
    .pds-header__logo img { max-height: 32px; max-width: 110px; }
}
.pds-logo-text {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pds-header__logo { text-align: center; }
.pds-header__nav .pds-nav__list {
    display: flex; justify-content: center; gap: 28px;
    list-style: none; margin: 0; padding: 0;
}
.pds-header__nav .pds-nav__list > li { position: relative; }
.pds-header__nav .pds-nav__list > li > a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 22px 0;
    display: inline-block;
    position: relative;
}
.pds-header__nav .pds-nav__list > li > a:hover::after,
.pds-header__nav .pds-nav__list > li:hover > a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 14px;
    height: 1px; background: currentColor;
}
/* Dropdown desktop — apparaît au hover */
.pds-header__nav .pds-nav__list .sub-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    min-width: 220px; list-style: none; margin: 0; padding: 18px 22px;
    background: #fff; border: 1px solid #eee;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all 0.25s ease; z-index: 100;
    display: flex; flex-direction: column; gap: 8px;
}
.pds-header__nav .pds-nav__list > li:hover > .sub-menu,
.pds-header__nav .pds-nav__list > li:focus-within > .sub-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.pds-header__nav .pds-nav__list .sub-menu a {
    font-size: 12px; letter-spacing: 0.06em; white-space: nowrap;
    color: var(--pds-ink, #1c1a17); display: block; padding: 4px 0;
}
.pds-header__nav .pds-nav__list .sub-menu a:hover { text-decoration: underline; }
.pds-header__nav .pds-nav__list .sub-menu .sub-menu {
    position: static; transform: none; padding: 0 0 0 12px;
    background: transparent; border: 0; box-shadow: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    display: flex; margin-top: 4px;
}
.pds-header__actions { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
.pds-header__icon { display: inline-flex; align-items: center; position: relative; }
.pds-header__cart-count {
    position: absolute; top: -6px; right: -10px;
    background: var(--pds-ink); color: #fff;
    font-size: 10px; min-width: 18px; height: 18px;
    border-radius: 9px; display: grid; place-items: center;
    padding: 0 5px;
}
@media (max-width: 900px){
    .pds-header__inner {
        grid-template-columns: auto 1fr auto;
        padding: 12px 16px;
        gap: 12px;
    }
    .pds-header__burger { display: flex; }
    .pds-header__nav { display: none; }
    .pds-header__logo { text-align: left; }
    .pds-logo-text { font-size: 18px; letter-spacing: 0.06em; }
}

/* Mobile overlay + drawer */
.pds-mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
    z-index: 2147483645;
}
.pds-mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.pds-mobile-nav {
    position: fixed; top: 0; left: 0;
    width: 88%; max-width: 380px; height: 100%;
    background: #fff;
    transform: translateX(-100%);
    transition: transform .3s;
    display: flex; flex-direction: column;
    z-index: 2147483646;
}
.pds-mobile-nav.is-open { transform: translateX(0); }
.pds-mobile-nav__head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 22px;
    border-bottom: 1px solid var(--pds-line);
}
.pds-mobile-nav__title {
    font-family: var(--serif);
    font-size: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}
.pds-mobile-nav__close { font-size: 28px; line-height: 1; padding: 4px 10px; }
.pds-mobile-nav__body { padding: 14px 22px; flex: 1; overflow-y: auto; }
.pds-mobile-nav__list, .pds-mobile-nav__list ul { list-style: none; margin: 0; padding: 0; }
.pds-mobile-nav__list > li { border-bottom: 1px solid var(--pds-line); position: relative; }
/* Chaque li (y compris les nested) doit être son propre containing block
 * sinon les boutons .pds-acc-toggle en position:absolute remontent tous
 * sur le li de niveau 1 et se superposent en "‡". */
.pds-mobile-nav__list li { position: relative; }

/* Accordéon : sous-menus fermés par défaut */
.pds-mobile-nav__list .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding-left: 0;
}
.pds-mobile-nav__list li.is-open > .sub-menu { max-height: 1200px; }

/* Bouton toggle +/− aligné à droite du parent */
.pds-mobile-nav__list .pds-acc-toggle {
    position: absolute;
    top: 6px; right: -6px;
    width: 44px; height: 44px;
    background: transparent; border: 0;
    color: var(--pds-ink);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    padding: 0; margin: 0;
    font-family: var(--sans, inherit);
    font-size: 22px; font-weight: 300; line-height: 1;
    appearance: none; -webkit-appearance: none;
    outline: none;
}
.pds-mobile-nav__list .pds-acc-toggle:focus-visible { outline: 1px solid var(--pds-ink); outline-offset: 2px; }

/* Toggle plus petit pour les niveaux imbriqués */
.pds-mobile-nav__list .sub-menu .pds-acc-toggle { font-size: 18px; top: 0; }

/* Évite que le lien parent ne prenne tout le clic */
.pds-mobile-nav__list .menu-item-has-children > a { padding-right: 44px; }

/* ── Niveau 1 (MAILLOTS, LINGERIE, VÊTEMENTS, UNIVERS) ── */
.pds-mobile-nav__list > li > a {
    display: block; padding: 18px 0;
    font-size: 14px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--pds-ink);
}

/* ── Niveau 2 (sous-en-têtes : Vêtements / Inspirations) ──
 * Ces items servent de séparateur visuel + label de section.
 * Style discret, en gris, plus petit, séparé par ligne fine. */
.pds-mobile-nav__list .sub-menu > li > a {
    display: block;
    padding: 14px 0 8px 0;
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--pds-mute, #8a8178);
}
.pds-mobile-nav__list .sub-menu > li {
    border-top: 1px solid var(--pds-line);
    padding-top: 4px;
}
.pds-mobile-nav__list .sub-menu > li:first-child {
    border-top: 0;
    padding-top: 0;
}

/* ── Niveau 3 (Robes, Jupes, Maillots 1 pièce, Sans armature, etc.) ──
 * Items d'action principaux. Uppercase, bien lisibles. */
.pds-mobile-nav__list .sub-menu .sub-menu a {
    display: block;
    padding: 12px 0;
    font-size: 13px; font-weight: 400;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--pds-ink);
}

/* ── Niveau 4 (rare, ex: variantes) ── */
.pds-mobile-nav__list .sub-menu .sub-menu .sub-menu a {
    padding: 10px 0 10px 12px;
    font-size: 12px; text-transform: none; letter-spacing: 0;
    color: var(--pds-ink);
}
.pds-mobile-nav__foot { padding: 20px 22px; border-top: 1px solid var(--pds-line); display: flex; flex-direction: column; gap: 10px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ======================================================================
 * Announcement bars (ship + countdown)
 * ====================================================================== */
.pds-announcement-ship {
    background: #fff;
    color: var(--pds-ink);
    border-bottom: 1px solid var(--pds-line);
    font-size: 12px;
    text-align: center;
    padding: 8px 16px;
    letter-spacing: 0.04em;
}
.pds-announcement {
    display: block;
    background: var(--pds-ink);
    color: #fff;
    font-family: var(--serif);
    font-size: 14px;
    letter-spacing: 0.04em;
}
.pds-announcement__inner {
    max-width: 1440px; margin: 0 auto;
    padding: 10px 32px;
    display: flex; align-items: center; justify-content: center;
    gap: 24px; flex-wrap: wrap;
}
.pds-announcement__text { text-transform: uppercase; font-size: 13px; letter-spacing: 0.08em; }
.pds-announcement__countdown { font-variant-numeric: tabular-nums; opacity: 0.9; font-size: 13px; letter-spacing: 0.06em; }
@media (max-width: 640px){
    .pds-announcement__inner { padding: 8px 14px; gap: 12px; font-size: 12px; }
    .pds-announcement__text { font-size: 11px; }
    .pds-announcement__countdown { font-size: 11px; }
    .pds-announcement-ship { font-size: 11px; padding: 7px 12px; }
}

/* ======================================================================
 * Hero video
 * ====================================================================== */
.lux-hero { position: relative; background: #fff; margin-bottom: 96px; }
.lux-hero__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #000; }
.lux-hero__img, .lux-hero__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.lux-hero__img--mobile, .lux-hero__video--mobile { display: none; }
.lux-hero__img--desktop, .lux-hero__video--desktop { display: block; }

.lux-hero__card {
    position: absolute;
    bottom: 32px; left: 48px;
    background: rgba(28, 26, 23, 0.78);
    color: #fff;
    padding: 22px 28px 18px;
    max-width: 440px;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.lux-hero__caption {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    opacity: 0.95;
    font-family: var(--sans);
    font-weight: 500;
}
.lux-hero__title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin: 0;
}
.lux-hero__cta {
    position: absolute;
    left: 50%;
    bottom: -26px;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-block;
    background: #000;
    color: #fff;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    padding: 18px 56px;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #000;
    transition: background .3s ease, color .3s ease;
    text-decoration: none;
    white-space: nowrap;
}
.lux-hero__cta:hover { background: transparent; color: #000; }

@media (max-width: 900px){
    .lux-hero { margin-bottom: 72px; }
    .lux-hero__media { aspect-ratio: auto; height: 86vh; min-height: 560px; }
    .lux-hero__img--mobile, .lux-hero__video--mobile { display: block; }
    .lux-hero__img--desktop, .lux-hero__video--desktop { display: none; }
    .lux-hero__card {
        left: 14px; right: 14px; bottom: 42px;
        max-width: none;
        padding: 18px 20px 16px;
        background: rgba(28,26,23,0.80);
        gap: 12px;
    }
    .lux-hero__cta {
        bottom: -22px;
        padding: 14px 36px;
        font-size: 11px;
        letter-spacing: 0.16em;
    }
}

/* ======================================================================
 * Best sellers slider
 * ====================================================================== */
.lux-bs { padding: 60px 0 50px; background: #fff; }
.lux-bs__head { text-align: center; padding: 0 32px 28px; }
.lux-bs__tagline { font-size: 13px; color: var(--pds-ink-soft); margin: 0 0 14px; letter-spacing: 0.04em; }
.lux-bs__title {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}
.lux-bs__wrap {
    overflow: hidden;
    cursor: grab;
    padding: 0 32px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}
.lux-bs__wrap.is-dragging { cursor: grabbing; }
.lux-bs__track {
    display: flex;
    gap: 16px;
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    will-change: transform;
}
.lux-bs__wrap.is-dragging .lux-bs__track { transition: none; }
.lux-bs__card {
    flex: 0 0 calc((100% - 48px) / 4);
    text-align: left;
}
.lux-bs__img-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: var(--pds-bg-soft);
    margin-bottom: 12px;
}
.lux-bs__img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.lux-bs__wish {
    position: absolute; top: 10px; right: 10px;
    background: transparent; color: var(--pds-ink);
    width: 30px; height: 30px;
    display: grid; place-items: center;
}
.lux-bs__wish:hover { color: var(--pds-red); }
.lux-bs__name { font-weight: 500; font-size: 14px; margin: 0 0 2px; }
.lux-bs__attr { color: var(--pds-muted); font-size: 12px; margin-bottom: 6px; }
.lux-bs__price-row { display: flex; gap: 8px; align-items: baseline; font-size: 14px; margin-bottom: 6px; }
.lux-bs__price--was { color: var(--pds-muted); text-decoration: line-through; font-size: 13px; }
.lux-bs__price--now { font-weight: 600; color: var(--pds-red); }
.lux-bs__price--now .woocommerce-Price-amount { font-weight: 600; }
.lux-bs__price-badge { background: var(--pds-red); color: #fff; font-size: 11px; padding: 2px 6px; letter-spacing: 0.05em; }
.lux-bs__swatches { display: flex; gap: 4px; }
.lux-bs__swatch { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--pds-line); }

@media (max-width: 1100px){ .lux-bs__card { flex-basis: calc((100% - 32px) / 3); } }
@media (max-width: 700px){  .lux-bs__card { flex-basis: calc((100% - 16px) / 2); } .lux-bs__wrap { padding: 0 16px; } }

/* ======================================================================
 * Collection feature (3 cards)
 * ====================================================================== */
.lux-feat { padding: 0; background: #fff; }
.lux-feat__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.lux-feat__card { display: block; }
.lux-feat__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.lux-feat__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s;
    display: block;
}
.lux-feat__card:hover img { transform: scale(1.04); }
.lux-feat__overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
    gap: 14px;
    background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 35%, rgba(0,0,0,0) 65%);
    color: #fff;
    padding: 40px 20px 34px;
    text-align: center;
}
.lux-feat__name {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin: 0;
}
.lux-feat__cta {
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 11px 26px;
    text-transform: uppercase;
    transition: background .2s;
}
.lux-feat__card:hover .lux-feat__cta { background: #000; }

@media (max-width: 900px){
    .lux-feat { padding: 0; }
    .lux-feat__grid { grid-template-columns: 1fr; gap: 0; }
    .lux-feat__img-wrap { aspect-ratio: auto; }
    .lux-feat__img-wrap img { height: auto; }
    .lux-feat__overlay { padding: 40px 20px 28px; gap: 12px; }
}

/* ======================================================================
 * Éditorial (Shop the look)
 * ====================================================================== */
.lux-edito { background: #fff; padding: 32px 28px; }
.lux-edito__img-wrap { overflow: hidden; }
.lux-edito__img { width: 100%; height: auto; display: block; }
.lux-edito__body {
    text-align: center;
    padding: 50px 20px 60px;
    max-width: 720px;
    margin: 0 auto;
}
.lux-edito__title {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin: 0 0 16px;
}
.lux-edito__text {
    font-size: 14px;
    color: var(--pds-ink-soft);
    margin: 0 0 28px;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
}
.lux-edito__cta {
    display: inline-block;
    background: var(--pds-ink);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 12px 26px;
    text-transform: uppercase;
}
@media (max-width: 900px){
    .lux-edito { padding: 24px 18px; }
    .lux-edito__body { padding: 32px 6px 40px; }
}

/* ======================================================================
 * Newsletter
 * ====================================================================== */
.lux-nl { background: var(--pds-bg-soft); padding: 60px 20px; text-align: center; }
.lux-nl__inner { max-width: 560px; margin: 0 auto; }
.lux-nl__title {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    text-transform: none;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.2;
}
.lux-nl__text { font-size: 14px; color: var(--pds-ink-soft); margin: 0 0 24px; }
.lux-nl__field {
    display: flex;
    border: 1px solid var(--pds-ink);
    background: #fff;
    overflow: hidden;
}
.lux-nl__field input {
    flex: 1;
    border: 0;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    background: #fff;
}
.lux-nl__field button {
    background: var(--pds-ink);
    color: #fff;
    padding: 0 22px;
    display: grid; place-items: center;
}

/* ======================================================================
 * Collection (archive-product) — inspiration Polène / Pain de Sucre
 * ====================================================================== */
.lux-col { max-width: 1440px; margin: 0 auto; padding: 28px 32px 80px; }

.lux-col__hero { text-align: center; padding: 14px 0 26px; }
.lux-col__hero-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.005em;
    margin: 0;
    color: var(--pds-ink);
    line-height: 1.2;
}

/* Sous-catégories (thumbnails rectangulaires façon Polène) */
.lux-col__subnav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 12px 0 20px;
    margin: 0;
}
.lux-col__subnav::-webkit-scrollbar { display: none; }
.lux-col__subnav-track {
    list-style: none;
    margin: 0; padding: 0 16px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    min-width: max-content;
    width: 100%;
}
.lux-col__subitem {
    flex: 0 0 auto;
    margin: 0; padding: 0;
    list-style: none;
}
.lux-col__sublink {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--pds-ink);
    width: 130px;
}
.lux-col__subimg {
    display: block;
    width: 130px;
    height: 165px;
    background: var(--pds-bg-soft) center/cover no-repeat;
    border-radius: 0;
    transition: opacity .25s ease;
}
.lux-col__sublink:hover .lux-col__subimg { opacity: .88; }
.lux-col__sublabel {
    display: inline-block;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--pds-ink);
    padding: 0;
    text-align: center;
    line-height: 1.3;
    position: relative;
}
.lux-col__subitem.is-active .lux-col__sublabel {
    font-weight: 500;
}
.lux-col__subitem.is-active .lux-col__sublabel::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: -4px;
    height: 1px; background: var(--pds-ink);
}
@media (max-width: 760px) {
    .lux-col__subnav-track {
        justify-content: flex-start;
        gap: 12px;
        padding: 0 16px;
    }
    .lux-col__sublink { width: 92px; gap: 8px; }
    .lux-col__subimg { width: 92px; height: 118px; }
    .lux-col__sublabel { font-size: 12px; }
}

/* Toolbar : FILTRER | TRIER */
.lux-col__toolbar {
    display: flex; align-items: center; justify-content: center;
    gap: 80px;
    padding: 14px 0;
    border-top: 1px solid var(--pds-line);
    border-bottom: 1px solid var(--pds-line);
    margin: 4px 0 28px;
    font-size: 13px;
    letter-spacing: 0.02em;
}
.lux-col__tool {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 2px;
    background: transparent; border: 0;
    color: var(--pds-ink);
    cursor: pointer;
    font: inherit;
}
.lux-col__sort {
    display: inline-flex; align-items: center; gap: 8px;
    position: relative;
    color: var(--pds-ink);
    padding: 4px 0;
}
.lux-col__sort .woocommerce-ordering {
    position: absolute; inset: 0;
    margin: 0;
}
.lux-col__sort select {
    appearance: none;
    width: 100%; height: 100%;
    border: 0; background: transparent;
    padding: 0;
    color: transparent;
    cursor: pointer;
    opacity: 0;
    font: inherit;
}

/* Grille produits — reset WooCommerce natif + grid propre */
.lux-col__grid {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 18px;
    width: 100%;
}
.lux-col__grid > li.product,
.lux-col__grid > li.lux-col__card {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: none !important;
    list-style: none !important;
}
.lux-col__grid::before,
.lux-col__grid::after { content: none !important; display: none !important; }

@media (max-width: 1100px){ .lux-col__grid { grid-template-columns: repeat(3, 1fr); gap: 32px 14px; } }
@media (max-width: 760px) {
    .lux-col { padding: 14px 12px 60px; }
    .lux-col__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px 10px; }
    .lux-col__toolbar { gap: 40px; margin: 4px 0 18px; }
}

/* Carte produit */
.lux-col__card { position: relative; list-style: none; }
.lux-col__card.product { margin: 0; }
.lux-col__link { display: block; text-decoration: none; color: inherit; }
.lux-col__img-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--pds-bg-soft);
    margin-bottom: 10px;
}
.lux-col__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: opacity .35s ease;
}
@media (max-width: 640px) {
    .lux-col__img-wrap { aspect-ratio: 3 / 4; }
}
.lux-col__img--hover { opacity: 0; }
.lux-col__card:hover .lux-col__img--primary { opacity: 0; }
.lux-col__card:hover .lux-col__img--hover   { opacity: 1; }

/* Badges top-left (DENTELLE FRANÇAISE, NEW, -%) */
.lux-col__badges {
    position: absolute; top: 10px; left: 10px;
    display: flex; flex-direction: column; gap: 6px;
    align-items: flex-start;
    pointer-events: none;
    z-index: 2;
}
.lux-col__tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 9px;
    background: #fff;
    color: var(--pds-ink);
    border: 1px solid rgba(28, 26, 23, 0.12);
    line-height: 1;
}
.lux-col__tag--new     { background: #fff; color: var(--pds-ink); }
.lux-col__tag--special { background: #fff; color: var(--pds-ink); }
.lux-col__tag--sale    { background: var(--pds-ink); color: #fff; border-color: var(--pds-ink); }

/* Favori top-right (toujours visible) */
.lux-col__wish {
    position: absolute; top: 10px; right: 10px;
    width: 30px; height: 30px;
    background: transparent; border: 0;
    display: grid; place-items: center;
    color: var(--pds-ink);
    cursor: pointer;
    z-index: 2;
    opacity: 0.9;
    transition: color .2s, transform .2s;
}
.lux-col__wish:hover { color: #000; transform: scale(1.08); }

/* Meta sous la carte */
.lux-col__meta { padding: 0 2px; }
.lux-col__name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--pds-ink);
    margin-bottom: 2px;
    text-transform: lowercase;
}
.lux-col__sub {
    font-size: 13px;
    color: var(--pds-muted);
    letter-spacing: 0.01em;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lux-col__price-row {
    display: flex; gap: 8px; align-items: baseline;
    font-size: 14px; font-weight: 500;
    margin-bottom: 8px;
    color: var(--pds-ink);
}
.lux-col__price-row .price { color: var(--pds-ink); font-weight: 500; }
.lux-col__price-row del { color: var(--pds-muted); font-weight: 400; margin-right: 4px; }
.lux-col__price-row ins { text-decoration: none; color: var(--pds-ink); }

/* Pastilles couleurs sous le prix */
.lux-col__swatches {
    display: flex; gap: 5px; align-items: center;
    margin-top: 2px;
}
.lux-col__swatch {
    display: inline-block;
    width: 9px; height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
}
.lux-col__swatch-more {
    font-size: 11px; color: var(--pds-muted);
    margin-left: 4px;
    letter-spacing: 0.02em;
}

.lux-col__empty { padding: 60px 0; text-align: center; color: var(--pds-muted); }

/* ======================================================================
 * PAGE PRODUIT — reproduction fidèle Pain de Sucre (mobile-first)
 * ====================================================================== */
.lux-prod {
    max-width: 1280px; margin: 0 auto;
    padding-bottom: 60px;
    color: #1c1a17;
}

/* ── Galerie ── */
.lux-prod__gallery { position: relative; background: #fafafa; }
.lux-prod__gallery-track {
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none;
}
.lux-prod__gallery-track::-webkit-scrollbar { display: none; }
.lux-prod__slide { flex: 0 0 100%; scroll-snap-align: start; margin: 0; }
.lux-prod__slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    max-height: 100vh;
    background: #fafafa;
}
@media (min-width: 901px) {
    .lux-prod__slide img { max-height: none; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
}

.lux-prod__wish {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    width: 38px; height: 38px; border-radius: 50%;
    background: #fff; border: none; color: #1c1a17;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: color .15s;
}
.lux-prod__wish:hover { color: var(--pds-red, #c2261d); }

.lux-prod__dots {
    position: absolute; left: 0; right: 0; bottom: 14px;
    display: flex; justify-content: center; gap: 6px; z-index: 2;
}
.lux-prod__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.06);
    padding: 0; cursor: pointer; transition: background .2s, transform .2s;
}
.lux-prod__dot.is-active { background: #1c1a17; transform: scale(1.25); }

/* ── Panneau info ── */
.lux-prod__info { padding: 22px 18px 10px; }
.lux-prod__head {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px; margin-bottom: 6px;
}
.lux-prod__title {
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic; font-weight: 400;
    font-size: 26px; line-height: 1.15; letter-spacing: 0.01em;
    margin: 0; text-transform: lowercase;
    flex: 1;
}
.lux-prod__price {
    font-size: 20px; font-weight: 500; color: #1c1a17;
    white-space: nowrap;
}
.lux-prod__price .woocommerce-Price-amount { font-weight: 500; }
.lux-prod__price del { color: #9a9a9a; text-decoration: line-through; font-size: 15px; margin-right: 6px; }
.lux-prod__price ins { text-decoration: none; }

.lux-prod__sub {
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic; font-size: 14px; color: #6b6b6b;
    margin: 0 0 12px;
}
.lux-prod__badge {
    display: inline-block;
    background: #1c1a17; color: #fff;
    font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
    padding: 4px 8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ── Form / variations ── */
.lux-prod__form { margin: 6px 0 0; }
.lux-prod__field { margin-bottom: 20px; }
.lux-prod__label-row {
    display: flex; align-items: baseline; gap: 10px;
    margin-bottom: 10px;
}
.lux-prod__label {
    font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: #1c1a17;
}
.lux-prod__label-value {
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic; font-size: 14px; color: #6b6b6b;
    text-transform: lowercase;
}

.lux-prod__swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.lux-prod__swatch {
    position: relative; display: inline-flex;
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid #e5e5e5; background: #fff;
    cursor: pointer; padding: 2px; box-sizing: border-box;
    transition: border-color .15s;
}
.lux-prod__swatch input { position: absolute; opacity: 0; pointer-events: none; }
.lux-prod__swatch-dot {
    display: block; width: 100%; height: 100%; border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
}
.lux-prod__swatch:hover { border-color: #9a9a9a; }
.lux-prod__swatch.is-active,
.lux-prod__swatch:has(input:checked) { border-color: #1c1a17; }

.lux-prod__sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.lux-prod__size { position: relative; cursor: pointer; margin: 0; }
.lux-prod__size input { position: absolute; opacity: 0; pointer-events: none; }
.lux-prod__size span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 48px; height: 42px; padding: 0 12px;
    border: 1px solid #d8d8d8; background: #fff; color: #1c1a17;
    font-size: 13px; letter-spacing: 0.02em;
    transition: all .15s;
}
.lux-prod__size:hover span { border-color: #1c1a17; }
.lux-prod__size input:checked + span { border-color: #1c1a17; background: #1c1a17; color: #fff; }
.lux-prod__size input:disabled + span { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

.lux-prod__size-links {
    display: flex; align-items: center; gap: 10px;
    margin-top: 14px;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.lux-prod__size-links a {
    color: #1c1a17; text-decoration: underline; text-underline-offset: 3px;
}
.lux-prod__size-links-sep { color: #c0c0c0; }
.lux-prod__size-advice {
    margin: 10px 0 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic; font-size: 13px; color: #6b6b6b;
    line-height: 1.5;
}

/* ── Shipping countdown ── */
.lux-prod__ship {
    display: flex; align-items: center; gap: 9px;
    margin: 18px 0 14px;
    padding: 10px 0;
    font-size: 12px; color: #1c1a17;
    border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.lux-prod__ship svg { flex-shrink: 0; color: #1c1a17; }
.lux-prod__ship-count {
    display: inline-block; margin: 0 2px;
    font-weight: 600; color: #1c1a17;
    font-variant-numeric: tabular-nums;
}

/* ── CTAs ── */
.lux-prod__add {
    display: block; width: 100%;
    background: #1c1a17; color: #fff; border: 1px solid #1c1a17;
    padding: 15px 20px; box-sizing: border-box;
    font-size: 12px; font-weight: 500; letter-spacing: 0.16em;
    text-transform: uppercase; text-align: center;
    cursor: pointer; transition: opacity .15s;
    margin: 8px 0;
    font-family: inherit;
}
.lux-prod__add:hover { opacity: 0.88; }
.lux-prod__add:disabled { opacity: 0.5; cursor: not-allowed; }
.lux-prod__reserve {
    display: block; width: 100%;
    background: #fff; color: #1c1a17; border: 1px solid #1c1a17;
    padding: 14px 20px; box-sizing: border-box;
    font-size: 12px; font-weight: 500; letter-spacing: 0.16em;
    text-transform: uppercase; text-align: center; text-decoration: none;
    transition: all .15s;
}
.lux-prod__reserve:hover { background: #1c1a17; color: #fff; }

/* ── Returns ── */
.lux-prod__returns {
    display: flex; align-items: center; gap: 10px;
    margin: 24px 0 8px;
    padding: 0 6px;
}
.lux-prod__returns svg { flex-shrink: 0; color: #1c1a17; }
.lux-prod__returns p {
    margin: 0;
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic; font-size: 13px; color: #6b6b6b;
    line-height: 1.4;
}

/* ── Accordéons ── */
.lux-prod__accs { margin-top: 18px; }
.lux-prod__acc {
    border-top: 1px solid #e5e5e5;
}
.lux-prod__acc:last-child { border-bottom: 1px solid #e5e5e5; }
.lux-prod__acc summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0;
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; cursor: pointer;
    list-style: none;
}
.lux-prod__acc summary::-webkit-details-marker { display: none; }
.lux-prod__acc-ico { font-size: 20px; font-weight: 300; transition: transform .2s; line-height: 1; }
.lux-prod__acc[open] .lux-prod__acc-ico { transform: rotate(45deg); }
.lux-prod__acc-body {
    padding: 0 0 18px;
    font-size: 14px; line-height: 1.7; color: #3a3a3a;
}
.lux-prod__acc-body p { margin: 0 0 10px; }
.lux-prod__acc-body p:last-child { margin-bottom: 0; }

/* ======================================================================
 * Complétez votre look — slider cards
 * ====================================================================== */
.lux-look { padding: 40px 18px 20px; }
.lux-look__title {
    text-align: center;
    font-family: 'Crimson Text', Georgia, serif;
    font-weight: 400; font-style: italic;
    font-size: 22px; color: #1c1a17;
    margin: 0 0 24px;
    text-transform: lowercase;
    letter-spacing: 0.02em;
}
.lux-look__wrap { position: relative; }
.lux-look__track {
    display: flex; gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.lux-look__track::-webkit-scrollbar { display: none; }
.lux-look__card {
    flex: 0 0 calc(50% - 6px);
    scroll-snap-align: start;
    position: relative;
}
.lux-look__link { display: block; text-decoration: none; color: inherit; }
.lux-look__img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f4f4f4;
    margin-bottom: 10px;
}
.lux-look__img {
    display: block; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.lux-look__card:hover .lux-look__img { transform: scale(1.03); }

.lux-look__tag {
    position: absolute; top: 10px; left: 10px; z-index: 2;
    background: #1c1a17; color: #fff;
    font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
    padding: 4px 8px;
    text-transform: uppercase;
}
.lux-look__wish {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    width: 30px; height: 30px; border-radius: 50%;
    background: #fff; border: none; color: #1c1a17;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: color .15s;
}
.lux-look__wish:hover { color: var(--pds-red, #c2261d); }
.lux-look__quickadd {
    position: absolute; bottom: 10px; right: 10px; z-index: 2;
    width: 32px; height: 32px; border-radius: 50%;
    background: #1c1a17; border: none; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; transform: translateY(6px);
    transition: opacity .25s, transform .25s;
}
.lux-look__card:hover .lux-look__quickadd,
.lux-look__quickadd:focus { opacity: 1; transform: translateY(0); }
@media (hover: none) {
    .lux-look__quickadd { opacity: 1; transform: none; }
}

.lux-look__meta { padding: 0 2px; }
.lux-look__name {
    display: block;
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic; font-size: 15px; color: #1c1a17;
    margin-bottom: 2px;
    text-transform: lowercase;
    line-height: 1.3;
}
.lux-look__sub {
    display: block;
    font-size: 12px; color: #9a9a9a;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

/* ── Desktop ── */
@media (min-width: 900px) {
    .lux-prod {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 40px 80px;
    }
    .lux-prod__gallery {
        position: sticky;
        top: 100px;
        align-self: start;
        max-height: calc(100vh - 120px);
        overflow: hidden;
    }
    .lux-prod__gallery-track { flex-direction: column; scroll-snap-type: y mandatory; max-height: calc(100vh - 120px); overflow-y: auto; }
    .lux-prod__slide { flex: 0 0 auto; scroll-snap-align: start; }
    .lux-prod__dots { display: none; }
    .lux-prod__wish { top: 20px; right: 20px; }

    .lux-prod__info { padding: 0; max-width: 480px; }
    .lux-prod__title { font-size: 30px; }
    .lux-prod__price { font-size: 22px; }

    .lux-look { grid-column: 1 / -1; padding: 60px 0 0; }
    .lux-look__track { gap: 18px; overflow-x: auto; }
    .lux-look__card { flex: 0 0 calc(25% - 14px); }
}

/* ======================================================================
 * Footer Pain de Sucre
 * ====================================================================== */
.pds-footer { background: #FAFAFA; color: #1c1a17; padding: 60px 0 24px; margin-top: 0; }
.pds-footer__top {
    max-width: 1440px; margin: 0 auto;
    padding: 0 32px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.pds-footer__col { min-width: 0; }
.pds-footer__col--brand { max-width: 380px; }
.pds-footer__logo {
    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: 0.04em;
    font-weight: 600;
    margin-bottom: 24px;
}
.pds-footer__logo-de {
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    padding: 0 4px;
}
.pds-footer__tagline { font-size: 14px; line-height: 1.6; margin: 0 0 22px; color: #5a5853; }
.pds-footer__contact { font-size: 13px; line-height: 1.8; color: #5a5853; }
.pds-footer__contact strong { color: #1c1a17; font-weight: 600; }
.pds-footer__contact a { color: #5a5853; text-decoration: underline; }
.pds-footer__heading {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}
.pds-footer__menu-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 14px;
    font-size: 13px;
    letter-spacing: 0.08em;
}
.pds-footer__menu-list a { color: #5a5853; }
.pds-footer__menu-list a:hover { color: #1c1a17; }

/* Newsletter footer */
.pds-footer__nl label {
    display: flex;
    border: 1px solid rgba(28,26,23,.25);
    background: #fff;
}
.pds-footer__nl input {
    flex: 1;
    background: transparent;
    border: 0;
    color: #1c1a17;
    padding: 14px 16px;
    font: inherit;
    outline: none;
}
.pds-footer__nl input::placeholder { color: #8a8178; }
.pds-footer__nl button {
    color: #fff;
    background: #1c1a17;
    padding: 0 22px;
    display: grid; place-items: center;
}

/* Legal bar */
.pds-footer__legal {
    max-width: 1440px; margin: 0 auto;
    padding: 24px 32px 0;
    border-top: 1px solid rgba(28,26,23,.10);
    display: flex; flex-direction: column; align-items: center;
    gap: 20px;
    text-align: center;
}
.pds-footer__legal-links {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 12px 24px;
    justify-content: center;
    font-size: 12px;
}
.pds-footer__legal-links a { color: #5a5853; text-decoration: underline; }
.pds-footer__legal-links a:hover { color: #1c1a17; }
.pds-footer__pay { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pds-footer__pay span { display: inline-flex; }
.pds-footer__pay svg { display: block; }
.pds-footer__copy { font-size: 12px; color: #8a8178; margin: 0; letter-spacing: 0.1em; }

@media (max-width: 1100px){
    .pds-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
    .pds-footer__top { grid-template-columns: 1fr; gap: 36px; padding: 0 22px 30px; }
    .pds-footer__col--brand { max-width: none; }
}

/* ======================================================================
 * WooCommerce overrides mineures
 * ====================================================================== */
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-store-notice, p.demo_store { background: var(--pds-ink); }
.woocommerce ul.products li.product .price ins { text-decoration: none; font-weight: 600; }
.woocommerce ul.products li.product .price del { color: var(--pds-muted); opacity: 1; font-size: 13px; }
.woocommerce .quantity .qty { padding: 8px 10px; width: 72px; border: 1px solid var(--pds-line); }
.pds-badge {
    background: var(--pds-red) !important;
    color: #fff !important;
    border-radius: 0 !important;
    top: 10px !important; right: 10px !important; left: auto !important;
    min-height: 0 !important; min-width: 0 !important;
    padding: 4px 8px !important;
    font-size: 11px !important; line-height: 1.2 !important;
    letter-spacing: 0.06em !important;
}
.woocommerce-Price-amount { font-weight: inherit; }

/* ======================================================================
 * Hard-reset v1.4.0 — Neutralise les rendus WC par défaut sur nos pages
 * Force l'usage des templates PDS même si un plugin tiers réinjecte
 * ====================================================================== */
.pds-theme-v1-14-0 .woocommerce-product-gallery,
.pds-theme-v1-14-0 div.product.type-product > .woocommerce-product-gallery,
.pds-theme-v1-14-0 div.product.type-product > .summary.entry-summary,
.pds-theme-v1-14-0 div.product.type-product > .woocommerce-tabs,
.pds-theme-v1-14-0 div.product.type-product > .up-sells,
.pds-theme-v1-14-0 div.product.type-product > .related,
.pds-theme-v1-14-0 main.pds-main.lux-prod ~ .product,
.pds-theme-v1-14-0 main.pds-main.lux-prod ~ #secondary { display: none !important; }

/* Cacher le titre UGS/SKU/meta par défaut s'il apparaît sur la single */
.pds-theme-v1-14-0 .product_meta,
.pds-theme-v1-14-0 .woocommerce-product-details__short-description { display: none !important; }

/* Labels de tableau variations — cache la version dropdown native si affichée */
.pds-theme-v1-14-0 .lux-prod__form table.variations,
.pds-theme-v1-14-0 .lux-prod__form .reset_variations { display: none !important; }

/* Button CTA (notre style prime sur celui de WC) */
.pds-theme-v1-14-0 .single_add_to_cart_button.lux-prod__add {
    display: block !important; width: 100% !important;
    background: var(--pds-ink) !important; color: #fff !important;
    border: 0 !important; border-radius: 0 !important;
    padding: 18px !important; font-size: 12px !important;
    letter-spacing: 0.14em !important; text-transform: uppercase !important;
    margin-top: 18px !important;
}
.pds-theme-v1-14-0 .single_add_to_cart_button.lux-prod__add:hover { background: #000 !important; }

/* Grille collection : jamais plus de 4 col, jamais la grille WC par défaut */
.pds-theme-v1-14-0 ul.products.columns-3,
.pds-theme-v1-14-0 ul.products.columns-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 18px !important;
}
@media (max-width: 960px) {
    .pds-theme-v1-14-0 ul.products.columns-3,
    .pds-theme-v1-14-0 ul.products.columns-4 { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 640px) {
    .pds-theme-v1-14-0 ul.products.columns-3,
    .pds-theme-v1-14-0 ul.products.columns-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}

/* Si WC injecte ses props par défaut "couleur: choisir une option" etc. */
.pds-theme-v1-14-0 .variations select,
.pds-theme-v1-14-0 .woocommerce-variation-add-to-cart select { display: none !important; }

/* ======================================================================
 * Modal PDS (guide des tailles, etc.)
 * ====================================================================== */
.pds-modal {
    position: fixed; inset: 0; z-index: 1000;
    display: none;
}
.pds-modal.is-open { display: block; }
.pds-modal__overlay {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.55);
    animation: pdsModalFade 0.25s ease;
}
.pds-modal__panel {
    position: relative;
    max-width: 720px; width: calc(100% - 24px);
    max-height: 90vh;
    margin: 5vh auto;
    background: #fff;
    padding: 32px 28px 28px;
    overflow-y: auto;
    animation: pdsModalSlide 0.28s ease;
}
.pds-modal__close {
    position: absolute; top: 12px; right: 14px;
    width: 32px; height: 32px;
    background: transparent; border: 0;
    font-size: 26px; line-height: 1; cursor: pointer;
    color: var(--pds-ink);
}
.pds-modal__head h3 {
    margin: 0 0 8px;
    font-family: var(--sans);
    font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 500;
}
.pds-modal__head p {
    margin: 0 0 20px;
    font-size: 13px;
    color: var(--pds-muted);
}
.pds-modal__body { font-size: 14px; line-height: 1.55; }
.pds-modal__body p { margin: 0 0 14px; }
.lux-sizeguide__img {
    display: block;
    width: 100%; height: auto;
    margin-top: 12px;
    background: #fafafa;
}
@keyframes pdsModalFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes pdsModalSlide { from { opacity: 0; transform: translateY(20px) } to { opacity: 1; transform: translateY(0) } }
body.pds-modal-open { overflow: hidden; }

/* ======================================================================
 * Cart Drawer — reproduit le cart slider Pain de Sucre éditorial
 * ====================================================================== */
.pds-cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
    z-index: 9998;
}
.pds-cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.pds-cart {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 420px; max-width: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    z-index: 9999;
    display: flex; flex-direction: column;
    font-family: var(--pds-font-body, 'Inter', sans-serif);
    color: var(--pds-ink, #1C1A17);
    box-shadow: -12px 0 24px rgba(0,0,0,.06);
}
.pds-cart.is-open { transform: translateX(0); }
body.pds-cart-open { overflow: hidden; }

.pds-cart__content {
    display: flex; flex-direction: column;
    height: 100%; overflow: hidden;
}

.pds-cart__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.pds-cart__title {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 500;
}
.pds-cart__title-ico { display: block; }
.pds-cart__close {
    background: none; border: 0; cursor: pointer;
    font-size: 26px; line-height: 1;
    padding: 4px 8px; color: var(--pds-ink, #1C1A17);
}

.pds-cart__list {
    list-style: none; margin: 0; padding: 0;
    overflow-y: auto; flex: 1;
}
.pds-cart__item {
    display: flex; gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
}
.pds-cart__item.is-gift { background: #f8f8f8; }
.pds-cart__thumb {
    flex: 0 0 84px;
    width: 84px; height: 108px;
    overflow: hidden;
    background: #f5f5f5;
}
.pds-cart__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.pds-cart__info {
    flex: 1 1 auto; min-width: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.pds-cart__row {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 12px;
}
.pds-cart__name {
    font-size: 13px; line-height: 1.3; min-width: 0;
}
.pds-cart__name a { color: inherit; text-decoration: none; }
.pds-cart__name strong { font-weight: 600; display: block; }
.pds-cart__price {
    font-size: 13px; font-weight: 600; white-space: nowrap;
}
.pds-cart__meta {
    font-size: 12px; color: #8A8178; line-height: 1.4;
}
.pds-cart__meta dl, .pds-cart__meta dd, .pds-cart__meta dt {
    display: inline; margin: 0;
}
.pds-cart__meta dd + dt::before { content: " / "; }

.pds-cart__controls {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-top: 6px;
}
.pds-cart__qty {
    display: inline-flex; align-items: center; gap: 0;
    border: 1px solid #ddd;
    height: 30px;
}
.pds-cart__qty button {
    background: none; border: 0; cursor: pointer;
    width: 30px; height: 28px;
    font-size: 14px; line-height: 1;
    color: var(--pds-ink, #1C1A17);
}
.pds-cart__qty input {
    width: 28px; height: 28px;
    border: 0; background: transparent;
    text-align: center; font-size: 13px;
    -moz-appearance: textfield;
}
.pds-cart__qty input::-webkit-inner-spin-button,
.pds-cart__qty input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pds-cart__remove {
    background: none; border: 0; cursor: pointer;
    font-size: 12px; text-decoration: underline;
    color: var(--pds-ink, #1C1A17);
    padding: 0;
}
.pds-cart-gift-badge {
    display: inline-block;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em;
    padding: 2px 7px;
    background: #000; color: #fff;
    margin-left: 8px;
    vertical-align: middle;
}
.pds-cart-gift-price {
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--pds-ink, #1C1A17);
}
.pds-cart-gift-qty {
    font-size: 12px; color: #8A8178;
}
.pds-cart__controls.is-gift { justify-content: flex-end; }

.pds-cart__shipping {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border-top: 1px solid #eee;
    background: #f8f8f8;
    font-size: 13px;
    flex-shrink: 0;
}
.pds-cart__shipping-note {
    margin: 0;
    padding: 12px 22px;
    font-size: 11px; color: #8A8178; line-height: 1.5;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.pds-cart__checkout {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: #000; color: #fff;
    padding: 16px 22px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none;
    border: 0; margin: 12px 22px 0;
    transition: opacity .2s ease;
}
.pds-cart__checkout:hover { opacity: .85; color: #fff; }
.pds-cart__dot { opacity: .7; }

.pds-cart__share {
    display: flex; align-items: center; gap: 10px;
    margin: 10px 22px 22px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #000;
    cursor: pointer;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--pds-ink, #1C1A17);
    text-align: left;
    justify-content: space-between;
}
.pds-cart__share-ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    background: #2B6BE0; color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}
.pds-cart__share-label { flex: 1; margin-left: 6px; }
.pds-cart__share-chev { flex-shrink: 0; }

.pds-cart__empty {
    padding: 60px 22px;
    text-align: center;
}
.pds-cart__empty .pds-cart__cta {
    display: inline-block;
    background: #000; color: #fff;
    padding: 14px 28px;
    text-transform: uppercase; letter-spacing: 0.14em;
    font-size: 12px; text-decoration: none;
    margin-top: 20px;
}

@media (max-width: 480px) {
    .pds-cart { width: 100%; }
    .pds-cart__head { padding: 14px 16px; }
    .pds-cart__item { padding: 14px 16px; gap: 12px; }
    .pds-cart__thumb { flex-basis: 72px; width: 72px; height: 94px; }
    .pds-cart__checkout { margin: 12px 16px 0; }
    .pds-cart__share { margin: 10px 16px 18px; }
    .pds-cart__shipping, .pds-cart__shipping-note { padding-left: 16px; padding-right: 16px; }
}
