/* ==================================================
   HERO HOMEPAGE
================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 560px;

    /* Remonte derrière le header sticky transparent */
    margin-top: -196px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    background-color: var(--color-taupe);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Masque ovale centré à droite */
    -webkit-mask-image: radial-gradient(ellipse 60% 59% at 59% 39%, black 99%, transparent 100%);
    mask-image: radial-gradient(ellipse 60% 59% at 59% 39%, black 99%, transparent 100%);
}

/* Overlay sombre pour lisibilité */

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

    text-align: center;
    width: 50%;
    padding: 0 48px;
}

/* Titre */

.hero-title {
    margin: 0;

    font-family: var(--font-cursive);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: var(--font-regular);
    line-height: 1.15;
    letter-spacing: 0.04em;

    color: var(--color-white);
}

/* Sous-titre */

.hero-subtitle {
    margin: 0;

    font-family: var(--font-primary);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: var(--font-light);
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: var(--color-white);
    opacity: 0.75;
}

/* Bouton : trait ::before + texte simple + remplissage au hover */

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;

    padding: 16px 28px;

    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;

    color: var(--color-white);
    background: transparent;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.hero-btn::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 36px;
    height: 1px;
    background: currentColor;
    transition: width 0.35s ease;
}

.hero-btn:hover {
    background: var(--color-white);
    color: var(--color-taupe);
}

.hero-btn:hover::before {
    width: 20px;
}

/* Responsive */

