/* Import de la police Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400;500;600&display=swap');

/* Import de la police Kickrush Demo */
@font-face {
    font-family: 'Kickrush Demo';
    src: url('asset/font/kickrush demo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Import de la police Playfair Display */
@font-face {
    font-family: 'Playfair Display';
    src: url('asset/font/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Import de la police Edwardian Script ITC */
@font-face {
    font-family: 'Edwardian Script ITC';
    src: url('asset/font/edwardianscriptitc.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Import de la police Broadway */
@font-face {
    font-family: 'Broadway';
    src: url('asset/font/Broadway Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Playfair Display Bold';
    src: url('asset/font/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #ffffff;
}

/* Styles pour l'en-tête principal */
.main-header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    padding: 1.5rem 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-header.scrolled {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled::before {
    opacity: 0;
}

.main-header.scrolled .nav-left a,
.main-header.scrolled .nav-right a,
.main-header.scrolled .brand-center h1,
.main-header.scrolled .cart-icon svg {
    color: #000000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    display: flex;
    justify-content: flex-start;
}

.nav-left ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
    align-items: center;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
    align-items: center;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.nav-left a:hover,
.nav-right a:hover {
    opacity: 0.7;
}

.brand-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-center h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 28px;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.brand-link {
    text-decoration: none;
    color: inherit;
}

.cart-icon {
    display: flex;
    align-items: center;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.cart-icon svg:hover {
    opacity: 0.7;
}

.nav-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    transition: color 0.3s ease;
}

.nav-menu-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-menu-toggle.is-open .nav-menu-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-menu-toggle.is-open .nav-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-menu-toggle.is-open .nav-menu-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.main-header.scrolled .nav-menu-toggle {
    color: #000000;
}

.cart-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: inherit;
    font: inherit;
    line-height: 0;
}

.cart-icon-btn:hover svg {
    opacity: 0.7;
}

.cart-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-count-badge {
    position: absolute;
    top: -7px;
    right: -9px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #5b3b8a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
}

body.cart-drawer-open {
    overflow: hidden;
}

body.mobile-nav-open {
    overflow: hidden;
}

.nav-mobile-backdrop,
.nav-mobile-panel {
    display: none;
}

.nav-mobile-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 88px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-mobile-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.nav-mobile-list a {
    display: block;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #ffffff;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s linear 0.35s;
}

.cart-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
}

.cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop {
    opacity: 1;
}

.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100%, 420px);
    max-width: 100vw;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open .cart-drawer-panel {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(141, 111, 181, 0.25);
    flex-shrink: 0;
}

.cart-drawer-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #111;
}

.cart-drawer-close {
    border: none;
    background: transparent;
    color: #333;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    margin: -0.2rem -0.4rem 0 0;
}

.cart-drawer-close:hover {
    opacity: 0.65;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.25rem;
    -webkit-overflow-scrolling: touch;
}

.cart-drawer-empty {
    margin: 2rem 0;
    text-align: center;
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

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

.cart-drawer-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-drawer-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-drawer-item-img {
    width: 72px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(141, 111, 181, 0.35);
}

.cart-drawer-item-details {
    flex: 1;
    min-width: 0;
    font-family: 'Inter', sans-serif;
}

.cart-drawer-item-title {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
    line-height: 1.35;
}

.cart-drawer-item-meta {
    display: block;
    margin-top: 0.2rem;
    font-weight: 400;
    color: #555;
    font-size: 0.85rem;
}

.cart-drawer-item-price {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    filter: blur(0.5rem);
    user-select: none;
}

.cart-drawer-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #8d6fb5;
    margin-bottom: 0.5rem;
}

.cart-drawer-qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #faf8fc;
    color: #222;
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.cart-drawer-qty-btn:hover {
    background: #f0eaf7;
}

.cart-drawer-qty-value {
    min-width: 2rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.cart-drawer-remove {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    color: #8d6fb5;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
}

.cart-drawer-remove:hover {
    color: #5b3b8a;
}



.cart-drawer-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
}

.cart-drawer-total {
    font-size: 1.15rem;
    filter: blur(0.5rem);
    user-select: none;
}

.cart-drawer-checkout {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    background: #111;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.cart-drawer-checkout:hover {
    background: #333;
}

/* Styles responsives */
@media (max-width: 768px) {
    .main-header {
        padding: 0.85rem 0;
    }

    .container {
        grid-template-columns: 44px 1fr 44px;
        padding: 0 16px;
        gap: 0.75rem;
    }

    .nav-menu-toggle {
        display: inline-flex;
    }

    .nav-left {
        display: none;
    }

    .cart-icon {
        position: static;
    }

    .nav-right {
        justify-content: flex-end;
    }

    .nav-right ul {
        gap: 0;
    }

    .nav-right ul li:not(.cart-icon) {
        display: none;
    }

    .cart-icon-btn {
        width: 44px;
        height: 44px;
    }

    .brand-center {
        min-width: 0;
    }

    .brand-center h1 {
        font-size: 1.95rem;
        text-align: center;
    }

    .nav-mobile-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 998;
        background: rgba(0, 0, 0, 0.32);
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .nav-mobile-backdrop[hidden] {
        display: none;
    }

    .nav-mobile-backdrop.is-visible {
        opacity: 1;
    }

    .nav-mobile-panel {
        display: block;
    }
}

/* Styles pour la section hero banner */
.hero-banner {
    background-image: url('asset/images/hero-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    padding-top: 80px;
    isolation: isolate;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        to top right,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.35) 20%,
        rgba(0, 0, 0, 0.08) 30%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    /* gap: 2rem; */
    margin-left: 60px;
    padding-top: 300px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    line-height: 1;
    margin: 0;
    width: 100%;
    max-width: 900px;
    position: relative;
}

.hero-script {
    font-family: 'Playfair Display Bold', serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 7vw, 5rem);
    /* line-height: 1.6; */
    color: white;
    font-weight: bold;
    margin: 0;
}

.hero-broadway {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: #ffffff;
    font-weight: normal;
}

.hero-cta-button {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1rem 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.hero-cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

/* Styles pour la section des cartes */
.cards-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 20px);
    max-width: 100%;
    padding: 0 clamp(1.25rem, 5vw, 150px);
}

.card-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.cards-section a.card-item {
    text-decoration: none;
    color: inherit;
}

.card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: transparent;
    padding: clamp(0.5rem, 2vw, 1.25rem);
    box-sizing: border-box;
}

.card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.card-color {
    font-family: 'Broadway', sans-serif;
    font-size: 1.7rem;
    color: #8b5cf6;
    display: block;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.45vw, 1.4rem);
    line-height: 1.3;
    margin: 0;
    color: black;
    text-align: left;
}

.card-price {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1.2rem);
    margin: 0;
    text-align: left;
    filter: blur(0.5rem);
    user-select: none;
}

@media (max-width: 768px) {
    .cards-section {
        padding: 2rem 0 2.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1rem;
        padding: 0 18px;
    }

    .card {
        aspect-ratio: 1 / 1.45;
        padding: 0.35rem;
    }

    .card-item {
        gap: 0.35rem;
    }

    .card-description,
    .card-price {
        text-align: center;
    }

    .card-description {
        font-size: 1rem;
    }

    .card-price {
        font-size: 0.98rem;
    }
}

/* Section liste à coches + visuel */
.checkmark-list-section {
    --checkmark-section-pad-y: clamp(3rem, 6vw, 5rem);
    padding: var(--checkmark-section-pad-y) 0;
    background-color: #ffffff;
}

.checkmark-list-container {
    --checkmark-gap: clamp(2rem, 5vw, 4.5rem);
    --checkmark-side-pad: clamp(1.25rem, 5vw, 150px);
    --checkmark-visual-slot: min(42vw, 440px);
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

.checkmark-list-content {
    text-align: left;
    box-sizing: border-box;
    min-width: 0;
    padding-right: calc(var(--checkmark-gap) + var(--checkmark-visual-slot));
}

.checkmark-list-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    line-height: 1.2;
    color: #000000;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.checkmark-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 3vw, 2.75rem);
}

.checkmark-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkmark-list-icon {
    flex-shrink: 0;
    color: #8b5cf6;
    margin-top: 0.35em;
}

.checkmark-list-svg {
    display: block;
    width: 30px;
    height: 30px;
}

.checkmark-list-title {
    font-family: 'Playfair Display Bold', 'Playfair Display', serif;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.3;
    color: #000000;
    margin: 0 0 0.4rem;
}

.checkmark-list-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.55;
    color: #4a4a4a;
    margin: 0;
}

.checkmark-list-visual {
    position: absolute;
    top: 0;
    right: var(--checkmark-side-pad);
    bottom: 0;
    width: var(--checkmark-visual-slot);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.checkmark-list-visual img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 140%;
    object-fit: contain;
    object-position: right center;
    pointer-events: auto;
}

