/* ═══════════════════════════════════════════════════════════════
   OPTIQUE ALBERTINI — Refonte 2026
   Style moderne, épuré, éditorial
   ═══════════════════════════════════════════════════════════════ */

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette */
    --black: #0A0A0A;
    --white: #FFFFFF;
    --off-white: #F7F6F3;
    --sand: #EDE9E1;
    --sand-dark: #D8D1C4;
    --gray-light: #E4E2DE;
    --gray-mid: #9A9690;
    --gray-dark: #4A4845;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --max-width: 1400px;
    --nav-height: 72px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar--transparent {
    background: transparent;
}

.navbar--solid {
    background: var(--white);
    box-shadow: 0 1px 0 var(--gray-light);
}

.nav-logo {
    flex: 0 0 auto;
}

.nav-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.4s var(--ease);
}

.navbar--solid .nav-logo img {
    filter: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    transition: opacity 0.2s;
    position: relative;
}

.navbar--solid .nav-links a {
    color: var(--black);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 2px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.navbar--solid .nav-cta {
    border-color: var(--black);
    color: var(--black);
}

.nav-cta:hover {
    background: var(--white);
    color: var(--black);
}

.navbar--solid .nav-cta:hover {
    background: var(--black);
    color: var(--white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s var(--ease), opacity 0.3s, background 0.4s;
}

.navbar--solid .hamburger span {
    background: var(--black);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--black);
    padding: 12px 0;
    transition: opacity 0.2s;
}

.mobile-menu a:hover {
    opacity: 0.5;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    color: var(--black);
}

/* ─── HERO ───────────────────────────────────────────────────── */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 64px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 110px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 40px;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--sand);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0;
    border: none;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 3px;
    transition: border-color 0.25s, opacity 0.25s;
}

.btn-ghost:hover {
    border-color: var(--white);
    opacity: 0.85;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-hint::before {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.4);
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ─── SECTION GÉNÉRIQUE ──────────────────────────────────────── */

section {
    position: relative;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gray-mid);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--black);
}

.section-title em {
    font-style: italic;
}

/* ─── SECTION INTRO / MANIFESTE ──────────────────────────────── */

.manifeste {
    padding: 120px 0 80px;
    background: var(--white);
}

.manifeste-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.manifeste-text h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 40px;
}

.manifeste-text h2 em {
    font-style: italic;
    color: var(--gray-dark);
}

.manifeste-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    max-width: 480px;
}

.manifeste-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.manifeste-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease);
}

.manifeste-image:hover img {
    transform: scale(1.03);
}

/* ─── ÉDITO FULL-WIDTH ───────────────────────────────────────── */

.edito-full {
    height: 80vh;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.edito-full-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.edito-full:hover .edito-full-bg {
    transform: scale(1.02);
}

.edito-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
}

.edito-full-content {
    position: absolute;
    bottom: 60px;
    left: 64px;
    color: var(--white);
    z-index: 2;
}

.edito-full-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
}

/* ─── SECTION BOUTIQUE ───────────────────────────────────────── */

.boutique {
    padding: 100px 0;
    background: var(--off-white);
}

.boutique-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.boutique-image {
    overflow: hidden;
}

.boutique-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.boutique-image:hover img {
    transform: scale(1.03);
}

.boutique-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--sand);
}

.boutique-content .section-label {
    margin-bottom: 32px;
}

.boutique-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 28px;
}

.boutique-content p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--gray-dark);
    max-width: 440px;
    margin-bottom: 40px;
}

/* ─── SERVICES ───────────────────────────────────────────────── */

.services {
    padding: 120px 0;
    background: var(--white);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.services-header .section-title {
    max-width: 480px;
}

.services-intro {
    font-size: 14px;
    color: var(--gray-mid);
    max-width: 280px;
    line-height: 1.7;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-light);
}

.service-item {
    position: relative;
    overflow: hidden;
    background: var(--white);
    aspect-ratio: 3/4;
    cursor: pointer;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
    filter: grayscale(20%);
}

.service-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    transition: background 0.4s;
}

