﻿*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background-color: #f7f3ea;
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: #fdfaf5;
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-heading h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #0f172a;
}

.section-heading h2::after {
    content: '';
    display: block;
    width: 4.5rem;
    height: 4px;
    background: linear-gradient(90deg, #a07420, #e3b95b, #a07420);
    border-radius: 999px;
    margin: 1rem auto 0;
    box-shadow: 0 2px 10px rgba(200,154,43,0.5);
}

.section-heading p {
    margin: 0;
    color: #64748b;
    font-size: 1.05rem;
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c89a2b;
    margin: 0 0 0.6rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #fdfaf5;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5d8bd;
    color: #111827;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 42px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 600;
    font-size: 1.02rem;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #b48b2a;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.main-nav a {
    color: #1f2933;
    position: relative;
}

.main-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: #c89a2b;
    transition: width 0.18s ease-out;
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0;
}

.nav-toggle span {
    width: 16px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.nav-toggle.nav-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.nav-open span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #b8872a 0%, #e3b95b 50%, #c89a2b 100%);
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(200, 154, 43, 0.38), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}
.btn:hover::before {
    left: 150%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(200, 154, 43, 0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-outline {
    background: transparent;
    color: #b8872a;
    border: 1.5px solid #c89a2b;
    box-shadow: 0 4px 16px rgba(200,154,43,0.12);
}

.btn-outline:hover {
    background: rgba(200,154,43,0.08);
    border-color: #e3b95b;
    box-shadow: 0 10px 28px rgba(148, 116, 36, 0.3);
    color: #a07420;
}

.btn-small {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-ghost {
    background: #111827;
    color: #f3f4f6;
    box-shadow: none;
}

.btn-ghost:hover {
    background: #020617;
}

/* Pills */
.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pill-live {
    background: rgba(200, 154, 43, 0.12);
    color: #a87411;
}

.pill-online {
    background: rgba(17, 24, 39, 0.06);
    color: #111827;
}

/* Hero */
.hero {
    padding: 7rem 0 6rem;
    background: #050c1e;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,12,30,0.50) 0%, rgba(5,12,30,0.32) 60%, rgba(5,12,30,0.55) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

/* Hero single column (nouveau layout) */
.hero-single .hero-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.hero-single .hero-kicker {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}
.hero-single .hero-tagline {
    font-size: 1.1rem;
    color: #e3b95b;
    font-weight: 500;
    margin: 0 0 0.75rem;
    letter-spacing: 0.02em;
}
.hero-single .hero-subtitle {
    margin-bottom: 1.5rem;
}
.hero-actions-center {
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e3b95b;
    margin: 0 0 0.9rem;
}

.hero h1 {
    margin: 0 0 1.1rem;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3.4rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.hero-subtitle {
    margin: 0 0 1.6rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-geo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0.5rem 0 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: #c89a2b;
    letter-spacing: 0.06em;
    flex-wrap: wrap;
}
.hero-geo-sep {
    color: #e3b95b;
    font-weight: 300;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.8rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 0.75rem;
}

.badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.5rem 0.9rem;
    color: #fff;
}

.badge-value {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
}

.hero-footnote {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Bouton outline dans le hero : blanc sur fond image */
.hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
    color: #fff;
}

.hero-card {
    background: #fdfbf7;
    border-radius: 1.2rem;
    border: 1px solid #e5d8bd;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.18);
    padding: 1.25rem 1.3rem 1.3rem;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hero-card-label {
    font-size: 0.8rem;
    color: #6b7280;
}

.hero-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sale-card {
    padding: 0.9rem 0.9rem 1rem;
    border-radius: 0.9rem;
    background: radial-gradient(circle at top right, rgba(254, 243, 199, 0.9), transparent 55%),
                #fdfbf7;
    border: 1px solid #e5d8bd;
}

.sale-card-secondary {
    background: #fdfbf7;
}

.sale-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.sale-type {
    font-size: 0.8rem;
    color: #4b5563;
}

.sale-date {
    margin: 0 0 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.sale-desc {
    margin: 0 0 0.6rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.sale-btn {
    width: 100%;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: none;
    background: #111827;
    color: #f9fafb;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}

.sale-btn-secondary {
    background: transparent;
    color: #111827;
    border: 1px solid #d1c4a2;
}

/* Intro block (présentation) */
.intro-block {
    margin-bottom: 2.5rem;
}
.intro-block h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    margin: 0 0 0.85rem;
    letter-spacing: -0.02em;
}
.intro-lead {
    font-size: 1.05rem;
    color: #374151;
    margin: 0 0 0.5rem;
}
.categories-title {
    font-size: 1.1rem;
    margin: 0 0 1rem;
    color: #4b5563;
}
.categories-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.category-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.65rem;
    margin-bottom: 0.4rem;
}
.category-card-mini h2 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
}
.category-card-mini p {
    font-size: 0.8rem;
}

/* Prochaines dates (strip) */
.dates-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.date-item {
    background: #fff;
    border: 1px solid #e9dfc8;
    border-left: 4px solid #c89a2b;
    border-radius: 0 0.85rem 0.85rem 0;
    padding: 1.4rem 1.5rem 1.2rem;
    box-shadow: 0 4px 20px rgba(15,23,42,0.04);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}
.date-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}
.date-item-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}
.date-type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c89a2b;
    background: rgba(200,154,43,0.1);
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
}
.date-value {
    font-weight: 600;
    font-size: 0.95rem;
}
.date-item p {
    margin: 0 0 0.9rem;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.55;
}

/* Newsletter / alertes */
.newsletter-block {
    padding: 1.8rem 1.6rem 1.5rem;
    border-radius: 1rem;
    background: #111827;
    color: #f9fafb;
}
.newsletter-block h2 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
}
.newsletter-block p {
    margin: 0 0 1.1rem;
    font-size: 0.9rem;
    opacity: 0.85;
}
.newsletter-form {
    gap: 0.6rem;
}
.newsletter-block-light {
    background: #f3efe6;
    color: #111827;
    border: 1px solid #e5d8bd;
}
.newsletter-block-light p {
    opacity: 1;
    color: #4b5563;
}

/* Steps (participer) */
.steps-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.step-item {
    padding: 1.5rem 1.4rem;
    background: #fff;
    border: 1px solid #e9dfc8;
    border-left: 4px solid #c89a2b;
    border-radius: 0 0.75rem 0.75rem 0;
    transition: box-shadow 0.18s ease-out;
}
.step-item:hover {
    box-shadow: 0 10px 30px rgba(15,23,42,0.07);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #c89a2b, #e3b95b);
    color: #111827;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}
.step-item h2 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 600;
}
.step-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.55;
}