@media (max-width: 900px) {
    .checkmark-list-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(118px, 34vw);
        gap: 1rem;
        align-items: start;
        padding: 0 18px;
    }

    .checkmark-list-content {
        padding-right: 0;
    }

    .checkmark-list-visual {
        position: static;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        min-height: 0;
        align-self: end;
        max-width: none;
        justify-content: center;
        pointer-events: none;
    }

    .checkmark-list-visual img {
        width: 100%;
        height: auto;
        max-width: 160px;
        max-height: none;
        margin-left: auto;
    }

    .checkmark-list-heading {
        margin-bottom: 1.5rem;
    }

    .checkmark-list-item {
        gap: 0.75rem;
    }

    .checkmark-list-svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .checkmark-list-container {
        gap: 0.85rem;
        padding: 0 16px;
    }

    .checkmark-list-visual img {
        max-width: 145px;
    }
}

/* CTA entre liste à coches et carrousel jeans */
.jeans-between-sections-cta-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 5vw, 150px);
    box-sizing: border-box;
    background-color: #ffffff;
}

.jeans-between-sections-cta {
    margin-top: 0;
    width: auto;
    min-width: clamp(13rem, 18vw, 17rem);
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem clamp(2rem, 5vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.3rem, 2.2vw, 1.56rem); /* ≈ 25px: 1.56rem = 24.96px at 16px base */
    line-height: 1.2;
    color: #000000;
    background-color: #ffffff;
    border: 2px solid #000000;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.jeans-between-sections-cta:hover {
    background-color: #000000;
    color: #ffffff;
}

@media (max-width: 768px) {
    .jeans-between-sections-cta-wrap {
        padding: 1.5rem 18px;
    }

    .jeans-between-sections-cta,
    .jeans-between-sections-cta[style] {
        width: 100% !important;
        min-width: 0;
        max-width: 320px;
        padding: 1rem 1.25rem;
        font-size: 1.25rem;
    }
}

/* Bandeau pleine largeur — Notre savoir-faire (fond photo + voile sombre) */
.notre-savoir-faire-banner {
    margin-top: 100px;
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: clamp(22rem, 65vh, 40rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 2rem);
    box-sizing: border-box;
    background: url('asset/images/savoir-faire.webp') center center / cover no-repeat;
}

.notre-savoir-faire-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.32);
}

.notre-savoir-faire-inner {
    position: relative;
    z-index: 1;
    max-width: 46rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

.notre-savoir-faire-heading {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.15;
    color: #ffffff;
}

.notre-savoir-faire-lead {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    line-height: 1.65;
    color: #ffffff;
}

.notre-savoir-faire-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.35rem;
    padding: 0.9rem 1.85rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.3;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border: 2px solid #ffffff;
    background-color: transparent;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.notre-savoir-faire-cta:hover {
    background-color: #ffffff;
    color: #000000;
}

@media (max-width: 768px) {
    .notre-savoir-faire-cta {
        width: 100%;
        max-width: 320px;
        padding: 1rem 1.25rem;
    }
}

/* Carrousel jeans (images depuis img/index/sections/caroussel) */
.jeans-carousel-section {
    --jeans-carousel-side: clamp(1rem, 5vw, 150px);
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
    background-color: #ffffff;
}

.jeans-carousel-inner {
    /* max-width: 1400px; */
    margin: 0 auto;
    /* padding: 0 var(--jeans-carousel-side); */
    box-sizing: border-box;
}

.jeans-carousel-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    line-height: 1.2;
    color: #000000;
    text-align: center;
    margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.jeans-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.jeans-carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.jeans-carousel-slide {
    flex: 0 0 33.333333%;
    min-width: 0;
    box-sizing: border-box;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.jeans-carousel-slide:last-child {
    border-right: none;
}

.jeans-carousel-slide img {
    display: block;
    width: 100%;
    height: clamp(280px, 52vw, 560px);
    object-fit: cover;
    object-position: center center;
}

.jeans-carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: clamp(2.5rem, 5vw, 3.25rem);
    height: clamp(2.5rem, 5vw, 3.25rem);
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transform: translateY(-50%);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.jeans-carousel-btn:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.jeans-carousel-btn:focus-visible {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

.jeans-carousel-btn--prev {
    left: clamp(0.35rem, 1.5vw, 0.75rem);
}

.jeans-carousel-btn--next {
    right: clamp(0.35rem, 1.5vw, 0.75rem);
}

.jeans-carousel-btn-chevron {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.65rem, 1.4vw, 0.85rem);
    font-weight: 600;
    letter-spacing: -0.12em;
    line-height: 1;
    user-select: none;
}

@media (max-width: 900px) {
    .jeans-carousel-slide {
        flex: 0 0 100%;
        border-right: none;
    }

    .jeans-carousel-slide img {
        height: clamp(320px, 85vw, 480px);
    }
}

/* Styles responsives pour la section hero */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 15px;
        gap: 1.5rem;
    }

    .hero-title {
        max-width: 100%;
    }

    .hero-script {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-left: 3%;
    }

    .hero-broadway {
        font-size: clamp(1.2rem, 6vw, 2rem);
        margin-right: 3%;
    }

    .hero-cta-button {
        width: min(100%, 240px);
        padding: 0.8rem 2rem;
        font-size: 1rem;
        align-self: flex-start;
    }
}





/* Styles pour la section jean */
.jean-section {
    background-color: #ffffff;
    padding: 4rem 0;
    font-family: 'Inter', sans-serif;
}

.jean-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.jean-text {
    flex: 1;
    max-width: 50%;
}

.jean-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
}

.highlight-adjust {
    font-family: 'Kickrush Demo', sans-serif;
    color: #5b3b8a;
    font-weight: 300;
}

.jean-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333333;
}

.jean-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.jean-features li {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #666666;
    position: relative;
    padding-left: 1.5rem;
}

.jean-features li::before {
    content: "•";
    color: #5b3b8a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.jean-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.jean-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Styles responsives pour la section jean */
@media (max-width: 768px) {
    .jean-section {
        padding: 3rem 0;
    }

    .jean-content {
        flex-direction: column;
        gap: 2rem;
    }

    .jean-text,
    .jean-image {
        max-width: 100%;
    }

    .jean-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .jean-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .jean-features li {
        font-size: 1rem;
    }
}

/* Styles pour la section features */
.features-section {
    background-image: url('asset/images/jeans.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    position: relative;
    color: #ffffff;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.features-section > .container {
    position: relative;
    z-index: 2;
    display: block;
}

.features-title {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.feature-title {
    font-family: 'Kickrush Demo', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    color: #5b3b8a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.feature-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

.cta-container {
    text-align: center;
}

.features-cta-button {
    background-color: #5b3b8a;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.features-cta-button:hover {
    background-color: #4a2e6c;
    transform: translateY(-2px);
}

/* Styles responsives pour la section features */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }

    .features-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card img {
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .features-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Styles pour la section about */
.about-section {
    background-color: #ffffff;
    padding: 4rem 0;
    font-family: 'Inter', sans-serif;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.about-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.about-text {
    flex: 1;
    max-width: 50%;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
}

.highlight-fitgirls {
    font-family: 'Kickrush Demo', sans-serif;
    color: #5b3b8a;
    font-weight: 300;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000000;
}

/* Styles responsives pour la section about */
@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image,
    .about-text {
        max-width: 100%;
    }

    .about-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .about-description {
        font-size: 1rem;
    }
}

/* Section "Notre Histoire" sur la page À propos */
.about-story-section {
    background-color: #ffffff;
    padding: 4rem 1rem;
}

.about-story-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-story-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
}

.about-story-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 3rem 1.5rem;
    }

    .about-story-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .about-story-text {
        font-size: 1rem;
    }
}

/* Page À propos — mise en page « histoire » */
.about-page {
    background-color: #ffffff;
    color: #000000;
}

.about-page-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.about-page-section {
    padding: 3.5rem 0;
}

.about-page-section:first-of-type {
    padding-top: 2.5rem;
}

.about-page-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.about-page-intro__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #000000;
}

.about-page-intro__subtitle {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    margin: 0;
    color: #000000;
}

.about-emphasis {
    color: #9b86d5;
    font-weight: 500;
}

.about-page-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.about-page-split__figure {
    margin: 0;
}

.about-page-split__figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-page-split__figure--portrait img {
    max-height: min(90vh, 720px);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 420px;
}

.about-page-split__figure--square img {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
}

.about-page-split__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin: 0 0 1.25rem;
    color: #000000;
}

.about-page-split__text {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #000000;
}

.about-page-split__text p {
    margin: 0 0 0.85rem;
}

.about-page-split__text p:last-child {
    margin-bottom: 0;
}