.service-item:hover .service-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
}

.service-overlay h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
    transform: translateY(8px);
    transition: transform 0.4s var(--ease);
}

.service-item:hover .service-overlay h3 {
    transform: translateY(0);
}

.service-overlay p {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.75);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s var(--ease);
}

.service-item:hover .service-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SERVICES ICÔNES ────────────────────────────────────────── */

.services-grid-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-light);
}

.service-icon-item {
    background: var(--white);
    padding: 56px 40px;
    text-align: center;
    transition: background 0.3s var(--ease);
}

.service-icon-item:hover {
    background: var(--off-white);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid var(--sand-dark);
    border-radius: 50%;
    margin-bottom: 28px;
    color: var(--black);
    transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}

.service-icon-item:hover .service-icon {
    border-color: var(--black);
    transform: scale(1.05);
}

.service-icon-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 10px;
}

.service-icon-item p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--gray-mid);
    max-width: 240px;
    margin: 0 auto;
}

/* ─── SHOP PREVIEW ───────────────────────────────────────────── */

.shop-preview {
    padding: 120px 0;
    background: var(--off-white);
}

.shop-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 3px;
    transition: gap 0.25s var(--ease), opacity 0.25s;
    text-decoration: none;
    align-self: flex-end;
    margin-bottom: 6px;
}

.btn-link-arrow:hover {
    gap: 14px;
    opacity: 0.7;
}

.shop-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.shop-preview-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.shop-preview-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #FFFFFF;
    margin-bottom: 16px;
}

.shop-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.7s var(--ease);
}

.shop-preview-card:hover .shop-preview-img img {
    transform: scale(1.05);
}

.shop-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s;
}

.shop-preview-card:hover .shop-preview-overlay {
    background: rgba(0,0,0,0.3);
}

.shop-preview-overlay span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    padding: 12px 28px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s, transform 0.35s var(--ease);
}

.shop-preview-card:hover .shop-preview-overlay span {
    opacity: 1;
    transform: translateY(0);
}

.shop-preview-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.shop-preview-name {
    font-size: 14px;
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 400;
}

.shop-preview-price {
    font-size: 14px;
    color: var(--gray-dark);
    white-space: nowrap;
    font-weight: 400;
}

@media (max-width: 768px) {
    .shop-preview {
        padding: 80px 0;
    }

    .shop-preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    .shop-preview-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 12px;
        scrollbar-width: none;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .shop-preview-grid::-webkit-scrollbar {
        display: none;
    }

    .shop-preview-card {
        flex: 0 0 72vw;
        scroll-snap-align: start;
    }

    .shop-preview-img {
        aspect-ratio: 3/4;
    }
}

/* ─── MARQUES ─────────────────────────────────────────────────── */

.marques {
    padding: 100px 0;
    background: var(--off-white);
    overflow: hidden;
}

.marques-header {
    text-align: center;
    margin-bottom: 64px;
}

.marques-scroll-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scrollTrack 30s linear infinite;
    width: max-content;
}

.marques-scroll-track img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
    flex: 0 0 auto;
}

.marques-scroll-track img:hover {
    filter: none;
    opacity: 1;
}

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marques-scroll-wrapper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* ─── CONTACT ─────────────────────────────────────────────────── */

.contact {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left .section-label {
    color: rgba(255,255,255,0.4);
}

.contact-left .section-label::before {
    background: rgba(255,255,255,0.4);
}

.contact-left h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}

.contact-detail-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.contact-map {
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    aspect-ratio: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(80%) invert(10%);
}

/* ─── CONTACT SOCIAL ──────────────────────────────────────────── */

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    transition: opacity 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 2px;
}

.contact-social-link:hover {
    opacity: 0.7;
}

/* ─── FOOTER ──────────────────────────────────────────────────── */

footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 64px 40px 0;
}

.footer-rich {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(0.5);
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.35);
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: rgba(255,255,255,0.95);
}

.footer-col p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer-hours {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.03em;
}

/* ─── PANIER (CART) ──────────────────────────────────────────── */

.nav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