/* Retrait */
.retrait-block {
    max-width: 520px;
    margin: 0 auto;
}
.retrait-address {
    padding: 1.5rem 1.5rem 1.25rem;
    background: #fdfbf7;
    border: 1px solid #ead9b8;
    border-radius: 0.75rem;
}
.retrait-address h2 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}
.address-line {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}
.retrait-address .note {
    margin-top: 1rem;
}

/* Mise en page enrichie pour le retrait */
.retrait-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

.retrait-hours-title {
    margin: 0.75rem 0 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.retrait-hours {
    margin: 0 0 0.75rem 1.1rem;
    padding: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.retrait-hours li {
    margin-bottom: 0.15rem;
}

.retrait-contact-small h2 {
    margin: 0.75rem 0 0.25rem;
    font-size: 0.95rem;
}

.retrait-contact-small p {
    margin: 0;
    font-size: 0.9rem;
}

.retrait-map h2 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
}

.map-frame {
    position: relative;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #ead9b8;
    background: #e5e7eb;
    aspect-ratio: 4 / 3;
    margin-bottom: 0.6rem;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.retrait-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

/* Footer logo */
.footer-logo {
    height: 36px;
    width: auto;
    border-radius: 4px;
    background: #fdfaf5;
}

/* Prochaines ventes (legacy, gardé pour compat) */
.sales-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.sale-block {
    background: #fdfbf7;
    border-radius: 1rem;
    padding: 1.5rem 1.4rem 1.4rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid #ead9b8;
}

.sale-block-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.sale-block h2 {
    margin: 0;
    font-size: 1.1rem;
}

.sale-block-date {
    margin: 0 0 0.5rem;
    font-weight: 500;
    color: #111827;
}

.sale-block p {
    margin-bottom: 0.8rem;
    color: #64748b;
}

.alert-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.4rem 1.5rem;
    border-radius: 1rem;
    background: #111827;
    color: #f9fafb;
}

.alert-box-light {
    background: #e2e8f0;
    color: #0f172a;
}

.alert-box h2 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
}

.alert-box p {
    margin: 0;
    font-size: 0.9rem;
}

.inline-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.inline-form-stack {
    grid-template-columns: 1fr;
}

/* Two column layout */
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.25rem;
    align-items: flex-start;
}

.two-column-stacked {
    align-items: stretch;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.category-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.1rem 1.1rem 1rem;
    border: 1px solid #e9dfc8;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
}

.category-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
}

.category-card p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.4rem 1.3rem 1.3rem;
    border: 1px solid #e9dfc8;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border-top: 3px solid #c89a2b;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.09);
}

.feature-card h2 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
}

/* Lists */
.icon-list {
    padding-left: 1.1rem;
    margin: 0.4rem 0 0;
    color: #4b5563;
    font-size: 0.9rem;
}

.icon-list li {
    margin-bottom: 0.35rem;
}