.about-page-narrative {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.65;
    text-align: left;
}

.about-page-narrative p {
    margin: 0 0 0.75rem;
}

.about-page-narrative p:last-child {
    margin-bottom: 0;
}

.about-page-vision {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-page-vision__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 1.5rem;
    color: #000000;
}

.about-page-vision__text {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: #000000;
}

.about-page-vision__text p {
    margin: 0 0 0.85rem;
}

.about-page-vision__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 2.5rem 0;
    }

    .about-page-split {
        grid-template-columns: 1fr;
    }

    .about-page-split__figure--portrait img {
        max-width: 100%;
        max-height: none;
    }
}

/* Styles pour la section testimonials */
.testimonials-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}


.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
}

.highlight-adopte {
    font-family: 'Kickrush Demo', sans-serif;
    color: #5b3b8a;
    font-weight: 300;
}

.testimonials-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: #000000;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.testimonial-stars {
    color: #3a5aa1;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 0.95rem;
    color: #000000;
    margin: 0;
}

.testimonials-cta-container {
    text-align: center;
}

.testimonials-cta-button {
    background-color: #5b3b8a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.testimonials-cta-button:hover {
    background-color: #4a2e6c;
    transform: translateY(-2px);
}

/* Styles responsives pour la section testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .testimonials-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonials-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Styles pour la section FAQ */
.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    width: 100%;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #000000;
    background-color: #ffffff;
    border: 2px solid #000000;
    margin-bottom: 0;
    text-align: left;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: #000000;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    padding: 0 2rem 0 2rem;
}

.faq-answer-open {
    max-height: 300px;
}

.faq-item.open .faq-question {
    border-bottom: none;
}

.faq-answer-open p {
    padding: 1rem 2rem 1.5rem;
    border: 2px solid #000000;
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin: 0;
    background-color: #ffffff;
}

.faq-cta-container {
    text-align: center;
}

.faq-cta-button {
    display: block;
    box-sizing: border-box;
    width: min(100%, 30rem);
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    padding: 1rem 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.5rem;
    /* border-radius: 5px; */
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.faq-cta-button:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Styles responsives pour la section FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .faq-accordion {
        margin: 0 auto 2rem;
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .faq-cta-button {
        width: 100%;
        max-width: 320px;
        padding: 0.95rem 1.25rem;
        font-size: 1rem;
    }
}


/* Styles pour la section Lookbook */
/* Section Notre savoir faire — fond jean avec overlay sombre */
.savoir-faire-section {
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('asset/images/savoir-faire.webp') center center / cover no-repeat;
}

.savoir-faire-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.savoir-faire-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1rem 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.savoir-faire-link {
    font-family: 'Playfair Display', serif;
    color: #8506e9;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-size: 1.125rem;
    transition: opacity 0.3s ease;
}

.savoir-faire-link:hover {
    opacity: 0.85;
}

.lookbook-section {
    
    padding: 7rem 20px;
}

.lookbook-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

.lookbook-text {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    line-height: 1.6;
    color: #1f1f1f;
    margin: 0;
}

.lookbook-link {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1rem;
    color: #5b3b8a;
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: opacity 0.2s ease;
}

.lookbook-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .lookbook-section {
        padding: 5rem 20px;
    }

    .lookbook-container {
        gap: 2.5rem;
    }
}

/* Section 2 images */
.dual-image-section {
    
    padding: 4.5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.dual-image-container {
    width: 100%;
    display: flex;
    height: clamp(240px, 28vw, 430px);
    position: relative;
    z-index: 1;
}

.dual-image-left {
    flex: 0 0 60%;
    height: 100%;
    overflow: hidden;
}

.dual-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dual-image-right {
    flex: 0 0 40%;
    height: 100%;
    overflow: hidden;
}

.dual-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .dual-image-container {
        flex-direction: column;
        height: auto;
    }

    .dual-image-left,
    .dual-image-right {
        flex: 0 0 auto;
        width: 100%;
        height: clamp(260px, 55vw, 420px);
    }

    .dual-image-section {
        padding: 3.5rem 0 5.5rem;
    }
}

/* Section 3 cartes info (paiement, retours, livraison) */
.info-cards-section {
    margin-top: 100px;
    background: none;
    padding: 4rem 0 5rem;
}

.info-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.info-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #000;
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.info-card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #000;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 200px;
}

@media (max-width: 768px) {
    .info-cards-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 24px;
    }

    .info-cards-section {
        padding: 3rem 0 4rem;
    }
}

/* Section témoignages clientes (carrousel, images + JSON .txt) */
.testimonials-section {
    padding: 4rem 0 5rem;
    text-align: center;
    background-color: #ffffff;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #000;
    margin: 0 0 2.5rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.testimonials-carousel-inner {
    max-width: 1600px;
    margin: 0 auto;
    /* padding: 0 clamp(1rem, 4vw, 2.5rem); */
    box-sizing: border-box;
}

.testimonials-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.testimonials-carousel-slide {
    flex: 0 0 33.333333%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 clamp(0.4rem, 1.2vw, 0.75rem);
}

.testimonial-card-block {
    text-align: left;
    max-width: 100%;
}

.testimonial-card-block-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f3f3f3;
    margin-bottom: 0.75rem;
}

.testimonial-card-block-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.testimonial-card-block-body {
    font-family: 'Inter', sans-serif;
    padding: 0 0.15rem;
}

.testimonial-card-block-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-card-block-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.testimonial-card-block-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    line-height: 0;
}

.testimonial-card-block-star {
    display: inline-flex;
    color: #d9d0ea;
}

.testimonial-card-block-star.is-filled {
    color: #8a63d2;
}

.testimonial-card-block-star svg {
    display: block;
    width: 16px;
    height: 16px;
}

.testimonial-card-block-quote {
    margin: 0;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #333333;
}

.testimonials-carousel-btn {
    position: absolute;
    top: clamp(6rem, 22vw, 10.5rem);
    z-index: 2;
    width: clamp(2.5rem, 5vw, 3.25rem);
    height: clamp(2.5rem, 5vw, 3.25rem);
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transform: translateY(-50%);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.testimonials-carousel-btn:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.testimonials-carousel-btn:focus-visible {
    outline: 2px solid #8a63d2;
    outline-offset: 2px;
}

.testimonials-carousel-btn--prev {
    left: clamp(0.15rem, 1vw, 0.5rem);
}

.testimonials-carousel-btn--next {
    right: clamp(0.15rem, 1vw, 0.5rem);
}

.testimonials-carousel-btn-chevron {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    line-height: 1;
    user-select: none;
}

@media (max-width: 900px) {
    .testimonials-carousel-slide {
        flex: 0 0 100%;
    }

    .testimonials-carousel-btn {
        top: 50%;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0 4rem;
    }

    .testimonials-carousel-inner {
        padding: 0 1rem;
    }
}


.wide-leg-section {
    padding: 7rem 0 5rem;
}

.wide-leg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.wide-leg-title {
    font-family: 'Playfair Display', serif;
    font-weight: 200;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #000000;
    /* text-decoration: underline; */
    text-underline-offset: 6px;
    margin: 0 0 3rem;
}

.wide-leg-products {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.wide-leg-product {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wide-leg-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.wide-leg-info {
    margin-top: 1.5rem;
    /* background-color: #f5e8ff; */
    padding: 1.25rem 1.5rem;
    width: 100%;
    display: flex;
    gap: 1.5rem;
}

.wide-leg-heading {
    min-width: 110px;
}

.wide-leg-label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #000000;
}

.wide-leg-color {
    display: block;
    font-family: 'Broadway', sans-serif;
    font-size: 1.4rem;
    color: #8b5cf6;
}

.wide-leg-description {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000000;
}

@media (max-width: 900px) {
    .wide-leg-section {
        padding: 6rem 0 4rem;
    }

    .wide-leg-container {
        padding: 0 24px;
    }

    .wide-leg-products {
        flex-direction: column;
        gap: 2rem;
    }

    .wide-leg-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .wide-leg-heading {
        min-width: 0;
    }
}


.wide-leg-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wide-leg-link:hover .wide-leg-image img {
    transform: translateY(-4px);
}

.wide-leg-image img {
    transition: transform 0.25s ease;
}

.product-detail-page {
    min-height: 100vh;
    padding: 7.5rem 0 4rem;
}

.product-detail-section {
    width: 100%;
}

.product-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(280px, 420px);
    justify-content: center;
    gap: 6rem;
    align-items: start;
}

.product-detail-image-wrap {
    width: 100%;
}

.product-detail-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.product-detail-info {
    padding-top: 4px;
}

.product-detail-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.35rem);
    line-height: 1.15;
    color: #000;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    align-items: baseline;
}