@media (max-width: 1024px) {
    .hero {
        /* top-bar (42px) + header-main (72px) */
        margin-top: -114px;
    }

    .hero-inner {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .hero {
        /* top-bar (38px) + header-main (68px) */
        margin-top: -106px;
        min-height: 480px;
        justify-content: center;
    }

    .hero-inner {
        width: 100%;
        gap: 32px;
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .hero-btn {
        font-size: 0.75rem;
        padding: 14px 20px;
        gap: 12px;
    }

    .hero-btn::before {
        width: 24px;
    }
}

/* ==================================================
   HOME — SECTION INTRO
================================================== */

.home-intro {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mots décoratifs en filigrane */

.home-intro-word {
    position: absolute;
    font-size: clamp(70px, 14vw, 180px);
    font-weight: var(--font-semibold);
    color: var(--color-taupe);
    opacity: 0.1;
    letter-spacing: -0.02em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.home-intro-word--left {
    left: -2%;
    top: 10%;
}

.home-intro-word--right {
    right: -2%;
    bottom: 2%;
}

@media (max-width: 768px) {
    .home-intro-word--left {
        left: -10%;
    }

    .home-intro-word--right {
        right: -10%;
    }
}

/* Contenu centré */

.home-intro-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    max-width: 640px;
    text-align: center;
}

.home-intro-text {
    font-size: var(--text-xl);
    color: var(--color-text);
    line-height: 1.65;
    margin: 0;
    margin-top: var(--space-lg);
}

/* Bouton cercle — utilise .btn-circle de components.css */

/* ==================================================
   HOME — VIDÉO HERO
================================================== */

.home-video {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.home-video-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.home-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.home-video-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    color: var(--color-white);
    height: 100%;
}

.home-video-title {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: var(--h1);
    font-weight: var(--font-light);
    line-height: 1.1;
    color: var(--color-white);
}

.home-video-subtitle {
    margin: 0;
    font-size: var(--text-sm);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.home-video-seo {
    margin-top: auto;
    padding: var(--space-sm) 0;
    font-size: var(--text-xs);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.3);
    text-align: justify;
    transition: color 0.3s ease;
}

.home-video-seo:hover {
    color: rgba(255, 255, 255, 0.7);
}

.home-video-seo p {
    margin: 0;
}

@media (max-width: 768px) {
    .home-video-seo {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* ==================================================
   HOME — HERO COLLECTIONS
================================================== */

.home-collections {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    overflow-x: clip;
}

.home-collections-word {
    position: absolute;
    top: var(--space-xl);
    left: 50%;
    transform: translateX(-50%) translateY(-67%);
    font-size: clamp(120px, 19vw, 280px);
    font-weight: var(--font-semibold);
    color: var(--color-taupe);
    opacity: 0.08;
    letter-spacing: -0.02em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.home-collections-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.home-collections-card {
    flex: 0 1 260px;
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--color-taupe);
}

.home-collections-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.home-collections-card:hover img {
    transform: scale(1.05);
}

.home-collections-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.home-collections-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home-collections-card:hover .home-collections-overlay {
    opacity: 0.45;
}

.home-collections-title {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    text-align: center;
    color: var(--color-white);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 3;
    transition: bottom 0.4s ease, transform 0.4s ease;
}

.home-collections-card:hover .home-collections-title {
    bottom: 50%;
    transform: translateY(50%);
}

@media (max-width: 768px) {
    .home-collections-card {
        flex: 0 1 calc(50% - var(--space-sm));
    }

    .home-collections-word {
        font-size: clamp(60px, 18vw, 280px);
    }
}

/* ==================================================
   HOME — SÉLECTION PRODUITS
================================================== */

.home-featured {
    padding: 0 var(--space-xl) var(--space-xl);
}

.home-featured-header {
    margin-bottom: var(--space-md);
}

.home-featured-footer {
    display: flex;
    justify-content: center;
    margin-top: var(--space-lg);
}

.home-featured-label {
    font-weight: var(--font-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.home-featured-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--color-text);
}

.home-featured-img-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--color-taupe);
}

.home-featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-featured-card:hover .home-featured-img-wrap img,
.home-featured-card:hover .shop-product-image img {
    transform: scale(1.04);
}

.home-featured-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-featured-name {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-featured-cat {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.home-featured-price {
    font-size: var(--text-sm);
    color: var(--color-text);
}

/* ── Section Histoire / Atelier ─────────────────────────────────────────────── */

.home-histoire {
    padding-block: var(--space-xl);
}

.home-histoire-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-lg);
    align-items: center;
}

.home-histoire-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.home-histoire-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.home-histoire-titre {
    font-size: var(--h2);
    font-weight: var(--font-semibold);
    margin: 0;
}

.home-histoire-texte {
    font-size: var(--text-base);
    line-height: 1.7;
    margin: 0;
    color: var(--color-text);
}

.home-histoire-btn {
    align-self: flex-start;
    color: var(--color-text);
}

.home-histoire-btn::before {
    background: currentColor;
}

.home-histoire-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .home-histoire-inner {
        grid-template-columns: 1fr;
    }

    .home-histoire-photo img {
        aspect-ratio: 1 / 1;
        max-width: 200px;
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    .home-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .home-featured {
        padding: 0 var(--space-sm) var(--space-md);
    }

    .home-featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

/* ==================================================
   HOME — JOURNAL
================================================== */

.home-journal {
    padding: var(--space-2xl) 0;
    overflow-x: clip;
}

.home-journal-inner {
  display: grid;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    grid-template-columns: 1fr 2fr;
}

.home-journal-left {
       display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    flex-shrink: 0;

}

.home-journal-title {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: var(--h1);
    font-weight: var(--font-light);
    line-height: 1;
}

.home-journal-subtitle {
    margin: 0;
    font-size: var(--text-xl);
    color: var(--color-muted);
    letter-spacing: 0.04em;
    text-align: center;
}

.home-journal-images {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.home-journal-images::before,
.home-journal-images::after {
    content: '';
    position: absolute;
    width: clamp(160px, 22vw, 330px);
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    pointer-events: none;
    z-index: 0;
}

.home-journal-images::before {
    top: -18px;
    left: -30px;
    transform: rotate(-5deg);
}

.home-journal-images::after {
    bottom: -18px;
    right: -30px;
    transform: rotate(6deg);
}

.home-journal-img-wrap {
    display: block;
    width: clamp(160px, 22vw, 330px);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.35s ease, z-index 0s;
}

.home-journal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-journal-img-wrap:hover img {
    transform: scale(1.04);
}

.home-journal-img-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-sm) var(--space-sm);
    font-size: var(--text-base);
    color: var(--color-white);
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    line-height: 1.3;
}

.home-journal-img-1 { z-index: 3; }
.home-journal-img-2 { z-index: 2; margin-left: -60px; transform: rotate(4deg); }
.home-journal-img-3 { z-index: 1; margin-left: -60px; transform: rotate(8deg); }

.home-journal-img-2:hover { z-index: 4; transform: rotate(4deg) translateY(-8px); }
.home-journal-img-3:hover { z-index: 4; transform: rotate(8deg) translateY(-8px); }

@media (max-width: 768px) {
    .home-journal-inner {
        grid-template-columns: 1fr;
    }

    .home-journal-left {
        align-items: center;
        text-align: center;
    }

    .home-journal-images {
        justify-content: center;
        width: 100%;
    }

    .home-journal-img-3 {
        display: none;
    }

    .home-journal-images {
        gap: 12px;
    }

    .home-journal-img-wrap {
        width: calc(50% - 6px);
        flex-shrink: 0;
    }

    .home-journal-img-1 { transform: none; }
    .home-journal-img-2 { margin-left: 0; transform: none; }
}

/* ==================================================
   PAGE BLOG
================================================== */

.blog-page {
    padding: var(--space-xl) 0;
}

.blog-page-title {
    font-family: var(--font-secondary);
    font-weight: var(--font-light);
    font-size: var(--h1);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.blog-page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: start;
}

/* Articles */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-decoration: none;
    color: inherit;
}

.blog-card-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}

.blog-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-card-title {
    margin: 0;
    font-size: var(--text-base);
    font-weight: var(--font-regular);
    line-height: 1.3;
}

.blog-card-date {
    font-size: var(--text-xs);
    color: var(--color-muted);
    letter-spacing: 0.04em;
}

/* Sidebar */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: sticky;
    top: 120px;
}

.blog-sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.blog-sidebar-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin-bottom: var(--space-xs);
}

.blog-sidebar-title {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: var(--font-light);
    font-size: var(--h3);
    text-align: center;
}

.blog-sidebar-text,
.blog-sidebar-addr {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--color-muted);
    line-height: 1.6;
}

.blog-sidebar-phone {
    font-size: var(--text-sm);
    color: var(--color-text);
    text-decoration: none;
}