.step-list {
    margin: 0.4rem 0 0;
    padding-left: 1.2rem;
    color: #4b5563;
    font-size: 0.9rem;
}

.step-list li {
    margin-bottom: 0.4rem;
}

.info-box {
    margin-top: 2rem;
    padding: 1.2rem 1.3rem;
    border-radius: 0.9rem;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #78350f;
    font-size: 0.9rem;
}

.info-box h2 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

/* Lot types */
.lot-types-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.lot-type-card {
    background: #fffdf0;
    border-radius: 1rem;
    padding: 1.4rem 1.3rem 1.3rem;
    border: 1px solid #e9dfc8;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    border-top: 3px solid #c89a2b;
}

.lot-type-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.lot-type-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.55;
}

.lot-type-warning {
    background: #fffdf0;
    border-color: #e9dfc8;
    border-top: 3px solid #c89a2b;
}

/* Règlement / contact */
.note {
    margin-top: 0.9rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.contact-list li {
    margin-bottom: 0.25rem;
}

.contact-form {
    background: #fdfbf7;
    border-radius: 0.9rem;
    padding: 1.2rem 1.3rem 1.1rem;
    border: 1px solid #ead9b8;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Inputs */
input,
select,
textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 0.65rem;
    border: 1.5px solid #d1c4a2;
    font-family: inherit;
    font-size: 0.9rem;
    color: #0f172a;
    background: #fff;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #c89a2b;
    box-shadow: 0 0 0 3px rgba(200,154,43,0.15);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #4b5563;
    margin: 0.4rem 0 0.7rem;
}

.checkbox input[type="checkbox"] {
    width: 0.95rem;
    height: 0.95rem;
    margin-top: 0.1rem;
}

/* Avis */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: #fdfbf7;
    border-radius: 0.9rem;
    padding: 1.1rem 1.1rem 1rem;
    border: 1px solid #ead9b8;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    font-size: 0.9rem;
    color: #4b5563;
}

.review-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.review-card h2 {
    margin: 0;
    font-size: 0.95rem;
}

.review-rating {
    font-size: 0.9rem;
    color: #f97316;
}

.review-date {
    margin: 0 0 0.3rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Footer */
.site-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 1.8rem 0 1.7rem;
    font-size: 0.8rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-title {
    font-weight: 500;
    color: #f9fafb;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a {
    color: #e5e7eb;
}

.footer-links a:hover {
    color: #facc15;
}

.footer-copy {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 0.9rem;
    align-items: center;
}

.footer-social a {
    color: #e5e7eb;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #facc15;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    inset-inline: 0.75rem;
    bottom: 0.75rem;
    z-index: 50;
    max-width: 520px;
    margin-inline: auto;
    background: #111827;
    color: #e5e7eb;
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.8rem;
    color: #e5e7eb;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── Vendeur Section ── */
.vendeur-section {
    background: #0f172a;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.vendeur-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,154,43,0.12), transparent 70%);
    pointer-events: none;
}

.vendeur-section .section-heading h2 {
    color: #f1f5f9;
}

.vendeur-section .section-heading h2::after {
    margin: 0.85rem auto 0;
}

.vendeur-section .section-heading p {
    color: #94a3b8;
}

.vendeur-section .section-eyebrow {
    color: #e3b95b;
}

.vendeur-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.vendeur-steps::before {
    content: '';
    position: absolute;
    top: 2.1rem;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,154,43,0.5), rgba(200,154,43,0.5), transparent);
    pointer-events: none;
}

.vendeur-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.vendeur-step-num {
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #c89a2b, #e3b95b);
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(200,154,43,0.12);
}

.vendeur-step h2 {
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.vendeur-step p {
    color: #94a3b8;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
}

.vendeur-bottom {
    align-items: stretch;
}

.vendeur-image-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vendeur-img-wrap {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(200,154,43,0.2);
    flex: 1;
    min-height: 220px;
}

.vendeur-goods-note {
    background: rgba(200,154,43,0.08);
    border: 1px solid rgba(200,154,43,0.2);
    border-radius: 0.75rem;
    padding: 1.1rem 1.2rem;
}

.vendeur-goods-note h2 {
    margin: 0 0 0.3rem;
    color: #e3b95b;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vendeur-goods-note p {
    margin: 0;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.55;
}

.vendeur-form-header {
    margin-bottom: 1.2rem;
}

.vendeur-form-header h2 {
    color: #f1f5f9;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.3rem;
}

.vendeur-form-header p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.vendeur-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,154,43,0.2);
    border-radius: 1rem;
    padding: 1.4rem 1.4rem 1.2rem;
}

.vendeur-form input,
.vendeur-form textarea {
    background: rgba(255,255,255,0.06);
    border-color: rgba(200,154,43,0.2);
    color: #e2e8f0;
}