.product-detail-page .product-color,
.product-detail-page .product-color-blue,
.product-detail-page .product-color-purple {
    color: #000;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.65rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.product-detail-rating-stars {
    color: #1b7f4a;
    letter-spacing: 1px;
    font-size: 1.5rem;
    line-height: 1;
}

.product-detail-rating-count {
    color: #333;
}

.product-color {
    color: #5b3b8a;
}

.product-color-blue {
    color: #5b3b8a;
}

.product-color-purple {
    color: #5b3b8a;
}

.product-stock-urgency {
    margin: 0 0 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #c62828;
}

.product-features-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #111;
    line-height: 1.35;
}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.product-feature-check {
    flex-shrink: 0;
    margin-top: 2px;
    color: #5b3b8a;
}

.product-detail-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    /* margin: 0 0 0.5rem; */
    color: #000;
    filter: blur(0.5rem);
    user-select: none;
}

.product-size-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.65rem;
    color: #000;
}

.product-size-buttons {
    display: flex;
    gap: 0.5rem;
}

.size-btn {
    border: 1px solid #8d6fb5;
    background: transparent;
    color: #222;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    width: 52px;
    height: 52px;
    cursor: pointer;
}

.size-btn.is-active,
.size-btn:hover {
    background: #5b3b8a;
    color: #fff;
}

.product-size-guide {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    margin: 0.75rem 0 1.25rem;
}

.product-size-guide a {
    color: #5b3b8a;
    text-decoration: none;
}

.product-detail-page .size-guide-link {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.product-buy-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-detail-page .product-buy-btn {
    margin-top: 30px;
    flex: 1;
    width: 100%;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 1.5rem;
    height: 52px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    animation: none;
}

.product-detail-page .product-buy-btn:hover {
    background: #000;
    color: #fff;
    transform: none;
    box-shadow: none;
    animation: none;
}

.product-payment-image {
    display: block;
    margin: auto;
    height: 100%;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-bottom: 0.25rem;
    object-fit: contain;
    object-position: left center;
}

.product-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e8e8e8;
}

.product-trust-item {
    flex: 1 1 90px;
    max-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: #222;
    line-height: 1.25;
}

.product-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.product-comparison-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px 3.5rem;
}

.product-comparison-heading {
    margin: 0 0 1.75rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    color: #000;
}

.product-comparison-container {
    background: #fff;
    border: 1px solid #000;
}

.product-comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.product-comparison-table thead th {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    font-weight: 600;
    color: #000;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #000;
    text-align: center;
    text-transform: none;
}

.product-comparison-brand-col {
    color: #5b3b8a !important;
    font-weight: 700 !important;
}

.product-comparison-feature-col {
    width: 44%;
}

.product-comparison-table tbody th,
.product-comparison-table tbody td {
    border-bottom: 1px solid #000;
    padding: 0.85rem 0.75rem;
    vertical-align: middle;
}

.product-comparison-table tbody tr:last-child th,
.product-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.product-comparison-table tbody th {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
    text-align: left;
    text-transform: none;
}

.product-comparison-table tbody td {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1;
}

.comparison-check {
    color: #5b3b8a;
}

.comparison-check-icon {
    display: block;
    margin: 0 auto;
    vertical-align: middle;
}

.comparison-cross {
    color: #000;
}

.comparison-cross-mark {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
    color: #000;
}

@media (max-width: 900px) {
    .product-detail-page {
        padding-top: 6.2rem;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-image-wrap {
        max-width: 460px;
    }

    .product-buy-row {
        flex-wrap: wrap;
    }

    .product-comparison-section {
        padding: 0 32px 2.5rem;
    }
}

@media (max-width: 640px) {
    .product-comparison-section {
        padding: 0 20px 2.2rem;
    }

    .product-comparison-container {
        overflow-x: auto;
    }

    .product-comparison-table {
        min-width: 500px;
    }
}
.product-detail-image-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
}

.product-thumb-btn {
    aspect-ratio: 1;
    min-height: 0;
    border: 1px solid #000;
    background: #fff;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}

.product-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumb-btn.is-active {
    border: 2px solid #000;
    box-shadow: inset 0 0 0 1px #000;
}

.product-thumb-more {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-guide-link {
    border: none;
    background: transparent;
    color: #5b3b8a;
    font-family: 'Inter', sans-serif;
    font-size: inherit;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}

.product-buy-btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: buy-pulse 2.2s ease-in-out infinite;
}

.product-buy-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 20px rgba(91, 59, 138, 0.25);
    animation-play-state: paused;
}

@keyframes buy-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(91, 59, 138, 0);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(91, 59, 138, 0.12);
    }
}

body.modal-open {
    overflow: hidden;
}

.mfm-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.mfm-modal[aria-hidden='false'] {
    opacity: 1;
    pointer-events: auto;
}

.mfm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.mfm-modal-content {
    position: relative;
    background: #fff;
    width: min(92vw, 860px);
    margin: 8vh auto;
    padding: 1.2rem;
}

.mfm-modal-content-gallery {
    width: min(94vw, 980px);
}

.mfm-modal-title {
    margin: 0 0 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #000;
}

.mfm-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    border: none;
    background: transparent;
    color: #222;
    font-size: 1.2rem;
    cursor: pointer;
}

.size-guide-image {
    width: 100%;
    height: auto;
    display: block;
}

.size-guide-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #ece4f8;
    border-radius: 18px;
}

.size-guide-intro,
.size-guide-contact {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2a2a2a;
}

.size-guide-size-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.size-guide-size-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 14px;
    border: 1px solid #d9ccea;
    background: #f7f3fd;
    color: #1e1717;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.size-guide-tips {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.55rem;
    color: #3c3331;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
}

.size-guide-contact a {
    color: #5b3b8a;
    font-weight: 600;
}

@media (max-width: 640px) {
    .size-guide-size-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.gallery-item {
    border: 1px solid #8d6fb5;
    padding: 0;
    cursor: pointer;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .product-thumbnails {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mfm-modal-content {
        margin: 5vh auto;
        width: min(94vw, 860px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.size-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-check-label {
    border: 1px solid #8d6fb5;
    background: transparent;
    color: #222;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    width: 52px;
    height: 52px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-detail-page .size-check-label {
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 1rem;
    width: 48px;
    height: 48px;
}

.product-detail-page .size-check-label:hover {
    background: #f5f5f5;
}

.size-check-label:hover {
    background: #efe3ff;
}

.size-checkbox:checked + .size-check-label {
    background: #5b3b8a;
    color: #fff;
}

.product-detail-page .size-checkbox:checked + .size-check-label {
    background: #000;
    color: #fff;
    border-color: #000;
}

.size-checkbox:focus-visible + .size-check-label {
    outline: 2px solid #5b3b8a;
    outline-offset: 2px;
}

.product-detail-page .size-checkbox:focus-visible + .size-check-label {
    outline-color: #000;
}

.mfm-modal-content-size-guide {
    max-width: 700px;
}

.size-guide-scroll {
    max-height: 72vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.product-tabs {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
}

.product-tab-btn {
    border: none;
    background: transparent;
    padding: 0 0 0.35rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.product-tab-btn.is-active {
    text-decoration: none;
    border-bottom-color: #000;
}

.product-tab-panels {
    margin-top: 1.6rem;
}

.product-tab-panel p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.32;
    color: #000;
}

@media (max-width: 900px) {
    .product-tabs {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

.product-reviews-section {
    width: 100%;
    padding: 2.5rem 2rem 4rem;
    box-sizing: border-box;
}

.product-reviews-title {
    margin: 0 0 2rem;
    text-align: center;
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 400;
}

.product-reviews-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.product-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    width: 100%;
}

.product-review-card {
    text-align: center;
}

.product-review-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 280px;
    background: #e5e5e5;
    border-radius: 2px;
}

.product-review-user {
    margin: 0.65rem 0 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
}

.product-review-stars {
    margin: 0;
    color: #5b3b8a;
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: 1;
}

.product-review-text {
    margin: 0.5rem 0 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    font-size: 0.85rem;
    line-height: 1.4;
}

.product-reviews-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    color: #000;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.product-reviews-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .product-reviews-section {
        padding: 2rem 1rem 3rem;
    }

    .product-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

/* Contact page */
.contact-page-main {
    padding: 0;
    margin: 0;
    background: #ffffff;
}

.contact-hero {
    position: relative;
    min-height: min(85vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('asset/images/contact-hero-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(6rem, 18vw, 10rem) 1.5rem clamp(3rem, 8vw, 5rem);
    isolation: isolate;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    color: #ffffff;
}

.contact-hero__title {
    margin: 0 0 1.25rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
}

.contact-hero__subtitle {
    margin: 0 0 2rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 400;
    line-height: 1.55;
    opacity: 0.95;
}

.contact-hero__cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-hero__cta:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.contact-form-section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem clamp(4rem, 10vw, 6rem);
    scroll-margin-top: 6rem;
}

.contact-form-section__title {
    margin: 0 auto 2.75rem;
    max-width: 520px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #111111;
}

.contact-form {
    width: min(100%, 480px);
    margin: 0 auto;
}

.contact-field {
    margin-bottom: 1.75rem;
}

.contact-field--message {
    margin-bottom: 2rem;
}

.contact-field__label {
    display: block;
    margin-bottom: 0.35rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333333;
}

.contact-field__input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px solid #c8c8c8;
    padding: 0.5rem 0 0.65rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #111111;
    background: transparent;
    border-radius: 0;
    transition: border-color 0.2s ease;
}

.contact-field__input:focus {
    outline: none;
    border-bottom-color: #7b58d3;
}

.contact-field__textarea {
    resize: vertical;
    min-height: 7rem;
    line-height: 1.5;
}

.contact-form__submit {
    width: 100%;
    margin-top: 0.25rem;
    padding: 1rem 1.5rem;
    border: none;
    background-color: #7b58d3;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.contact-form__submit:hover {
    background-color: #6847c4;
}

.contact-email-banner {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #2a2a2a;
    padding: 3rem 1.5rem;
    isolation: isolate;
    overflow: hidden;
}

.contact-email-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('asset/images/jeans.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.contact-email-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.contact-email-banner__address {
    margin: 0 0 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 3vw, 1.5rem);
}

.contact-email-banner__address a {
    color: #ffffff;
    text-decoration: none;
}

.contact-email-banner__address a:hover {
    text-decoration: underline;
}

.contact-email-banner__hint {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.92;
    line-height: 1.5;
}

.contact-social {
    padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem clamp(4.5rem, 10vw, 6.5rem);
    background: #ffffff;
}

.contact-social__title {
    margin: 0 auto 2.5rem;
    max-width: 520px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 400;
    color: #111111;
    line-height: 1.35;
}

.contact-social__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(2.5rem, 8vw, 5rem);
    max-width: 520px;
    margin: 0 auto;
}

.contact-social__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
}

.contact-social__icon {
    display: flex;
    color: #111111;
    line-height: 0;
}

.contact-social__icon svg {
    width: 52px;
    height: 52px;
}

.contact-social__handle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #7b58d3;
    transition: opacity 0.2s ease;
}

.contact-social__link:hover .contact-social__handle {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 70vh;
    }

    .contact-email-banner {
        min-height: 220px;
    }

    .contact-social__grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Blog pages */
.blog-page {
    /* background-color: #efe9f7; */
}

.blog-list-page {
    min-height: 70vh;
    padding: 7.7rem 0 4.5rem;
}

.blog-list-section {
    width: 100%;
}

.blog-list-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem 2rem;
}

.blog-card {
    width: 100%;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: #000000;
}

.blog-card-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    margin-bottom: 0.95rem;
    overflow: hidden;
}