.blog-sidebar-phone:hover {
    color: var(--color-primary);
}

.blog-sidebar-nouveautes {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.blog-sidebar-products {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.blog-sidebar-product {
   display: flex;
    gap: var(--space-sm);
    align-items: center;
    text-decoration: none;
    color: inherit;
    flex-direction: column;
}

.blog-sidebar-product img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.blog-sidebar-product-info {
   display: flex;
    flex-direction: row;
    gap: 15px;
}

.blog-sidebar-product-name {
    font-size: var(--text-sm);
    line-height: 1.3;
}

.blog-sidebar-product-price {
    font-size: var(--text-xs);
    color: var(--color-muted);
}

@media (max-width: 768px) {
    .blog-page-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

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

/* ==================================================
   SINGLE ARTICLE
================================================== */

.single-article {
    padding: var(--space-xl) 0;
}

.single-article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: start;
}

.single-article-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.single-article-back {
    font-size: var(--text-sm);
    color: var(--color-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.single-article-back:hover {
    color: var(--color-text);
}

.single-article-cat {
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.single-article-title {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: var(--font-light);
    font-size: var(--h2);
    line-height: 1.15;
}

.single-article-date {
    font-size: var(--text-xs);
    color: var(--color-muted);
    letter-spacing: 0.04em;
}

.single-article-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    margin: var(--space-sm) 0;
}

.single-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-article-content {
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--color-text);
}

.single-article-content p  { margin: 0 0 var(--space-md); }
.single-article-content h2 { font-family: var(--font-secondary); font-weight: var(--font-light); font-size: var(--h3); margin: var(--space-lg) 0 var(--space-sm); }
.single-article-content h3 { font-size: var(--text-base); font-weight: var(--font-medium); margin: var(--space-md) 0 var(--space-xs); }
.single-article-content img { max-width: 100%; border-radius: 4px; }
.single-article-content a  { color: var(--color-primary); }

@media (max-width: 768px) {
    .single-article-layout {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   PAGE RECHERCHE
================================================== */

.search-results-page {
    padding: var(--space-xl) 0;
}

.search-results-title {
    font-family: var(--font-secondary);
    font-weight: var(--font-light);
    font-size: var(--h2);
    margin-bottom: var(--space-xs);
}

.search-results-title em {
    font-style: italic;
    color: var(--color-primary);
}

.search-results-count {
    font-size: var(--text-sm);
    color: var(--color-muted);
    margin-bottom: var(--space-xl);
}

.search-results-empty {
    font-size: var(--text-base);
    color: var(--color-muted);
    margin-top: var(--space-xl);
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.search-results-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-decoration: none;
    color: inherit;
}

.search-results-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
}

.search-results-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.search-results-card:hover .search-results-img img {
    transform: scale(1.04);
}

.search-results-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-results-cat {
    font-size: var(--text-xs);
    color: var(--color-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.search-results-name {
    font-size: var(--text-sm);
    line-height: 1.3;
}

.search-results-price {
    font-size: var(--text-sm);
    color: var(--color-text);
}

@media (max-width: 1024px) {
    .search-results-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .search-results-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================================================
   PAGE BOUTIQUE
================================================== */

.shop-section {
    margin-bottom: var(--space-2xl);
}

/* Bannière catégorie */

.shop-section-banner {
    width: min(350px, 100%);
    margin-inline: auto;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.shop-section-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Titre de catégorie */

.shop-section-header,
.giftcard-hero {
    padding: var(--space-md) var(--space-xl) var(--space-lg);
    text-align: center;
}

.shop-section-title {
    margin: 0;
    font-size: var(--h2);
    font-weight: var(--font-semibold);
    letter-spacing: 0.04em;
    color: var(--color-text);
}

/* Grille 4×n — full width */

.shop-section-grid {
    padding-inline: var(--space-xl);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

/* Carte produit */

.shop-product-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--color-text);
    position: relative;
    isolation: isolate;
}

.shop-product-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.shop-product-wrap {
    position: relative;
}

.shop-product-image {
    position: relative;
    width: 100%;
}

.shop-product-wishlist {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}

.shop-product-wishlist .wishsuite-button,
.shop-product-wishlist button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
    padding: 0;
}

.shop-product-wishlist svg {
    overflow: visible;
    width: 16px;
    height: 16px;
}

.shop-product-wishlist svg path.heart {
    fill: transparent;
    stroke: var(--color-taupe);
    stroke-width: 20px;
    transition: stroke 0.2s ease;
}

.shop-product-wishlist:hover  svg path.heart {
    stroke: var(--color-primary);
    }

.shop-product-image {
    margin-inline: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.04);
}

/* Infos produit */

.shop-product-info {
    width: 80%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-product-name-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.shop-product-name {
    flex: 1;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    line-height: 1.35;
}

.shop-product-price {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-text);
}

.shop-product-price .woocommerce-Price-amount {
    color: inherit;
}

.shop-product-cat {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Bouton Voir tout */

.shop-section-footer {
    width: min(100%, var(--container-width, 1280px));
    margin-inline: auto;
    padding: var(--space-xl) var(--space-xl) 0;
    display: flex;
    justify-content: center;
}

/* Variante sombre du hero-btn (fond clair) */

.shop-voir-tout {
    color: var(--color-text);
}

.shop-voir-tout::before {
    background: currentColor;
}

.shop-voir-tout:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Responsive */

@media (max-width: 768px) {
    .shop-section-header {
        padding-block: var(--space-md);
    }
}

@media (max-width: 1024px) {
    .shop-section-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .shop-section-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        padding-inline: 16px;
    }
}

@media (max-width: 480px) {
    .shop-section-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        padding-inline: 16px;
    }

    .shop-section-header {
        padding-inline: 16px;
    }

    .shop-section-footer {
        padding-inline: 16px;
    }
}

/* ==================================================
   PAGE CATÉGORIE
================================================== */

/* ==================================================
   CATALOGUE — FILTRES
================================================== */

.cat-filters {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-md);
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
}

.cat-filters-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 24px;
    width: min(100%, var(--container-width, 1280px));
    margin-inline: auto;
}

.cat-sort-group {
    margin-left: auto;
}

.cat-sort-select {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 5px 32px 5px 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23857a6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    outline: none;
    transition: border-color 0.2s ease;
}

.cat-sort-select:hover {
    border-color: var(--color-primary);
}

.cat-filter-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cat-filter-label {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-text);
    white-space: nowrap;
}

.cat-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cat-filter-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.cat-filter-chip:hover {
    border-color: var(--color-text);
}

.cat-filter-chip input {
    display: none;
}

.cat-filter-chip:has(input:checked) {
    background: var(--color-text);
    color: var(--color-white);
    border-color: var(--color-text);
}

/* Slider prix */

.cat-price-slider {
    position: relative;
    width: 160px;
    height: 20px;
}

.cat-price-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-border);
    border-radius: 2px;
}