.vendeur-form input::placeholder,
.vendeur-form textarea::placeholder {
    color: #64748b;
}

.vendeur-form input:focus,
.vendeur-form textarea:focus {
    border-color: #c89a2b;
    box-shadow: 0 0 0 3px rgba(200,154,43,0.12);
    background: rgba(255,255,255,0.08);
}

.vendeur-form .checkbox {
    color: #94a3b8;
}

.vendeur-form .checkbox a {
    color: #e3b95b;
    text-decoration: underline;
}

.vendeur-note {
    margin-top: 0.9rem;
    font-size: 0.83rem;
    color: #64748b;
}

.vendeur-note a {
    color: #e3b95b;
}

/* ── Reassurance cards ── */
@media (max-width: 960px) {
    .vendeur-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .vendeur-steps::before {
        display: none;
    }
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .sales-grid,
    .dates-strip,
    .steps-block {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Catégories : 4 → 2 colonnes sur tablette */
    .categories-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-column,
    .categories-grid,
    .features-grid,
    .lot-types-grid,
    .reviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .inline-form,
    .newsletter-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding-inline: 1.1rem;
    }

.main-nav {
    position: absolute;
    inset-inline: 1rem;
    top: 3.4rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0.9rem 0.8rem;
    background: #fdfaf5;
    border-radius: 0.75rem;
    border: 1px solid #e5d8bd;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
        transform-origin: top;
        opacity: 0;
        pointer-events: none;
        transform: scaleY(0.9);
        transition: opacity 0.12s ease-out, transform 0.12s ease-out;
    }

    .main-nav.nav-open {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
    }

    .main-nav a.btn {
        align-self: stretch;
        justify-content: center;
        margin-top: 0.25rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3.5rem 0;
    }

    .section-heading h2 {
        font-size: 1.6rem;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ── Images sections ── */
.hero-image-wrap {
    margin-top: 2.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(200,154,43,0.25);
    box-shadow: 0 32px 80px rgba(15,23,42,0.18), 0 0 0 1px rgba(255,255,255,0.5) inset;
    position: relative;
}
.hero-main-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.section-banner-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
    margin-bottom: 2rem;
    border: 1px solid #e5d8bd;
    box-shadow: 0 12px 36px rgba(15,23,42,0.08);
}
.retrait-banner { margin-bottom: 0; }
.footer-address {
    display: block;
    font-size: 0.72rem;
    color: #9ca3af;
    margin-top: 0.1rem;
}

/* ── Comment ça marche ── */
.howto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}
.howto-card {
    background: #fff;
    border-radius: 1.1rem;
    padding: 1.8rem 1.5rem 1.5rem;
    border: 1px solid #e9dfc8;
    box-shadow: 0 6px 24px rgba(15,23,42,0.05);
    text-align: center;
}
.howto-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #c89a2b, #e3b95b);
    color: #111827;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(200,154,43,0.3);
}
.howto-card h2 { margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 600; }
.howto-card p  { margin: 0; font-size: 0.9rem; color: #4b5563; line-height: 1.6; }

/* ── Reassurance badges ── */
.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.25rem;
    margin-top: 0;
}
.reassurance-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.3rem 1.3rem;
    background: #fff;
    border: 1px solid #e9dfc8;
    border-radius: 1rem;
    border-left: 4px solid #c89a2b;
    box-shadow: 0 4px 16px rgba(15,23,42,0.04);
}
.reassurance-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.reassurance-card h2 { margin: 0 0 0.3rem; font-size: 0.95rem; font-weight: 600; }
.reassurance-card p  { margin: 0; font-size: 0.85rem; color: #4b5563; line-height: 1.55; }

/* ── CGV download bar ── */
.cgv-download-bar {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 0.75rem; padding: 1rem 1.25rem;
    background: #111827; color: #f9fafb;
    border-radius: 0.75rem; margin-bottom: 2rem; font-size: 0.9rem;
}
.cgv-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; }
.cgv-card { background:#fdfbf7; border-radius:0.9rem; padding:1.15rem 1.2rem 1.1rem; border:1px solid #ead9b8; box-shadow:0 8px 22px rgba(15,23,42,0.04); }
.cgv-card h2 { margin:0 0 0.4rem; font-size:0.95rem; color:#111827; }
.cgv-card p  { margin:0; font-size:0.85rem; color:#4b5563; line-height:1.55; }
.cgv-card a  { color:#b48b2a; text-decoration:underline; text-underline-offset:2px; }

@media (max-width: 960px) {
    .howto-grid, .reassurance-grid, .cgv-grid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 640px) {
    .hero-main-image { height: 200px; }
    .section-banner-img { height: 180px; }
    .cgv-download-bar { flex-direction: column; align-items: flex-start; }
}

/* ── 5-col categories grid ── */
.categories-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 960px) {
    .categories-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 480px) {
    .categories-grid-5 {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ── Images sections ── */
.hero-image-wrap {
    margin-top: 2.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(200,154,43,0.25);
    box-shadow: 0 32px 80px rgba(15,23,42,0.18), 0 0 0 1px rgba(255,255,255,0.5) inset;
    position: relative;
}
.hero-main-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.section-banner-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
    margin-bottom: 2rem;
    border: 1px solid #e5d8bd;
    box-shadow: 0 12px 36px rgba(15,23,42,0.08);
}
.categories-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.category-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.65rem;
    margin-bottom: 0.4rem;
}
.category-card-mini h2 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
}
.category-card-mini p {
    font-size: 0.8rem;
}

/* ── Comment ça marche ── */
.howto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}
.howto-card {
    background: #fff;
    border-radius: 1.1rem;
    padding: 1.8rem 1.5rem 1.5rem;
    border: 1px solid #e9dfc8;
    box-shadow: 0 6px 24px rgba(15,23,42,0.05);
    text-align: center;
}
.howto-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #c89a2b, #e3b95b);
    color: #111827;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(200,154,43,0.3);
}
.howto-card h2 { margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 600; }
.howto-card p  { margin: 0; font-size: 0.9rem; color: #4b5563; line-height: 1.6; }

/* ── Reassurance badges ── */
.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}
.reassurance-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: #fdfbf7;
    border: 1px solid #ead9b8;
    border-radius: 0.75rem;
}
.reassurance-card h2 { margin: 0 0 0.2rem; font-size: 0.9rem; font-weight: 600; }
.reassurance-card p  { margin: 0; font-size: 0.8rem; color: #4b5563; }

@media (max-width: 960px) {
    .howto-grid, .reassurance-grid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 640px) {
    .hero-main-image { height: 200px; }
    .section-banner-img { height: 180px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE MOBILE — OPTIMISATIONS
══════════════════════════════════════════ */

/* ── Tablette 768px ── */
@media (max-width: 768px) {

    /* Retrait : carte + adresse empilés verticalement */
    .retrait-layout {
        grid-template-columns: 1fr;
    }

    /* Carte : ratio portrait → paysage plus court */
    .map-frame {
        aspect-ratio: 16 / 9;
    }

    /* Boutons carte : pleine largeur */
    .retrait-map-actions {
        flex-direction: column;
    }
    .retrait-map-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Hero : réduction padding */
    .hero {
        padding: 5rem 0 4rem;
        min-height: 420px;
    }

    /* Footer : centré et empilé */
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    .footer-links {
        justify-content: center;
    }
    .footer-brand {
        flex-direction: column;
        align-items: center;
    }

    /* Cookie banner : pleine largeur */
    .cookie-banner {
        inset-inline: 0;
        bottom: 0;
        border-radius: 0.9rem 0.9rem 0 0;
        max-width: 100%;
    }
}

/* ── Mobile 640px ── */
@media (max-width: 640px) {

    /* Hero */
    .hero {
        padding: 4rem 0 3rem;
        min-height: 380px;
        background-position: center 30%;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .hero-single .hero-tagline {
        font-size: 0.95rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }
    .hero .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-badges {
        justify-content: center;
    }

    /* Catégories : 2 → 1 colonne */
    .categories-grid-4 {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Inputs plus grands pour le toucher */
    input,
    select,
    textarea {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    /* Boutons : plus hauts sur mobile */
    .btn {
        padding: 0.85rem 1.4rem;
    }

    /* Sections : moins d'espace */
    .section {
        padding: 2.5rem 0;
    }

    /* Titres de section */
    .section-heading h2 {
        font-size: 1.5rem;
    }

    /* Formulaires : une colonne */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Newsletter inline */
    .inline-form,
    .newsletter-form {
        grid-template-columns: 1fr;
    }

    /* Banner retrait : moins haute */
    .section-banner-img {
        height: 160px;
    }

    /* Notification flottante */
    .sale-notif {
        inset-inline: 0.5rem;
        bottom: 0.5rem;
    }
}

/* ── Très petit écran 480px ── */
@media (max-width: 480px) {

    /* Hero encore plus compact */
    .hero {
        padding: 3.5rem 0 2.5rem;
        min-height: 340px;
    }
    .hero h1 {
        font-size: 1.65rem;
    }

    /* Container : moins de marge latérale */
    .container {
        padding: 0 1rem;
    }

    /* Compteur (prochaine vente) */
    .countdown-units {
        gap: 0.5rem;
    }

    /* FAQ : boutons plus lisibles */
    .faq-btn {
        font-size: 0.9rem;
        padding: 1rem 0.75rem;
    }

    /* Retrait bloc : pas de max-width contraignante */
    .retrait-block {
        max-width: 100%;
    }

    /* Vendeur steps : moins de padding */
    .vendeur-step {
        padding: 0 0.25rem;
    }
}

/* ══════════════════════════════════════════
   ANIMATIONS & JS-MANAGED IMAGES
══════════════════════════════════════════ */

/* Scroll progress bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #b8972f, #e6c55a, #b8972f);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(184,151,47,0.6);
}

/* JS image placeholder shimmer */
.js-img, .js-banner {
    background: linear-gradient(90deg, #f0e8d0 25%, #fdf7e8 50%, #f0e8d0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.js-img img, .js-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.js-img.loaded, .js-banner.loaded {
    animation: none;
    background: none;
}

.js-img.loaded img, .js-banner.loaded img {
    opacity: 1;
}

/* Parallax wrapper */
.js-banner {
    will-change: transform;
}

.js-banner img {
    transform: scale(1.08);
    transition: opacity 0.6s ease, transform 0s linear;
}

/* ── Wave dividers ── */
.wave-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
}
.wave-divider svg {
    display: block;
    width: 100%;
}
.wave-down { transform: rotate(180deg); }

/* ── Section backgrounds ── */
.section {
    padding: 5rem 0;
}
.section-alt {
    background: linear-gradient(180deg, #fdfaf5 0%, #f9f4ea 100%);
}
body {
    background: #f5f0e3;
}

/* ── Category card golden overlay ── */
.category-card {
    position: relative;
    overflow: hidden;
}
.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,154,43,0.08), rgba(200,154,43,0.18));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    pointer-events: none;
}
.category-card:hover::after {
    opacity: 1;
}
.category-card:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 20px 50px rgba(200,154,43,0.18), 0 6px 16px rgba(15,23,42,0.1);
    border-color: rgba(200,154,43,0.5);
}
.category-image {
    overflow: hidden;
    border-radius: 0.65rem;
}
.category-card .category-image img {
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1) !important;
}
.category-card:hover .category-image img {
    transform: scale(1.08) !important;
}

/* ── How-to cards premium ── */
.howto-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem 1.6rem 1.6rem;
    border: 1px solid #e9dfc8;
    box-shadow: 0 8px 30px rgba(15,23,42,0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.howto-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a07420, #e3b95b, #a07420);
    border-radius: 2px 2px 0 0;
}
.howto-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(200,154,43,0.16), 0 6px 20px rgba(15,23,42,0.08);
    border-color: rgba(200,154,43,0.4);
}
.howto-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8872a, #e3b95b);
    color: #0f172a;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 6px 20px rgba(200,154,43,0.38), 0 0 0 6px rgba(200,154,43,0.1);
}