.blog-card-image,
.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.blog-card-title {
    margin: 0 0 0.55rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.35;
    color: #000;
}

.blog-card-summary {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    line-height: 1.52;
    color: #1d1d1d;
}

.blog-empty-state {
    margin: 0;
    grid-column: 1 / -1;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1d1d1d;
}

.blog-article-main {
    padding: 7.9rem 0 4.8rem;
}

.blog-article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 32px;
}

.blog-article-title {
    margin: 0 0 2.4rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.25;
    color: #000;
}

.blog-article-block {
    margin-bottom: 2.5rem;
}

.blog-article-text {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #000;
}

.blog-article-image-wrap {
    margin: 2.4rem auto 2.8rem;
    width: min(100%, 430px);
    background: #000;
}

.blog-article-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-text-normal {
    font-weight: 400;
    font-style: normal;
}

.blog-text-bold {
    font-weight: 700;
    font-style: normal;
}

.blog-text-italic {
    font-weight: 400;
    font-style: italic;
}

.blog-text-bold-italic {
    font-weight: 700;
    font-style: italic;
}

.blog-admin-main {
    padding: 7.7rem 0 4.5rem;
}

.blog-admin-section {
    max-width: 930px;
    margin: 0 auto;
    padding: 0 28px;
}

.blog-admin-title {
    margin: 0 0 0.7rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #000;
}

.blog-admin-description {
    margin: 0 0 1.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #222;
}

.blog-admin-form {
    background: #ffffff;
    border: 1px solid #d8cde7;
    padding: 1.4rem;
}

.blog-admin-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.blog-admin-field label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e1e1e;
}

.blog-admin-field input,
.blog-admin-field textarea,
.blog-admin-field select {
    width: 100%;
    border: 1px solid #c7b9db;
    background: #ffffff;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    padding: 0.72rem 0.8rem;
    box-sizing: border-box;
}

.blog-admin-field textarea {
    resize: vertical;
}

.blog-admin-toolbar {
    display: flex;
    gap: 0.65rem;
    margin: 1.2rem 0;
    flex-wrap: wrap;
}

.blog-admin-action {
    border: 1px solid #5b3b8a;
    background: transparent;
    color: #5b3b8a;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 0.6rem 0.95rem;
    cursor: pointer;
}

.blog-admin-action:hover {
    background: #efe6ff;
}

.blog-admin-blocks {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.blog-admin-block {
    border: 1px solid #d4c5e7;
    background: #f7f2ff;
    padding: 0.95rem;
}

.blog-admin-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.blog-admin-block-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: #000;
}

.blog-admin-remove {
    border: none;
    background: transparent;
    color: #6a4a96;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
}

.blog-admin-submit {
    border: none;
    background: #5b3b8a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.1rem;
    margin-top: 1rem;
    cursor: pointer;
}

.blog-admin-submit:hover {
    background: #4a2f73;
}

.blog-admin-alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
}

.blog-admin-alert p {
    margin: 0;
}

.blog-admin-alert-success {
    background: #edf9ef;
    color: #0d6f25;
    border: 1px solid #b7e4c0;
}

.blog-admin-alert-success a {
    color: inherit;
}

.blog-admin-alert-error {
    background: #fff1f1;
    color: #8f1d1d;
    border: 1px solid #f1bcbc;
}

/* Admin blog — éditeur riche */
.blog-admin-page .blog-admin-form--editor {
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    scroll-margin-top: 7.5rem;
}

.blog-admin-page-header {
    margin-bottom: 0.25rem;
}

.blog-admin-meta-grid {
    display: grid;
    gap: 1rem;
    padding: 1.35rem 1.45rem;
    background: linear-gradient(165deg, #faf7ff 0%, #ffffff 55%);
    border: 1px solid #e2d8f0;
    border-radius: 14px;
    box-shadow: 0 10px 36px rgba(91, 59, 138, 0.06);
}

.blog-admin-label-hint {
    font-weight: 400;
    color: #5c5c5c;
    font-size: 0.82em;
}

.blog-admin-file-input {
    padding: 0.5rem 0 !important;
    border: none !important;
    background: transparent !important;
    font-size: 0.88rem !important;
}

.blog-editor-card {
    border: 1px solid #dcd0ee;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 48px rgba(45, 30, 70, 0.08);
}

.blog-editor-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    padding: 0.95rem 1.15rem;
    background: linear-gradient(90deg, #5b3b8a 0%, #7b58d3 100%);
    color: #fff;
}

.blog-editor-card__label {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.blog-editor-card__hint {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    opacity: 0.92;
}

.blog-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.65rem;
    padding: 0.75rem 1rem;
    background: #f4effb;
    border-bottom: 1px solid #e5daf5;
}

.blog-editor-toolbar__group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.blog-editor-toolbar__group-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5b3b8a;
    margin-right: 0.15rem;
}

.blog-editor-toolbar__sep {
    width: 1px;
    height: 26px;
    background: #d2c4e8;
    flex-shrink: 0;
}

.blog-editor-btn {
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 0.55rem;
    border: 1px solid #c9b8e0;
    border-radius: 8px;
    background: #ffffff;
    color: #2d1e46;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.blog-editor-btn:hover {
    background: #efe8fb;
    border-color: #a78fd4;
}

.blog-editor-btn:active {
    transform: scale(0.97);
}

.blog-editor-btn--text {
    min-width: auto;
    padding: 0 0.75rem;
    font-size: 0.82rem;
    font-weight: 500;
}

.blog-editor-btn--pill {
    min-width: 2.1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
}

.blog-editor-btn--primary {
    min-width: auto;
    height: 2.35rem;
    padding: 0 0.95rem;
    border-color: #5b3b8a;
    background: #5b3b8a;
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
}

.blog-editor-btn--primary:hover {
    background: #4a2f73;
    border-color: #4a2f73;
    color: #fff;
}