.cat-price-range-fill {
    position: absolute;
    top: 0;
    height: 100%;
    background: var(--color-text);
    border-radius: 2px;
}

.cat-price-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.cat-price-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-text);
    cursor: pointer;
    pointer-events: all;
    border: 2px solid var(--color-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cat-price-input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-text);
    cursor: pointer;
    pointer-events: all;
    border: 2px solid var(--color-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cat-price-values {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: var(--color-text);
    white-space: nowrap;
}

/* Reset */

.cat-filter-reset {
    background: none;
    border: none;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.cat-filter-reset:hover {
    color: var(--color-text);
}

/* Grid en cours de filtrage */

.cat-section-grid.is-filtering {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.2s;
}

@media (max-width: 768px) {
    .cat-filters {
        flex-direction: column;
        align-items: flex-start;
    }

    .cat-filter-reset {
        margin-left: 0;
    }

    .cat-sort-group {
        margin-left: 0;
    }

    .cat-price-slider {
        width: 140px;
    }
}

/* ── Description catégorie avec fade ── */

.cat-description {
    position: relative;
    margin: var(--space-lg) auto 0;
    width: min(100%, var(--container-width, 1280px));
    padding-inline: 24px;
}

.cat-description-inner {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.cat-description-inner p { margin: 0; }

.cat-description-toggle {
    display: inline-block;
    margin-top: var(--space-xs);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cat-description--expanded .cat-description-toggle {
    display: none;
}

.cat-section-description-wrap {
    width: min(100%, var(--container-width, 1280px));
    margin-inline: auto;
    padding: var(--space-lg) 24px 0;
}

.cat-section-description {
    margin: 0;
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.cat-section-sentinel {
    height: 1px;
    margin-top: var(--space-lg);
}

.cat-section-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: var(--space-lg) 0;
}

.cat-loader-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-text-muted);
    animation: cat-dot-bounce 1.2s infinite ease-in-out both;
}

.cat-loader-dot:nth-child(1) { animation-delay: -0.32s; }
.cat-loader-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes cat-dot-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%           { transform: scale(1);   opacity: 1; }
}

/* ==================================================
   PAGE PANIER
================================================== */

.cart-page {
    width: min(100%, var(--container-width));
    margin-inline: auto;
    padding: var(--space-lg) 24px var(--space-xl);
}

/* En-tête */

.cart-page-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.cart-page-title {
    margin: 0;
    font-size: var(--h2);
    font-weight: var(--font-semibold);
    color: var(--color-text);
}

.cart-page-count {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-weight: var(--font-regular);
}

/* Layout 2 colonnes */

.cart-page-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-lg);
    align-items: start;
}

/* ── Articles ── */

.cart-page-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cart-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
}

/* Carte article */

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.cart-item:first-child {
    padding-top: 0;
}

.cart-item-image {
    flex-shrink: 0;
}

.cart-item-image a {
    display: block;
}

.cart-item-image img {
    width: 110px;
    height: 140px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

/* Corps article */

.cart-item-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.cart-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cart-item-name {
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    line-height: 1.4;
}

.cart-item-name a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-item-name a:hover {
    color: var(--color-primary);
}

.cart-item-remove {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.cart-item-remove:hover {
    color: var(--color-text);
    transform: rotate(90deg);
}

.cart-item-remove svg {
    width: 16px;
    height: 16px;
    display: block;
}

.cart-item-meta {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-weight: var(--font-regular);
}

/* Bas article : quantité + prix */

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
}

/* Stepper quantité */

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    overflow: hidden;
}

.qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    color: var(--color-text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.qty-btn:hover {
    color: var(--color-primary);
}

.qty-input {
    width: 42px;
    height: 100%;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    background: transparent;
    text-align: center;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-text);

    /* masquer les flèches natives */
    -moz-appearance: textfield;
    appearance: textfield;
}

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

.qty-input:focus {
    outline: none;
}

/* Prix article */

.cart-item-price {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-text);
    white-space: nowrap;
}

/* Footer formulaire */

.cart-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: var(--space-md);
}

.cart-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cart-continue-link:hover {
    color: var(--color-primary);
}

.cart-continue-link svg {
    width: 16px;
    height: 16px;
    display: block;
}

.cart-update-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: transparent;
    color: var(--color-text);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.cart-update-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ── Récapitulatif ── */

.cart-page-summary {
    position: sticky;
    top: calc(var(--header-height, 160px) + 24px);
}

.cart-summary-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-white, #f9f7f5);
    border-radius: var(--radius-lg);
}

.cart-summary-title {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-text);
}

/* Lignes récap */

.cart-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.cart-summary-line--muted {
    color: var(--color-text-muted);
    font-style: italic;
}

.cart-summary-line--coupon {
    font-size: var(--text-sm);
}

.cart-summary-line--tax {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.cart-coupon-remove {
    margin-left: 6px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.cart-coupon-remove:hover {
    color: var(--color-text);
}

.cart-discount {
    color: #2e7d32;
    font-weight: var(--font-medium);
}

.cart-free {
    color: #2e7d32;
    font-weight: var(--font-medium);
}

/* Coupon accordion */

.cart-coupon-wrap {
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-sm);
}

.cart-coupon-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.cart-coupon-toggle:hover {
    color: var(--color-primary);
}

.cart-coupon-toggle svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.coupon-toggle-arrow {
    margin-left: auto;
    transition: transform 0.25s ease;
}

.cart-coupon-toggle[aria-expanded="true"] .coupon-toggle-arrow {
    transform: rotate(180deg);
}

.cart-coupon-form {
    display: none;
    padding-top: 12px;
}

.cart-coupon-form.is-open {
    display: block;
}

.cart-coupon-fields {
    display: flex;
    gap: 8px;
}

.cart-coupon-input {
    flex: 1;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    font-size: var(--text-sm);
    color: var(--color-text);
    transition: border-color 0.2s ease;
}

.cart-coupon-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.cart-coupon-btn {
    height: 42px;
    padding: 0 16px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--color-accent);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.cart-coupon-btn:hover {
    opacity: 0.85;
}

/* Total */

.cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-text);
}

/* Bouton commander */

.cart-checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-checkout-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Réassurance */

.cart-reassurance {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.cart-reassurance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.cart-reassurance-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-primary);
}

/* ── Panier vide ── */

.cart-page--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: var(--space-xl) 24px;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
    max-width: 400px;
}

.cart-empty-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    opacity: 0.5;
}

.cart-empty-icon svg {
    width: 64px;
    height: 64px;
}

.cart-empty-title {
    margin: 0;
    font-size: var(--h3);
    font-weight: var(--font-semibold);
    color: var(--color-text);
}

.cart-empty-text {
    margin: 0;
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.cart-empty-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-decoration: none;
    margin-top: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-empty-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ── Responsive ── */

@media (max-width: 1024px) {
    .cart-page-layout {
        grid-template-columns: 1fr 340px;
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .cart-page {
        padding-inline: 16px;
        padding-top: var(--space-md);
    }

    .cart-page-layout {
        grid-template-columns: 1fr;
    }

    .cart-page-summary {
        position: static;
        order: -1;
    }

    .cart-item {
        grid-template-columns: 90px 1fr;
        gap: var(--space-sm);
    }

    .cart-item-image img {
        width: 90px;
        height: 115px;
    }

    .cart-form-footer {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .cart-update-btn {
        width: 100%;
    }

    .cart-continue-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cart-item-bottom {
        flex-wrap: wrap;
    }

    .cart-item-price {
        margin-left: auto;
    }
}

/* ==================================================
   PAGE CONTACT — [piflette_contact]
================================================== */

.contact-page {
    width: 100%;
}

/* ── Hero ── */

.contact-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
    gap: var(--space-xs);
}

.contact-hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.contact-hero-title {
    margin: 0;
    font-size: var(--h1);
    font-weight: var(--font-light);
    color: var(--color-text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: right;

}

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

    .contact-hero-img {
        height: 260px;
        order: -1;
    }
}

/* ── Adresse ── */

.contact-address-wrap {
    display: flex;
    justify-content: center;
    padding-block: var(--space-xl) var(--space-lg);
}

.contact-address {
    margin: 0;
    font-size: var(--h3);
    color: var(--color-text);
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

/* ── Première image ── */

.contact-top-image-wrap {
    padding-bottom: var(--space-lg);
}

.contact-top-img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* ── Container bottom : img | centre | img ── */

.contact-bottom {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: stretch;
    gap: var(--space-lg);
    padding-bottom: var(--space-2xl);
}

/* Images latérales */

.contact-bottom-side {
    display: flex;
    flex-direction: column;
}

.contact-bottom-side--left {
    justify-content: flex-start; /* ancrée en haut */
}

.contact-bottom-side--right {
    justify-content: flex-end; /* ancrée en bas */
}

.contact-side-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: clamp(260px, 35vw, 420px);
    object-fit: cover;
    object-position: center;
}

/* Colonne centrale */

.contact-bottom-center {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
}

.contact-info-text {
    margin: 0;
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.7;
}

.contact-info-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-base);
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-line:hover {
    color: var(--color-primary);
}

.contact-info-line svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* ── Formulaire ── */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-group label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-text);
    letter-spacing: 0.03em;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    font-size: var(--text-base);
    color: var(--color-text);
    font-family: inherit;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 36px;
    border: none;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-form-submit:hover:not(:disabled) {
    opacity: 0.88;
    transform: translateY(-1px);
}