/* ── Feature cards premium ── */
.feature-card {
    border-top: 3px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #b8872a, #e3b95b) border-box;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #b8872a, #e3b95b) 1;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(200,154,43,0.14), 0 4px 12px rgba(15,23,42,0.06);
}

/* ── Date items ── */
.date-item {
    background: #fff;
    border: 1px solid #e9dfc8;
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, #b8872a, #e3b95b) 1;
    border-left-width: 4px;
    border-radius: 0 0.85rem 0.85rem 0;
    padding: 1.4rem 1.5rem 1.2rem;
    box-shadow: 0 4px 20px rgba(15,23,42,0.04);
    transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
}
.date-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(200,154,43,0.14);
}

/* ── Hero badges enhanced ── */
.badge {
    background: rgba(255,255,255,0.85);
    border-radius: 0.9rem;
    border: 1px solid rgba(200,154,43,0.3);
    padding: 0.55rem 1rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(15,23,42,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,154,43,0.2);
}

/* ── Section eyebrow ── */
.section-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b8872a;
    margin: 0 0 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, #c89a2b, transparent);
}
.section-eyebrow::before {
    background: linear-gradient(270deg, #c89a2b, transparent);
}

/* ── Reassurance cards ── */
.reassurance-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.reassurance-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.08);
}