.blog-editor-btn--primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.blog-editor-btn__icon {
    margin-right: 0.2rem;
    font-weight: 400;
}

.blog-editor-surface {
    min-height: 320px;
    max-height: min(70vh, 640px);
    overflow-y: auto;
    padding: 1.35rem 1.45rem 1.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #141414;
    outline: none;
}

.blog-editor-surface:focus {
    box-shadow: inset 0 0 0 2px rgba(91, 59, 138, 0.2);
}

.blog-editor-surface--empty::before {
    content: attr(data-placeholder);
    color: #9a8ab0;
    pointer-events: none;
    position: absolute;
    top: 1.35rem;
    left: 1.45rem;
    max-width: calc(100% - 2.9rem);
}

.blog-editor-card .blog-editor-surface {
    position: relative;
}

.blog-editor-surface .blog-size-sm {
    font-size: 0.875rem;
}

.blog-editor-surface .blog-size-md {
    font-size: 1rem;
}

.blog-editor-surface .blog-size-lg {
    font-size: 1.2rem;
    line-height: 1.55;
}

.blog-editor-surface .blog-size-xl {
    font-size: 1.45rem;
    line-height: 1.45;
}

.blog-editor-surface img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.blog-editor-surface h2,
.blog-editor-surface h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 1.15rem 0 0.5rem;
    line-height: 1.25;
}

.blog-editor-surface h2 {
    font-size: 1.35rem;
}

.blog-editor-surface h3 {
    font-size: 1.15rem;
}

.blog-admin-actions {
    padding-top: 0.25rem;
}

.blog-admin-actions .blog-admin-submit {
    margin-top: 0;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(91, 59, 138, 0.28);
}

/* Article — corps HTML riche */
.blog-article-body {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #000;
}

.blog-article-body p {
    margin: 0 0 1.1rem;
}

.blog-article-body p:last-child {
    margin-bottom: 0;
}

.blog-article-body h2,
.blog-article-body h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 1.6rem 0 0.65rem;
    line-height: 1.25;
}

.blog-article-body h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.45rem);
}

.blog-article-body h3 {
    font-size: clamp(1.08rem, 1.8vw, 1.2rem);
}

.blog-article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 10px;
}

.blog-article-body .blog-size-sm {
    font-size: 0.875rem;
}

.blog-article-body .blog-size-md {
    font-size: 1em;
}

.blog-article-body .blog-size-lg {
    font-size: 1.15rem;
    line-height: 1.6;
}

.blog-article-body .blog-size-xl {
    font-size: 1.35rem;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .blog-editor-toolbar__sep {
        display: none;
    }

    .blog-editor-toolbar {
        gap: 0.5rem;
    }

    .blog-editor-surface {
        min-height: 260px;
        padding: 1rem 1.1rem 1.35rem;
    }

    .blog-editor-surface--empty::before {
        top: 1rem;
        left: 1.1rem;
    }
}

/* Connexion admin blog */
.blog-login-main {
    min-height: 70vh;
    padding: 7.7rem 1.25rem 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.blog-login-card {
    width: 100%;
    max-width: 420px;
    padding: 2rem 1.75rem;
    background: linear-gradient(165deg, #faf7ff 0%, #ffffff 50%);
    border: 1px solid #e2d8f0;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(45, 30, 70, 0.1);
}

.blog-login-title {
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    font-weight: 400;
    color: #000;
    text-align: center;
}

.blog-login-intro {
    margin: 0 0 1.35rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #444;
    text-align: center;
    line-height: 1.5;
}

.blog-login-form .blog-admin-submit {
    width: 100%;
    margin-top: 0.35rem;
}

.blog-login-back {
    margin: 1.25rem 0 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
}

.blog-login-back a {
    color: #5b3b8a;
}

/* Admin blog — barre du haut & liste d’articles */
.blog-admin-topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: 1.35rem;
    padding: 0.75rem 1rem;
    background: #f4effb;
    border: 1px solid #e5daf5;
    border-radius: 12px;
}

.blog-admin-topbar__user {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #3d2d55;
}

.blog-admin-topbar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
}

.blog-admin-topbar__link {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #5b3b8a;
    text-decoration: none;
}

.blog-admin-topbar__link:hover {
    text-decoration: underline;
}

.blog-admin-topbar__link--logout {
    color: #8f1d1d;
}

.blog-admin-posts-panel {
    margin-bottom: 1.5rem;
    padding: 1.1rem 1.2rem;
    background: #faf8fc;
    border: 1px solid #e8dff5;
    border-radius: 14px;
}

.blog-admin-posts-panel__title {
    margin: 0 0 0.85rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #000;
}

.blog-admin-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.blog-admin-posts-list__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    padding: 0.65rem 0.85rem;
    background: #fff;
    border: 1px solid #e2d8f0;
    border-radius: 10px;
}

.blog-admin-posts-list__meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.blog-admin-posts-list__date {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7b58d3;
}

.blog-admin-posts-list__name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #111;
    line-height: 1.35;
}

.blog-admin-posts-list__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.blog-admin-posts-list__delete-form {
    margin: 0;
    display: inline;
}

.blog-admin-posts-list__btn {
    display: inline-block;
    padding: 0.45rem 0.75rem;
    border: 1px solid #5b3b8a;
    border-radius: 8px;
    background: #fff;
    color: #5b3b8a;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease;
}

.blog-admin-posts-list__btn:hover {
    background: #efe8fb;
}

.blog-admin-posts-list__btn--danger {
    border-color: #c45c5c;
    color: #a02424;
    background: #fff8f8;
}

.blog-admin-posts-list__btn--danger:hover {
    background: #ffecec;
}

.blog-admin-new-link-wrap {
    margin: 0 0 1rem;
}

.blog-admin-new-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #5b3b8a;
    text-decoration: none;
}

.blog-admin-new-link:hover {
    text-decoration: underline;
}

.blog-admin-cover-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.65rem;
}

.blog-admin-cover-preview img {
    border-radius: 8px;
    max-width: 200px;
    height: auto;
    border: 1px solid #ddd;
}

.blog-admin-cover-preview__hint {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #555;
    max-width: 16rem;
    line-height: 1.4;
}



@media (max-width: 1024px) {
    .blog-list-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-list-page,
    .blog-admin-main,
    .blog-article-main {
        padding-top: 7rem;
    }

    .blog-list-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .blog-article-container,
    .blog-admin-section {
        padding: 0 20px;
    }

    .blog-admin-form {
        padding: 1rem;
    }

    .blog-admin-page .blog-admin-form--editor {
        scroll-margin-top: 6.25rem;
    }
}

/* Page Notre savoir-faire */
.savoir-faire-page {
    background-color: #ffffff;
    color: #111111;
}

.savoir-faire-main {
    padding: 0;
    margin: 0;
}

.sf-hero {
    position: relative;
    min-height: min(78vh, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('asset/images/savoir-faire-hero-texture.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: clamp(6rem, 16vw, 9rem) 1.5rem clamp(3.5rem, 8vw, 5rem);
    isolation: isolate;
}

.sf-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.42);
    pointer-events: none;
}

.sf-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    color: #ffffff;
}

.sf-hero__title {
    margin: 0 0 1.35rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.35rem, 5.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.12;
}

.sf-hero__lead {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    font-weight: 400;
    line-height: 1.65;
    opacity: 0.96;
}

.sf-texture-banner {
    position: relative;
    isolation: isolate;
    min-height: clamp(11rem, 26vw, 15rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2.75rem, 6vw, 4.25rem) 1.25rem;
    background-image: url('asset/images/savoir-faire-section-texture.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sf-texture-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.48);
    pointer-events: none;
}

.sf-texture-banner__title {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: min(36rem, 92vw);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.65rem, 3.8vw, 2.45rem);
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
}

.sf-section {
    padding: clamp(3.25rem, 7vw, 5rem) 0;
}

.sf-section--white {
    background: #ffffff;
}

.sf-section--last {
    padding-bottom: clamp(4rem, 10vw, 6rem);
}

.sf-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.sf-inner--narrow {
    max-width: 960px;
}

.sf-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.85rem, 3.2vw, 2.45rem);
    line-height: 1.2;
    margin: 0 0 1.15rem;
    color: #000000;
}

.sf-subheading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    line-height: 1.2;
    margin: 0 0 0.85rem;
    color: #000000;
}

.sf-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: center;
}