.contact-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form-feedback {
    font-size: var(--text-sm);
}

.contact-form-feedback.is-success { color: #4a7c59; }
.contact-form-feedback.is-error   { color: #b94a48; }

/* ── Responsive ── */

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

@media (max-width: 768px) {
    .contact-bottom {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-bottom-side--left {
        display: none; /* cache image gauche sur mobile */
    }

    .contact-bottom-side--right {
        justify-content: flex-start;
    }

    .contact-top-image-wrap,
    .contact-bottom {
        padding-inline: var(--space-md);
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   SINGLE PRODUCT — [piflette_single_product]
================================================== */

.sp-wrap {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: var(--space-xl);
    align-items: start;
    padding-block: var(--space-xl);
}

/* ── Galerie ── */

.sp-gallery {
    display: flex;
    flex-direction: row;
    gap: var(--space-xs);
    position: sticky;
    top: calc(var(--space-lg) + 84px);
}

.sp-main-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    background: var(--color-white);
}

.sp-main-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: opacity 0.2s ease;
}

/* Miniatures — colonne verticale à droite */

.sp-thumbs {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    overflow-y: auto;
}

.sp-thumb {
    flex-shrink: 0;
    width: clamp(56px, 6vw, 72px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.2s ease;
}

.sp-thumb.is-active,
.sp-thumb:hover {
    border-color: var(--color-primary);
}

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

/* ── Infos produit ── */

.sp-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-sm);
}

.sp-category {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.sp-title {
    margin: 0;
    font-size: var(--h2);
    font-weight: var(--font-light);
    color: var(--color-text);
    line-height: 1.2;
}

.sp-price {
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    color: var(--color-text);
}

.sp-short-desc {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.sp-short-desc p { margin: 0; background: transparent!important;}

/* ── Wishlist ── */

.sp-title-wrap {
    display: flex;
    align-items: flex-start;
}


.sp-wishlist {
    margin-top: -5px;
    margin-left: -5px;
}

/* ── Variations (Taille, Couleur…) ── */

.sp-form .variations {
    border: none;
    width: 100%;
    margin-bottom: var(--space-sm);
    display: block;
}

.sp-form .variations tbody,
.sp-form .variations tr {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px;
    text-align: left;
}

.sp-form .variations td,
.sp-form .variations th {
    padding: 0 !important;
    border: none;
    display: block !important;
}

.sp-form .variations .label {
    white-space: nowrap;
}

.sp-form .variations .label label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-text);
    letter-spacing: 0.03em;
}

.sp-form .variations select {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 100%;
    padding: 10px 36px 10px 14px;
    border: 1px solid var(--color-border) !important;
    border-radius: 0 !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23716956' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    font-family: var(--font-primary) !important;
    font-size: var(--text-sm) !important;
    color: var(--color-text) !important;
    cursor: pointer;
    box-shadow: none !important;
}

.sp-form .reset_variations {
    display: inline-block;
    margin-top: 6px;
    font-size: var(--text-xs);
    color: var(--color-text-muted) !important;
    text-decoration: underline;
}

/* ── Stock ── */

.sp-form .stock {
    font-size: var(--text-xs) !important;
    font-weight: var(--font-medium) !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
}

.sp-form .in-stock  { color: #4a7c59 !important; }
.sp-form .out-of-stock { color: #b94a48 !important; }

/* ── Quantité + Add to cart inline ── */

.sp-form .cart,
.sp-form .woocommerce-variation-add-to-cart {
    display: flex !important;
    align-items: center !important;
    gap: var(--space-sm) !important;
    flex-wrap: wrap;
    padding: 0 !important;
    margin: 0 !important;
}

.sp-form .quantity {
    display: flex !important;
    align-items: center !important;
    gap: 0;
}

/* Boutons stepper chevrons (Bricks Builder) */

.sp-form .bde-quantity-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 44px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    color: var(--color-text) !important;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.sp-form .bde-quantity-button:hover {
    opacity: 1;
}

/* Masquer le texte natif des boutons */
.sp-form .bde-quantity-button {
    font-size: 0 !important;
}

/* Chevron < */
.sp-form .bde-quantity-button--dec::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateX(2px);
}

/* Chevron > */
.sp-form .bde-quantity-button--inc::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-top: 1.5px solid currentColor;
    transform: rotate(45deg) translateX(-2px);
}

.sp-form .qty {
    width: 52px !important;
    height: 50px !important;
    text-align: center !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: var(--text-base) !important;
    font-family: var(--font-primary) !important;
    color: var(--color-text) !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    padding: 0 !important;
}

.sp-form .qty::-webkit-inner-spin-button,
.sp-form .qty::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
}

/* ── Bouton add to cart — hero-btn inversé ── */

.sp-form .single_add_to_cart_button,
.sp-form .single_add_to_cart_button.button,
.sp-form .single_add_to_cart_button.alt {
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 16px 28px !important;
    font-family: var(--font-primary) !important;
    font-size: 0.8rem !important;
    font-weight: var(--font-medium) !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    color: var(--color-taupe) !important;
    background: transparent !important;
    transition: background 0.35s ease, color 0.35s ease !important;
}

.sp-form .single_add_to_cart_button::before {
    content: '' !important;
    display: block !important;
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 1px !important;
    background: currentColor !important;
    transition: width 0.35s ease !important;
}

.sp-form .single_add_to_cart_button:hover,
.sp-form .single_add_to_cart_button.button:hover {
    background-color: var(--color-primary)!important;
    color: var(--color-white) !important;
}

.sp-form .single_add_to_cart_button:hover::before {
    width: 36px !important;
    background-color: var(--color-white)!important;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .sp-wrap {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .sp-gallery {
        position: static;
    }
}

/* ==============================================
   GIFT CARD — #cwgc_form
   ============================================== */
.giftcard-section {
    margin-bottom: var(--space-2xl);
}


.giftcard-shortcode {    width: 100%;}


#cwgc_form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);

}

.cwgc_form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cwgc_form-group label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-text);
}