/* ── Header logo glow ── */
.site-header.scrolled .logo-title {
    color: #0f172a;
}

/* ── Footer enhanced ── */
.site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #070e1a 100%);
    border-top: 1px solid rgba(200,154,43,0.2);
}

/* ── Vendeur section enhancement ── */
.vendeur-section {
    background: linear-gradient(160deg, #0c1526 0%, #0f172a 40%, #0a1220 100%);
}
.vendeur-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,154,43,0.08), transparent 70%);
    pointer-events: none;
}
.vendeur-step-num {
    box-shadow: 0 0 0 8px rgba(200,154,43,0.1), 0 6px 20px rgba(200,154,43,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vendeur-step:hover .vendeur-step-num {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(200,154,43,0.12), 0 8px 28px rgba(200,154,43,0.4);
}

/* ── Input focus enhanced ── */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #c89a2b;
    box-shadow: 0 0 0 4px rgba(200,154,43,0.12), 0 2px 8px rgba(200,154,43,0.1);
}

/* ── Progress bar shimmer ── */
#scroll-progress {
    background: linear-gradient(90deg, #a07420, #e3b95b 40%, #f5d280 60%, #a07420);
    background-size: 200% 100%;
    animation: progress-shimmer 2s linear infinite;
    box-shadow: 0 0 10px rgba(200,154,43,0.7);
}
@keyframes progress-shimmer {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}



/* ── Scroll reveal ── */
.reveal,
.reveal-left,
.reveal-right {
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
                transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.reveal-init      { opacity: 0; transform: translateY(32px); }
.reveal-left.reveal-init  { opacity: 0; transform: translateX(-40px); }
.reveal-right.reveal-init { opacity: 0; transform: translateX(40px); }
.reveal.visible      { opacity: 1 !important; transform: translateY(0) !important; }
.reveal-left.visible  { opacity: 1 !important; transform: translateX(0) !important; }
.reveal-right.visible { opacity: 1 !important; transform: translateX(0) !important; }


    transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
                transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.stagger-children.stagger-init > * { opacity: 0; transform: translateY(28px); }
.stagger-children.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.55s; }

/* ── Navbar scroll state ── */
.site-header {
    transition: box-shadow 0.3s ease, background 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(15,23,42,0.12);
    background: rgba(247,243,234,0.97);
    backdrop-filter: blur(12px);
}

/* ── Active nav link ── */
.main-nav a.nav-active {
    color: #b8972f;
    font-weight: 600;
    position: relative;
}
.main-nav a.nav-active::after {
    content:'';
    position: absolute;
    bottom: -3px;
    left: 0; right: 0;
    height: 2px;
    background: #b8972f;
    border-radius: 1px;
}

/* ── Button ripple ── */
.btn {
    position: relative;
    overflow: hidden;
}
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0);
    animation: ripple-anim 0.55s linear;
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* ── Category card hover ── */
.category-card {
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(15,23,42,0.14);
}