.sf-split--spaced {
    margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

.sf-split__text {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #1a1a1a;
}

.sf-split__text p {
    margin: 0 0 0.85rem;
}

.sf-split__text p:last-child {
    margin-bottom: 0;
}

.sf-split__figure {
    margin: 0;
}

.sf-split__figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.sf-innov {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 3.5vw, 2.75rem);
    align-items: center;
    padding: clamp(1.75rem, 3vw, 2.5rem) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sf-innov:first-of-type {
    padding-top: 0;
}

.sf-innov:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.sf-innov__text {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.98rem;
    line-height: 1.72;
    color: #1a1a1a;
}

.sf-innov__text p {
    margin: 0;
}

.sf-innov__figure {
    margin: 0;
}

.sf-innov__figure img {
    display: block;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.sf-material {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}

.sf-material--reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}

.sf-material__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    /* background: #0a0a0a; */
    border-radius: 4px;
}

.sf-material__visual img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.sf-material__visual--tape {
    background: transparent;
    min-height: auto;
    padding: clamp(0.5rem, 2vw, 1rem);
}

.sf-material__visual--tape img {
    max-height: min(420px, 55vh);
    margin: 0 auto;
}

.sf-material__text {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #1a1a1a;
}

.sf-material__text p {
    margin: 0 0 0.9rem;
}

.sf-material__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sf-split,
    .sf-innov,
    .sf-innov.sf-innov--reverse,
    .sf-material,
    .sf-material--reverse {
        grid-template-columns: 1fr;
    }

    .sf-innov--reverse .sf-innov__figure {
        order: -1;
    }

    .sf-material--reverse .sf-material__visual--tape {
        order: -1;
    }

    .sf-split--reverse .sf-split__figure:first-child {
        order: -1;
    }
}



/* Catch Email */


:root {
    --bg: #fbf8f5;
    --bg-warm: #f3ece7;
    --surface: #ffffff;
    --ink: #1e1717;
    --ink-soft: #3a2e2c;
    --muted: #6f635d;
    --muted-2: #9a8f89;
    --line: #ebdfd8;
    --line-2: #d9cec8;
    --accent: #6e48bb;
    --accent-2: #5d1557;
    --accent-soft: #efe7fb;
    --success: #1f8a5c;
    --danger: #c0392b;
    --soft: #f5efe9;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 4px 12px rgba(46, 35, 30, 0.06);
    --shadow-md: 0 12px 30px rgba(46, 35, 30, 0.08);
    --shadow-lg: 0 28px 60px rgba(46, 35, 30, 0.14);
    --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* body {
    margin: 0;
    background: var(--bg-warm);
    color: var(--ink);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
} */

img { display: block; max-width: 100%; }

.serif { font-family: "Cormorant Garamond", Georgia, serif; }

.page {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: var(--surface);
    min-height: 100vh;
    position: relative;
    overflow: clip; /* clip au lieu de hidden pour éviter les bugs d'intersection sur Safari iOS */
}

/* ---------- Announcement ---------- */
.announce {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 16px;
    background: linear-gradient(90deg, #1e1717, #3a2e2c);
    color: #f8efe9;
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}
.announce .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #ff7ad6;
    box-shadow: 0 0 0 0 rgba(255,122,214,0.7);
    animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,122,214,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,122,214,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,122,214,0); }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.1);
}

.hero-media {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: top center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 80px;
    z-index: 3;
    background: linear-gradient(to bottom, transparent, var(--surface));
    pointer-events: none;
}

.hero-card {
    grid-area: 1 / 1;
    width: 90%;
    max-width: 380px;
    margin: 80px 0 60px; /* Space added at the top */
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(14px);
    animation: rise .9s var(--ease) .15s forwards;
    container-type: inline-size;
    container-name: hero-card;
}
@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.hero-eyebrow svg { width: 12px; height: 12px; }

.hero h1 {
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    /* Fallback si unités conteneur non supportées (évite titre coupé sur petits écrans) */
    font-size: clamp(9px, 2.4vw, 22px);
    font-size: clamp(10px, calc(100cqw / 17), 56px);
    line-height: 1.02;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--ink);
    white-space: nowrap;
}

.hero p.lead {
    margin: 12px 0 22px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--ink-soft);
}

/* Form */
.email-form {
    display: grid;
    gap: 10px;
}

.field {
    position: relative;
}
.field input {
    width: 100%;
    border: 1px solid var(--line-2);
    border-radius: 0;
    min-height: 50px;
    padding: 18px 16px 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    background: rgba(255,255,255,0.96);
    outline: none;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(110, 72, 187, 0.12);
    background: #fff;
}
.field label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 13px;
    color: var(--muted);
    pointer-events: none;
    transition: all .2s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 10.5px;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
}
.field input::placeholder { color: transparent; }
.field.is-invalid input {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(192,57,43,0.1);
}
.pant-size-field {
    margin: 0;
    padding: 0;
    border: 0;
    text-align: left;
}
.size-step-note {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.45;
    color: var(--ink-soft);
    text-align: left;
}
.size-step-note b {
    display: block;
    color: var(--ink);
    font-weight: 700;
}
.pant-size-field legend {
    margin: 0 0 8px;
    padding: 0;
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.pant-size-options {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}
.pant-size-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.pant-size-options label {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-2);
    background: rgba(255,255,255,0.96);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.pant-size-options label:hover,
.pant-size-options input:focus-visible + label {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(110, 72, 187, 0.12);
}
.pant-size-options input:checked + label {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}
.pant-size-field.is-invalid .pant-size-options label {
    border-color: rgba(192,57,43,0.55);
}
.field-error {
    display: none;
    margin: 6px 4px 0;
    font-size: 11.5px;
    color: var(--danger);
    text-align: left;
}
.field.is-invalid + .field-error { display: block; }
.pant-size-field.is-invalid + .field-error { display: block; }

.button {
    position: relative;
    width: 100%;
    border: 0;
    border-radius: 0;
    min-height: 52px;
    padding: 0 20px;
    font: 600 14.5px "Inter", sans-serif;
    color: #fff;
    cursor: pointer;
    background: #6e48bb;
    box-shadow: 0 10px 24px rgba(110, 72, 187, 0.28);
    transition: transform .15s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.02em;
    overflow: hidden;
}
.button::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .8s var(--ease);
}
.button:hover { filter: brightness(1.05); box-shadow: 0 14px 30px rgba(110, 72, 187, 0.35); }
.button:hover::before { transform: translateX(100%); }
.button:active { transform: translateY(1px); }
.button[disabled] { opacity: .8; cursor: progress; }
.button .arrow { transition: transform .25s var(--ease); }
.button:hover .arrow { transform: translateX(3px); }

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
    font-size: 10.5px;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.form-trust span { display: inline-flex; align-items: center; gap: 4px; }
.form-trust svg { width: 12px; height: 12px; opacity: .8; }