.cwgc_form-group label span {
    color: var(--color-primary);
}

/* Inputs & textarea */

#cwgc_form .input-text {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    font-size: var(--text-sm);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

#cwgc_form .input-text:focus {
    border-color: var(--color-primary);
}

#cwgc_form textarea.input-text {
    resize: vertical;
    min-height: 100px;
}

/* Radio group */

.cwgc_form-group.radios {
    flex-direction: row;
    gap: var(--space-md);
    align-items: center;
}

.cwgc_form-group.radios span {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cwgc_form-group.radios label {
    font-size: var(--text-sm);
    font-weight: var(--font-regular);
    cursor: pointer;
    margin: 0;
}

/* Radios gift card — hérite du style global (reset.css) */

/* Submit button — même style que ATC single product */

#cwgc_form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    width: 280px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    color: var(--color-taupe);
    background: transparent;
    transition: background 0.35s ease, color 0.35s ease;
}

#cwgc_form button[type="submit"]::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: width 0.35s ease;
}

#cwgc_form button[type="submit"]:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

#cwgc_form button[type="submit"]:hover::before {
    width: 36px;
    background: var(--color-white);
}

/* Loading spinner */

.lds-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: var(--space-sm) 0;
}

.lds-ellipsis div {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: lds-ellipsis 1.2s infinite;
}

.lds-ellipsis div:nth-child(1) { animation-delay: 0s; }
.lds-ellipsis div:nth-child(2) { animation-delay: 0.2s; }
.lds-ellipsis div:nth-child(3) { animation-delay: 0.4s; }
.lds-ellipsis div:nth-child(4) { animation-delay: 0.6s; }

@keyframes lds-ellipsis {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%            { transform: scale(1);   opacity: 1; }
}

/* Return message */

#cwgc_return_message {
    font-size: var(--text-sm);
    color: var(--color-text);
    text-align: center;
}

#cwgc_return_button {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    background: transparent;
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    font-family: inherit;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

#cwgc_return_button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ==================================================
   PAGE FAQ
================================================== */

.faq-page {
    padding: var(--space-xl) 0;
}

.faq-page-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: var(--font-light);
    letter-spacing: 0.04em;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border, #e5e1dc);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border, #e5e1dc);
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--color-text);
    transition: color 0.2s;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
    color: var(--color-primary);
}

.faq-item-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-item-icon::before,
.faq-item-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item-icon::before {
    width: 100%;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-item-icon::after {
    width: 1.5px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item[open] .faq-item-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item-answer {
    padding-bottom: 20px;
    font-size: var(--text-sm);
    line-height: 1.75;
    color: var(--color-text);
}

.faq-item-answer p { margin: 0 0 10px; }
.faq-item-answer p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .faq-item summary { font-size: var(--text-sm); padding: 16px 0; }
}

/* ==================================================
   PAGE À PROPOS
================================================== */

/* Hero */

.about-hero {
    padding: var(--space-xl) 0;
    overflow: hidden;
    position: relative;
    z-index: 11;
}

.about-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

.about-hero-text {
    flex: 1;
}

.about-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: var(--font-light);
    letter-spacing: 0.04em;
    color: var(--color-text);
    line-height: 1.1;
}