/* ── Feature card hover ── */
.feature-card {
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.1);
    border-color: #b8972f;
}

/* ── How-to card hover ── */
.howto-card {
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.howto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(15,23,42,0.12);
}

/* ── Section banners ── */
.js-banner {
    border-radius: 1.25rem !important;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15,23,42,0.12) !important;
    border: 1px solid rgba(200,154,43,0.2) !important;
}
.js-banner img {
    transform: scale(1.06);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1) !important;
}
.js-banner:hover img {
    transform: scale(1.1) !important;
}


/* ── Countdown ── */
.countdowns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (max-width: 700px) {
    .countdowns-grid { grid-template-columns: 1fr; }
}
.countdown-wrap {
    background: linear-gradient(135deg, #0f172a 0%, #1e2d4a 100%);
    border-radius: 1rem;
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border: 1px solid rgba(200,154,43,0.25);
    box-shadow: 0 8px 30px rgba(15,23,42,0.15);
}
.countdown-label {
    color: #e3b95b;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 0.3rem;
}
.countdown-title {
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}
.countdown-units {
    display: flex;
    gap: 0.75rem;
}
.countdown-unit {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,154,43,0.2);
    border-radius: 0.6rem;
    padding: 0.5rem 0.9rem;
    min-width: 56px;
}
.countdown-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #e3b95b;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.countdown-lbl {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.15rem;
}

/* ── Testimonials slider ── */
.testi-slider-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}
.testi-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.testi-card {
    min-width: 100%;
    background: #fff;
    border: 1px solid #e9dfc8;
    border-radius: 1rem;
    padding: 1.6rem 1.8rem;
    box-shadow: 0 4px 20px rgba(15,23,42,0.06);
}
.testi-stars {
    color: #c89a2b;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}
.testi-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 1rem;
    font-style: italic;
}
.testi-author {
    font-weight: 600;
    color: #111827;
    font-size: 0.9rem;
}
.testi-role {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-left: 0.4rem;
}
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1c4a4;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}
.testi-dot.active {
    background: #c89a2b;
    transform: scale(1.3);
}
.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #e5d8bd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(15,23,42,0.1);
    transition: background 0.18s, box-shadow 0.18s;
    font-size: 1rem;
    color: #c89a2b;
    z-index: 2;
}
.testi-nav:hover { background: #fdf7e8; box-shadow: 0 4px 14px rgba(200,154,43,0.2); }
.testi-nav-prev { left: 0.5rem; }
.testi-nav-next { right: 0.5rem; }

/* ── FAQ accordion ── */
#faq { background: #fdfaf5; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid #e9dfc8;
}
.faq-item:first-child { border-top: 1px solid #e9dfc8; }
.faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    color: #111827;
    font-family: inherit;
}
.faq-btn:hover { color: #c89a2b; }
.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f3ede0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c89a2b;
    font-size: 1rem;
    font-weight: 400;
    transition: transform 0.25s ease, background 0.2s;
    line-height: 1;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: #c89a2b;
    color: #fff;
}
.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0;
}
.faq-item.open .faq-body {
    max-height: 300px;
    padding-bottom: 1rem;
}
.faq-body p {
    margin: 0;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ── Back to top ── */
#back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 1.25rem;
    z-index: 50;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c89a2b, #e3b95b);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(200,154,43,0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    color: #fff;
    font-size: 1rem;
}
#back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
#back-to-top:hover {
    box-shadow: 0 6px 22px rgba(200,154,43,0.6);
    transform: translateY(-2px);
}