.navbar--transparent .cart-badge {
    background: var(--white);
    color: var(--black);
}

/* Drawer overlay */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Drawer panel */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background: var(--white);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
}

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

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--gray-light);
}

.cart-drawer-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
}

.cart-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: var(--gray-mid);
    transition: color 0.2s;
}

.cart-drawer-close:hover {
    color: var(--black);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
}

.cart-drawer-footer {
    padding: 0 32px 32px;
}

/* Empty state */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    text-align: center;
    padding: 40px 0;
}

.cart-empty p {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    color: var(--gray-mid);
}

.cart-empty-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.cart-empty-link:hover {
    opacity: 0.6;
}

/* Cart item */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
}

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

.cart-item-image {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: var(--off-white);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 2px;
}

.cart-item-variant {
    font-size: 13px;
    color: var(--gray-mid);
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 12px;
}

.cart-item-remove {
    position: absolute;
    top: 20px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--gray-mid);
    transition: color 0.2s;
    line-height: 1;
}

.cart-item-remove:hover {
    color: var(--black);
}

/* Quantity stepper */
.cart-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray-light);
}

.cart-qty-stepper button {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-qty-stepper button:hover {
    background: var(--off-white);
}

.cart-qty-stepper span {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    border-left: 1px solid var(--gray-light);
    border-right: 1px solid var(--gray-light);
    line-height: 32px;
}

/* Totals */
.cart-totals {
    border-top: 1px solid var(--gray-light);
    padding-top: 20px;
    margin-bottom: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.cart-total-row.cart-total-final {
    font-weight: 500;
    color: var(--black);
    font-size: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-light);
}

.cart-free {
    color: var(--gray-mid);
    font-style: italic;
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    text-decoration: none;
}

.cart-checkout-btn:hover {
    background: var(--gray-dark);
}

/* Mobile cart link in menu */
.mobile-cart-link {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}

/* ─── COLLECTIONS PAGE ────────────────────────────────────────── */

.collections-hero {
    height: 60vh;
    min-height: 400px;
    background: var(--black);
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.collections-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.collections-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    color: var(--white);
}

.collections-hero-content .section-label {
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.collections-hero-content .section-label::before {
    background: rgba(255,255,255,0.4);
}

.collections-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
}

.collections-section {
    padding: 100px 0;
    background: var(--off-white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--gray-light);
}

.brand-card {
    background: var(--white);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: background 0.3s;
    text-align: center;
}

.brand-card:hover {
    background: var(--sand);
}

.brand-card img {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.2);
    transition: filter 0.3s, transform 0.3s var(--ease);
}

.brand-card:hover img {
    filter: grayscale(100%) brightness(0.05);
    transform: scale(1.05);
}

.brand-card-info h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
}

.brand-card-info p {
    font-size: 13px;
    color: var(--gray-mid);
    letter-spacing: 0.04em;
}

/* ─── ANIMATIONS REVEAL ───────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .manifeste-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .manifeste-image {
        aspect-ratio: 16/9;
        max-height: 420px;
    }

    .boutique-grid {
        grid-template-columns: 1fr;
    }

    .boutique-content {
        padding: 60px 40px;
    }

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

    .services-grid-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-rich {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .navbar {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 0 24px 60px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 64px);
    }

    .scroll-hint {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .manifeste {
        padding: 80px 0 60px;
    }

    .services {
        padding: 80px 0;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .services-intro {
        text-align: left;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .services-grid-icons {
        grid-template-columns: 1fr 1fr;
    }

    .service-icon-item {
        padding: 40px 24px;
    }

    .service-item {
        aspect-ratio: 16/9;
    }

    .contact {
        padding: 80px 0;
    }

    .collections-hero-content h1 {
        font-size: clamp(40px, 12vw, 72px);
    }

    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brand-card {
        padding: 40px 24px;
    }

    footer {
        padding: 32px 24px;
    }

    .footer-rich {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .edito-full-content {
        left: 24px;
        bottom: 40px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .marques {
        padding: 60px 0;
    }

    .boutique-content {
        padding: 48px 24px;
    }
}

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