.about-hero-img-wrap {
    flex-shrink: 0;
    width: 400px;
    position: relative;
}

.about-hero-img-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

/* Section grid 3 colonnes */

.about-section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow-x: clip;
}

.about-grid {
    display: grid;
    grid-template-columns: .75fr 2fr .75fr;
    gap: 60px;
    align-items: end;
    position: relative;
}

/* Trait horizontal depuis début col 2 jusqu'à right:0 du viewport — en bas de la grille */
.about-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: calc(-24px - max(0px, (100vw - var(--container-width, 1280px)) / 2));
    width: calc(75% + 24px + max(0px, (100vw - var(--container-width, 1280px)) / 2));
    height: 1px;
    background: var(--color-border, #e5e1dc);
}

/* Colonne 1 — image boutique (full bleed gauche) */

.about-col-image {
    position: relative;
    z-index: 1;
    align-self: stretch;
    margin-left: calc(-24px - max(0px, (100vw - var(--container-width, 1280px)) / 2));
}

.about-col-image img {
    width: 100%;
    max-height: 556px;
    object-fit: cover;
    display: block;
}

/* Colonne 2 — texte */

.about-col-text {
    position: relative;
    z-index: 1;
}

.about-col-text-content {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text);
    text-align: justify;
    padding: 0 0 var(--space-sm);
}

.about-col-text-content p { margin: 0 0 1.2em; }
.about-col-text-content p:last-child { margin-bottom: 0; }

/* Colonne 3 — bio (full bleed droite) */

.about-col-bio {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Étend la colonne jusqu'au bord droit du viewport */
    margin-right: calc(-24px - max(0px, (100vw - var(--container-width, 1280px)) / 2));
}

/* Demi-cercle primary qui embrasse l'image par le bas */
.about-col-bio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    aspect-ratio: 1;
    background: var(--color-primary);
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

.about-bio-img {
    position: relative;
    z-index: 1;
    width: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Responsive */

@media (max-width: 1024px) {
    .about-hero-img-wrap { width: 375px; }
    .about-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-col-image { display: none; }
    .about-grid { grid-template-columns: 2fr 1fr; }
    .about-col-bio { margin-right: calc(-24px - max(0px, (100vw - var(--container-width, 1280px)) / 2)); }
    .about-grid::before { width: calc(66.666% + 24px + max(0px, (100vw - var(--container-width, 1280px)) / 2)); }
}

@media (max-width: 640px) {
    .about-hero-inner { flex-direction: column; gap: 32px; }
    .about-hero-img-wrap { width: 100%; }
    .about-grid { grid-template-columns: 1fr; }
    .about-col-bio { margin-right: 0; }
    .about-col-bio::after { width: 80%; }
    .about-grid::before { display: none; }
}

.about-btn-wrap {
    margin-top: var(--space-lg);
    display: flex;
    justify-content: center;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-taupe);
    background: transparent;
    border: none;
    transition: background 0.35s ease, color 0.35s ease;
}

.about-btn::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: width 0.35s ease;
}

.about-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.about-btn:hover::before {
    width: 36px;
    background-color: var(--color-white);
}

/* ==================================================
   GUIDES
================================================== */

.guides-section {
    padding: var(--space-xl) 0;
}

/* Hero guide mis en avant */

.guide-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-decoration: none;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.guide-hero-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.guide-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-hero:hover .guide-hero-image img {
    transform: scale(1.04);
}

.guide-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--color-bg-alt, #f8f6f4);
}

.guide-hero-title {
    font-family: var(--font-secondary);
    font-size: var(--h2);
    font-weight: var(--font-light);
    line-height: 1.2;
    margin: 0;
}

.guide-hero-excerpt {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Catégorie */

.guide-cat {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-taupe);
}

/* CTA */

.guide-cta {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.guide-hero:hover .guide-cta,
.guide-card:hover .guide-cta {
    opacity: 0.7;
}

/* Grille de cards */

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.guide-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.guide-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-alt, #f8f6f4);
}

.guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guide-card:hover .guide-card-image img {
    transform: scale(1.04);
}

.guide-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-bg-alt, #f8f6f4);
}

.guide-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: var(--space-md);
    flex: 1;
}

.guide-card-title {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    line-height: 1.3;
    margin: 0;
}

.guide-card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.guides-empty {
    text-align: center;
    color: var(--color-text-muted);
    padding: var(--space-xl);
}

@media (max-width: 1024px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-hero {
        grid-template-columns: 1fr;
    }

    .guide-hero-image {
        aspect-ratio: 3 / 2;
    }

    .guide-hero-content {
        padding: var(--space-lg);
    }
}

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

/* ==================================================
   PAGE LIVRAISON — TABLE
================================================== */

.table-livraison table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-base);
}

.table-livraison th,
.table-livraison td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border: 1px solid var(--color-border);
}

.table-livraison thead th {
    background: var(--color-bg);
    font-weight: var(--font-semibold);
    letter-spacing: 0.04em;
}

.table-livraison tbody tr:nth-child(even) td {
    background: var(--color-bg);
}

@media (max-width: 640px) {
    .table-livraison th,
    .table-livraison td {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--text-sm);
    }
}