/* ── Floating notification ── */
.sale-notif {
    position: fixed;
    bottom: 1.5rem;
    left: 1.25rem;
    z-index: 60;
    background: #0f172a;
    color: #f1f5f9;
    border-left: 3px solid #e3b95b;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem 0.85rem 1.1rem;
    max-width: 300px;
    box-shadow: 0 8px 32px rgba(15,23,42,0.3);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.sale-notif.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sale-notif-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.05rem; }
.sale-notif-text { flex: 1; }
.sale-notif-text strong { display: block; font-size: 0.9rem; color: #e3b95b; margin-bottom: 0.15rem; }
.sale-notif-text span { font-size: 0.82rem; color: #94a3b8; line-height: 1.4; }
.sale-notif-close {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.05rem;
}
.sale-notif-close:hover { color: #f1f5f9; }
.sale-notif-link {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #e3b95b;
    text-decoration: underline;
}

/* ── Newsletter Popup ── */
.nl-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7,14,26,0.72);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nl-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.nl-modal {
    background: linear-gradient(160deg, #0f172a 0%, #101c2c 100%);
    border: 1px solid rgba(200,154,43,0.3);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    padding: 2.4rem 2.2rem 2rem;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,0.55);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    color: #e5e7eb;
}
.nl-overlay.is-open .nl-modal {
    transform: translateY(0) scale(1);
}
.nl-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.07);
    border: none;
    color: #9ca3af;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.nl-close:hover { background: rgba(200,154,43,0.2); color: #e3b95b; }
.nl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(200,154,43,0.12);
    border: 1px solid rgba(200,154,43,0.35);
    color: #e3b95b;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.nl-modal h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #f9fafb;
    line-height: 1.25;
    margin: 0 0 0.5rem;
}
.nl-modal h2 span { color: #e3b95b; }
.nl-modal p {
    font-size: 0.88rem;
    color: #9ca3af;
    margin: 0 0 1.4rem;
    line-height: 1.55;
}
.nl-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.nl-form input[type="email"] {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,154,43,0.3);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    color: #f9fafb;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}
.nl-form input[type="email"]::placeholder { color: #6b7280; }
.nl-form input[type="email"]:focus { border-color: #c89a2b; }
.nl-form button {
    background: linear-gradient(135deg, #c89a2b, #e3b95b);
    border: none;
    border-radius: 8px;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.15s;
}
.nl-form button:hover { opacity: 0.9; transform: translateY(-1px); }
.nl-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 0.78rem;
    margin-bottom: 1.2rem;
}
.nl-divider::before, .nl-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}
.nl-socials {
    display: flex;
    gap: 0.7rem;
}
.nl-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.18s, opacity 0.18s;
    border: 1px solid transparent;
}
.nl-social-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.nl-social-btn.tiktok {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    color: #f9fafb;
}
.nl-social-btn.instagram {
    background: linear-gradient(135deg, rgba(131,58,180,0.18), rgba(253,29,29,0.18), rgba(252,176,69,0.18));
    border-color: rgba(253,29,29,0.25);
    color: #f9fafb;
}
.nl-social-btn.linkedin {
    background: rgba(10,102,194,0.18);
    border-color: rgba(10,102,194,0.3);
    color: #93c5fd;
}
.nl-skip {
    display: block;
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.75rem;
    color: #4b5563;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}
.nl-skip:hover { color: #9ca3af; }
.nl-success-msg {
    display: none;
    text-align: center;
    padding: 0.5rem 0 0.2rem;
}
.nl-success-msg .nl-check {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.nl-success-msg p {
    color: #86efac;
    font-size: 0.95rem;
    margin: 0;
}
@media (max-width: 480px) {
    .nl-modal { padding: 2rem 1.4rem 1.6rem; }
    .nl-form { flex-direction: column; }
    .nl-socials { gap: 0.4rem; }
    .nl-social-btn { font-size: 0.72rem; padding: 0.6rem 0.3rem; }
}