/* Counter */
.counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(110,72,187,0.18);
    backdrop-filter: blur(6px);
}
.avatars { display: flex; }
.avatars span {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, #d8c5a4, #6e48bb);
    border: 2px solid #fff;
    margin-left: -7px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #f1bfa6, #c97070); }
.avatars span:nth-child(2) { background: linear-gradient(135deg, #cdb7ff, #6e48bb); }
.avatars span:nth-child(3) { background: linear-gradient(135deg, #f5d4ec, #5d1557); }
.counter-text {
    font-size: 11.5px;
    color: var(--ink-soft);
    font-weight: 500;
}
.counter-text b { color: var(--accent); font-weight: 700; }

/* ---------- Section common ---------- */
section { position: relative; }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-card { opacity: 1; transform: none; animation: none; }
}

/* FAQ — surcharge styles.css (catch-email uniquement) */
.faq-question {
    border-radius: 0 !important;
    -webkit-appearance: none;
    appearance: none;
}
.faq-answer-open p {
    border-radius: 0;
}
.faq-cta-button {
    border-radius: 0;
}

/* Intro ------ */
.intro {
    position: relative;
    padding: 44px 28px 48px;
    text-align: center;
    background:
        radial-gradient(ellipse at top, rgba(110, 72, 187, 0.10), transparent 60%),
        var(--surface);
}
.eyebrow {
    margin: 0 0 6px;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
}
.intro h2 {
    margin: 0;
    padding: 8px 0;
    font-size: 46px;
    line-height: 0.9;
    font-weight: 500;
    color: var(--ink);
}
.intro .copy {
    max-width: 320px;
    margin: 14px auto 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
}

/* Pain points list */
.split {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 22px;
    align-items: center;
    padding: 28px 22px;
}
.split-title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.05;
    color: var(--ink);
    font-weight: 500;
}
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.4;
    color: var(--ink-soft);
}
.check-list .ico {
    flex: 0 0 18px;
    width: 18px; height: 18px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.check-list.cons .ico { background: #fbe5e1; color: var(--danger); }
.check-list.pros .ico { background: #e3f5ec; color: var(--success); }
.check-list .ico svg { width: 11px; height: 11px; }

.media-card {
    overflow: hidden;
    border-radius: 0;
    background: var(--soft);
    box-shadow: var(--shadow-md);
    position: relative;
}
.media-card.small { aspect-ratio: 0.8; }
.media-card.small img,
.media-card.tall img,
.media-card.tall video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.media-card:hover img { transform: scale(1.04); }
.media-card.tall { aspect-ratio: 0.72; }
.media-card.tall img { object-position: 42% center; }
.media-card.tall:hover img { transform: scale(1.04); }
.media-card.tall video {
    display: block;
    object-position: 42% center;
}
.media-card.tall:hover video { transform: scale(1.04); }

.split--vignette {
    display: block;
    padding: 14px 22px 28px;
}
.split--vignette .split-inner {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 22px;
    align-items: center;
}

.decision h3 {
    margin: 0 0 6px;
    font-size: 30px;
    line-height: 0.95;
    font-weight: 500;
    color: var(--ink);
}

/* Testimonials */
.social-proof {
    padding: 36px 22px 28px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    text-align: center;
}
.stars {
    display: inline-flex;
    gap: 3px;
    color: #e7b54e;
    margin-bottom: 6px;
}
.stars svg { width: 16px; height: 16px; }
.rating-line {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 18px;
}
.rating-line b { color: var(--ink); font-weight: 600; }

.testimonials {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 16px;
    margin: 0 -4px;
    scrollbar-width: none;
}
.testimonials::-webkit-scrollbar { display: none; }
.testimonial {
    flex: 0 0 78%;
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 18px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}
.testimonial .stars { margin-bottom: 8px; }
.testimonial p {
    margin: 0 0 14px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ink-soft);
}
.testi-author {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: var(--muted);
}
.testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, #d8c5a4, #6e48bb);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 600; font-size: 13px;
}
.testi-author b { color: var(--ink); font-weight: 600; display: block; font-size: 13px; }

/* Trust badges */
.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 18px 22px;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.trust-badge {
    text-align: center;
    font-size: 10.5px;
    color: var(--muted);
    line-height: 1.2;
}
.trust-badge svg {
    width: 20px; height: 20px;
    color: var(--accent);
    margin-bottom: 4px;
}
.trust-badge b { display: block; color: var(--ink); font-weight: 600; font-size: 11.5px; margin-bottom: 1px; }

/* Launch */
.launch {
    position: relative;
    padding: 40px 22px 110px;
    text-align: center;
    background:
        radial-gradient(ellipse at bottom, rgba(110, 72, 187, 0.12), transparent 60%),
        var(--surface);
}
.launch h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 0.95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--ink);
}
.launch .subtitle {
    margin: 0 0 22px;
    font-size: 17px;
    color: var(--ink-soft);
    font-style: italic;
}

/* Countdown */
.countdown {
    display: inline-flex;
    gap: 8px;
    margin: 0 auto 22px;
    padding: 10px 14px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.cd-cell {
    min-width: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 6px;
}
.cd-cell + .cd-cell { border-left: 1px dashed var(--line); }
.cd-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.cd-label {
    font-size: 9.5px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Progress bar */
.progress-wrap {
    max-width: 320px;
    margin: 0 auto 22px;
}
.progress-bar {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: var(--line);
    overflow: hidden;
}
.progress-fill {
    position: absolute; inset: 0;
    width: 0%;
    background: linear-gradient(90deg, #6e48bb, #b07ce4);
    border-radius: inherit;
    transition: width 1.6s var(--ease);
}
.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px;
}
.progress-meta b { color: var(--accent); font-weight: 600; }

/* Bottom form */
.bottom-form {
    display: grid;
    gap: 10px;
    max-width: 360px;
    margin: 0 auto;
}
.bottom-form-size {
    min-width: 0;
}
.benefits {
    display: grid;
    gap: 8px;
    margin: 0 auto 18px;
    max-width: 320px;
}
.benefit {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.benefit svg { width: 12px; height: 12px; color: var(--accent); }

/* Sticky bottom CTA (mobile) */
.sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-top: 1px solid var(--line);
    transform: translateY(120%);
    transition: transform .35s var(--ease);
    box-shadow: 0 -10px 30px rgba(46,35,30,0.08);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .button {
    min-height: 48px;
    font-size: 14px;
}

/* Success state in form */
.form-success {
    display: none;
    padding: 18px 16px;
    border-radius: var(--radius);
    background: #ecf8f1;
    border: 1px solid #b5e2c9;
    color: #155b3a;
    text-align: center;
}
.form-success.is-visible { display: block; animation: rise .5s var(--ease); }
.form-success .icon-success {
    width: 44px; height: 44px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #1f8a5c;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(31, 138, 92, 0.25);
    animation: pop .5s var(--ease) .1s both;
}
@keyframes pop {
    from { transform: scale(.4); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.form-success p { margin: 0; font-size: 13.5px; line-height: 1.5; }
.form-success p b { display: block; font-size: 15px; margin-bottom: 4px; color: var(--ink); }

/* ---------- Tablet & Desktop ---------- */
@media (min-width: 481px) {
    .page { max-width: 100%; box-shadow: none; }
}

@media (min-width: 768px) {
    :root { --radius: 16px; --radius-lg: 26px; }

    .hero {
        padding: 0;
    }
    .hero::before {
        background: rgba(0, 0, 0, 0.1);
    }
    .hero-card {
        max-width: 480px;
        width: 100%;
        margin: 120px 0 100px;
        padding: 48px;
    }
    .hero p.lead { font-size: 17px; margin: 16px 0 26px; }
    .field input { min-height: 60px; font-size: 16px; padding-top: 22px; padding-bottom: 8px; }
    .field label { top: 20px; font-size: 15px; }
    .pant-size-options {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }
    .pant-size-options label {
        min-height: 48px;
        font-size: 14px;
    }
    .button { min-height: 60px; font-size: 16px; }

    .intro { padding: 80px 48px 80px; max-width: 980px; margin: 0 auto; }
    .eyebrow { font-size: 24px; }
    .intro h2 { font-size: 80px; }
    .intro .copy { max-width: 580px; margin-top: 20px; font-size: 17px; }

    .split, .split--vignette .split-inner {
        max-width: 1120px;
        margin: 0 auto;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        padding: 60px 48px;
    }
    .split--vignette { padding: 0; }
    .split-title { font-size: 45px; margin-bottom: 33px; }
    .check-list li { font-size: 17px; }
    .check-list .ico { width: 24px; height: 24px; flex-basis: 24px; }
    .check-list .ico svg { width: 14px; height: 14px; }
    .decision h3 { font-size: 45px; margin-bottom: 30px;}
    .media-card.small { aspect-ratio: 0.92; }
    .media-card.tall { aspect-ratio: 0.78; }

    .social-proof { padding: 70px 48px 60px; }
    .testimonials { gap: 22px; max-width: 1120px; margin: 0 auto; }
    .testimonial { flex: 0 0 360px; padding: 26px; }
    .testimonial p { font-size: 16px; }
    .stars svg { width: 18px; height: 18px; }

    .trust-row { grid-template-columns: repeat(3, 1fr); padding: 28px 48px; gap: 20px;margin: 0 auto; border-radius: 0; }
    .trust-badge { font-size: 12.5px; }
    .trust-badge svg { width: 26px; height: 26px; margin-bottom: 6px; }
    .trust-badge b { font-size: 14px; }

    .launch { padding: 90px 48px 80px; max-width: 920px; margin: 0 auto; }
    .launch h2 { font-size: 56px; }
    .launch .subtitle { font-size: 24px; }
    .countdown { padding: 14px 18px; }
    .cd-cell { min-width: 64px; }
    .cd-num { font-size: 38px; }
    .cd-label { font-size: 11px; }
    .progress-wrap { max-width: 480px; }

    .bottom-form { grid-template-columns: 1fr 280px; gap: 12px; max-width: 640px; }
    .bottom-form-size { grid-column: 1 / -1; }

    .sticky-cta { display: none; }
}

@media (min-width: 1100px) {
    .hero { padding: 0; }
    .hero-media img { object-position: center center; }
    .hero-card { max-width: 520px; margin: 0; width: 100%; }
}

.launch > .form-trust {
    margin-top: 14px;
}


.price-disclosure-dialog {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.price-disclosure-dialog__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.price-disclosure-dialog__panel {
    position: relative;
    width: min(100%, 390px);
    padding: 2rem;
    background: #fff;
    border: 1px solid #111;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    text-align: center;
}

.price-disclosure-dialog__panel h2 {
    margin: 0 2rem 0.75rem;
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #111;
}

.price-disclosure-dialog__panel p {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
}

.price-disclosure-dialog__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.card-price,
.product-detail-price,
.cart-drawer-item-price,
.cart-drawer-total {
    cursor: pointer;
}

body.price-disclosure-open {
    overflow: hidden;
}


.price-disclosure-dialog[hidden] {
    display: none;
}
