/*
Theme Name: DN COM
Theme URI: https://dn-com.fr
Author: DN COM
Author URI: https://dn-com.fr
Description: Thème WordPress personnalisé pour DN COM - Communication visuelle, personnalisation textile, objets publicitaires et affichage publicitaire. Compatible WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dncom
Tags: e-commerce, woocommerce, custom-menu, custom-logo, featured-images, full-width-template

DN COM - Votre partenaire pour la personnalisation textile et affichage publicitaire
*/

/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --primary-dark: #1a1a1a;
    --secondary-color: #4a4a4a;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-color: #333333;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-img,
.navbar .custom-logo,
.navbar .nav-brand img {
    height: 40px !important;
    width: auto !important;
    max-height: 40px !important;
    max-width: 200px !important;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding: 1rem 1.25rem;
    display: block;
    font-size: 0.95rem;
}

.nav-menu > li > a:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
}

.nav-menu > li > a.active,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-menu > li > a.active::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current-menu-ancestor > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(1);
}

.menu-item-account a,
.menu-item-cart a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.menu-item-account a svg {
    vertical-align: middle;
}

.menu-item-account a:hover {
    color: var(--primary-color);
}

/* Dropdown Navigation */
.nav-item-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
    margin-left: 0.25rem;
}

.nav-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-top: 2px solid var(--primary-color);
    padding: 2.5rem 0;
    min-height: 350px;
    box-sizing: border-box;
    pointer-events: none;
    overflow: hidden;
    margin-top: 0;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    box-sizing: border-box;
    width: 100%;
    align-items: start;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mega-menu-column h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    line-height: 1.5;
    position: relative;
    padding-left: 0;
}

.mega-menu-link:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
    transform: translateX(4px);
}

.mega-menu-link::before {
    content: '\2192';
    position: absolute;
    left: -1rem;
    opacity: 0;
    transition: all 0.2s ease;
    color: var(--primary-color);
}

.mega-menu-link:hover::before {
    opacity: 1;
    left: -0.5rem;
}

/* Menu déroulant Clubs (compact) */
.nav-clubs {
    position: relative;
}

.clubs-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    background: var(--bg-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--primary-color);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.nav-clubs:hover .clubs-dropdown,
.nav-clubs.active .clubs-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.clubs-dropdown li {
    margin: 0;
}

.clubs-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.clubs-dropdown a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
    padding-left: 1.5rem;
}

.club-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Texte réservé aux lecteurs d'écran (masqué visuellement) */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    position: absolute;
    word-wrap: normal !important;
}

/* =========================================================
 * UNIVERS CLUBS — police display + hero immersif + cartes
 * ========================================================= */
@font-face {
    font-family: 'Anton';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/anton-latin.woff2') format('woff2');
}

/* ---- Hero immersif d'un club ---- */
.club-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 88px 20px 78px;
    text-align: center;
    color: var(--ct);
    background:
        radial-gradient(130% 120% at 82% -20%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(152deg, var(--c) 0%, var(--cd) 100%);
}

/* grain / texture */
.club-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.10;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.club-hero-fx {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* anneaux décoratifs (ambiance arène) */
.club-hero-fx::before {
    content: '';
    position: absolute;
    left: -120px;
    top: 50%;
    width: 460px;
    height: 460px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 46px rgba(255, 255, 255, 0.05),
        0 0 0 96px rgba(255, 255, 255, 0.03);
    opacity: 0;
    animation: clubRingsIn 1.1s ease 0.1s forwards;
}

.club-hero-watermark {
    position: absolute;
    right: -60px;
    top: 50%;
    width: min(540px, 58%);
    transform: translateY(-50%);
    opacity: 0;
    filter: brightness(0) invert(1);
    pointer-events: none;
    animation: clubWatermarkIn 1.2s ease 0.15s forwards;
}

.club-hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.club-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 22px;
    padding: 22px 30px;
    box-shadow:
        0 34px 64px -24px rgba(0, 0, 0, 0.6),
        0 0 0 6px rgba(255, 255, 255, 0.14);
    opacity: 0;
    animation: clubBadgeIn 0.8s cubic-bezier(0.2, 0.85, 0.25, 1) 0.05s forwards;
}

.club-hero-badge img {
    display: block;
    width: auto;
    height: auto;
    max-height: 122px;
    max-width: 300px;
}

.club-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.club-hero-kicker {
    margin: 0;
    font-family: 'Anton', system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.85rem;
    opacity: 0;
    animation: clubUp 0.75s ease 0.3s forwards;
}

.club-hero-section,
.club-hero-title {
    margin: 0;
    font-family: 'Anton', system-ui, sans-serif;
    text-transform: uppercase;
    line-height: 1;
    opacity: 0;
    animation: clubUp 0.75s ease 0.42s forwards;
}

.club-hero-section {
    font-size: 2.4rem;
    letter-spacing: 2px;
}

.club-hero-title {
    font-size: 3.2rem;
    letter-spacing: 1px;
}

@keyframes clubUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}

@keyframes clubBadgeIn {
    from { opacity: 0; transform: translateY(26px) scale(0.9); }
    to   { opacity: 1; transform: none; }
}

@keyframes clubRingsIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes clubWatermarkIn {
    from { opacity: 0; }
    to   { opacity: 0.07; }
}

/* Club à couleur claire (ex. ÉSPE) : les décorations blanches disparaissent sur
   un fond lumineux, on les repasse en sombre pour conserver l'ambiance. */
.club-hero--light .club-hero-watermark {
    filter: brightness(0);
}
.club-hero--light.club-hero,
.club-hero--light {
    background:
        radial-gradient(130% 120% at 82% -20%, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0) 55%),
        linear-gradient(152deg, var(--c) 0%, var(--cd) 100%);
}
.club-hero--light::after {
    mix-blend-mode: multiply;
    opacity: 0.06;
}
.club-hero--light .club-hero-fx::before {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow:
        0 0 0 46px rgba(0, 0, 0, 0.05),
        0 0 0 96px rgba(0, 0, 0, 0.03);
}

@media (prefers-reduced-motion: reduce) {
    .club-hero-fx::before,
    .club-hero-badge,
    .club-hero-kicker,
    .club-hero-section,
    .club-hero-title,
    .club-universe-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .club-hero-watermark {
        animation: none !important;
        opacity: 0.07 !important;
    }
}

/* Grille « Choisis ton univers » (page /clubs/) */
.clubs-chooser {
    padding: 60px 0 80px;
}

.clubs-chooser-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.clubs-chooser-head h1 {
    font-family: 'Anton', system-ui, sans-serif;
    font-size: 3.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.clubs-chooser-head p {
    color: var(--text-light);
    font-size: 1.15rem;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
}

.club-universe-card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    min-height: 360px;
    padding: 2.75rem 1.5rem;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(120% 100% at 80% -10%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(150deg, var(--c) 0%, var(--cd) 100%);
    color: var(--ct);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
    opacity: 0;
    animation: clubUp 0.7s ease forwards;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

/* filigrane du logo dans le coin */
.club-universe-card::after {
    content: '';
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 210px;
    height: 210px;
    z-index: -1;
    background: var(--logo, none) no-repeat right bottom / contain;
    filter: brightness(0) invert(1);
    opacity: 0.08;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.club-universe-card:nth-child(1) { animation-delay: 0.05s; }
.club-universe-card:nth-child(2) { animation-delay: 0.15s; }
.club-universe-card:nth-child(3) { animation-delay: 0.25s; }
.club-universe-card:nth-child(4) { animation-delay: 0.35s; }
.club-universe-card:nth-child(5) { animation-delay: 0.45s; }

.club-universe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
}

.club-universe-card:hover::after {
    transform: scale(1.08) rotate(-4deg);
    opacity: 0.13;
}

.club-universe-media {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.club-universe-badge {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.club-universe-badge img {
    display: block;
    width: auto;
    height: auto;
    max-height: 120px;
    max-width: 220px;
}

.club-universe-badge {
    box-shadow:
        0 20px 40px -16px rgba(0, 0, 0, 0.5),
        0 0 0 5px rgba(255, 255, 255, 0.14);
}

.club-universe-name {
    font-family: 'Anton', system-ui, sans-serif;
    font-size: 2.4rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    color: var(--ct);
}

.club-universe-cta {
    font-family: 'Anton', system-ui, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ct);
    padding: 9px 20px;
    border: 2px solid currentColor;
    border-radius: 999px;
    opacity: 0.95;
    transition: background 0.2s ease, color 0.2s ease;
}

.club-universe-card:hover .club-universe-cta {
    background: var(--ct);
    color: var(--c);
}

@media (max-width: 600px) {
    .clubs-chooser-head h1 {
        font-size: 2rem;
    }

    .club-universe-card {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .club-hero {
        padding: 58px 20px 52px;
    }

    .club-hero-badge {
        padding: 16px 22px;
    }

    .club-hero-badge img {
        max-height: 88px;
        max-width: 220px;
    }

    .club-hero-section {
        font-size: 1.9rem;
    }

    .club-hero-title {
        font-size: 2.3rem;
    }

    .club-hero-watermark {
        width: 72%;
    }

    .club-universe-name {
        font-size: 2rem;
    }
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 3px;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.badge-top {
    background: #000000;
    color: white;
    border: 1px solid #000000;
}

.badge-new {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.02) 10px,
        rgba(255, 255, 255, 0.02) 20px
    );
    pointer-events: none;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-club-cta {
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    background: rgba(10, 61, 10, 0.06);
    border-left: 4px solid #0a3d0a;
    border-radius: 0 8px 8px 0;
}

.about-club-cta .about-club-intro {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark) !important;
    margin-bottom: 0.5rem !important;
}

.about-club-cta p:last-child {
    margin-bottom: 0 !important;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover .service-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-link {
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta .btn-primary:hover {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

/* Contact / Quote Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

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

.contact-info {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.cookie-banner-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept-cookies,
.btn-refuse-cookies,
.btn-cookie-info {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-accept-cookies {
    background: var(--primary-color);
    color: white;
}

.btn-accept-cookies:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-refuse-cookies {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-refuse-cookies:hover {
    background: var(--border-color);
}

.btn-cookie-info {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Section subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

/* Shops Section */
.shops-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.shop-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    text-decoration: none;
    color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.shop-card--draftnight {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #2a2a2a 100%);
}

.shop-card--clubs {
    background: linear-gradient(135deg, #0a3d0a 0%, #1a5c1a 50%, #0d470d 100%);
}

.shop-card-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.shop-card:hover .shop-card-overlay {
    opacity: 0.5;
}

.shop-card-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.shop-card-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    width: fit-content;
}

.shop-card-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.shop-card-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 400px;
}

.shop-card-cta {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: fit-content;
}

.shop-card:hover .shop-card-cta {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.shop-card--clubs:hover .shop-card-cta {
    color: #0a3d0a;
}

/* Clubs Partners Logos */
.clubs-partners {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.clubs-partners h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.clubs-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.club-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
}

.club-logo:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.club-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    padding: 0.25rem;
    line-height: 1.2;
}

/* Draft Night hero */
.draftnight-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

/* Clubs hero — cohabitation de 2 couleurs (blocs nets, pas un dégradé).
   Couleur 1 = scène centrale (le texte vit dessus, donc lisible) ; couleur 2 =
   pans diagonaux ancrés dans deux coins opposés. Piloté par --c1/--c2 injectés
   par dncom_club_color_styles(). */
.category-hero.clubs-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(120% 110% at 14% 8%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 55%),
        var(--c1, var(--primary-color));
}

/* Pan couleur 2 — coin haut-droit */
.clubs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: var(--c2, var(--primary-dark));
    clip-path: polygon(46% 0, 100% 0, 100% 66%);
    filter: drop-shadow(-3px 4px 6px rgba(0, 0, 0, 0.18));
}

/* Pan couleur 2 — coin bas-gauche (miroir) */
.clubs-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: var(--c2, var(--primary-dark));
    clip-path: polygon(0 34%, 0 100%, 54% 100%);
    filter: drop-shadow(3px -4px 6px rgba(0, 0, 0, 0.18));
}

/* couture d'accent : fine ligne à la rencontre des deux couleurs */
.clubs-hero .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    /* coins plus discrets sur mobile pour ne pas serrer le texte */
    .clubs-hero::before {
        clip-path: polygon(62% 0, 100% 0, 100% 42%);
    }
    .clubs-hero::after {
        clip-path: polygon(0 58%, 0 100%, 38% 100%);
    }
}

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

    .shop-card {
        min-height: 300px;
    }

    .shop-card-content h3 {
        font-size: 2rem;
    }

    .shop-card-content {
        padding: 2rem;
    }

    .clubs-logos {
        gap: 1rem;
    }

    .club-logo {
        width: 60px;
        height: 60px;
    }
}

/* Club filter cards (on clubs archive page) */
.club-filter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    min-width: 120px;
}

.club-filter-card:hover {
    border-color: #1a5c1a;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.club-filter-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.club-filter-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.club-filter-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Category Pages */
.category-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.textile-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.objets-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.affichage-hero {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
}

.category-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Category Description */
.category-description {
    padding: 60px 0;
    background: var(--bg-white);
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.description-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 300px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 15px;
    background: var(--bg-white);
    transition: transform 0.3s ease;
}

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

/* Process Section (vitrine pages) */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-white);
    border-radius: 4px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-image .image-placeholder {
    font-size: 5rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-color) 100%);
}

.product-image .image-placeholder img {
    padding: 15px;
    background: var(--bg-white);
}

.product-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.product-link:hover {
    color: var(--primary-dark);
}

/* Product Single Page */
.product-page {
    padding: 40px 0 80px;
    background: var(--bg-white);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.color-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.color-swatch.active {
    border-color: var(--primary-color);
    border-width: 3px;
}

.size-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.size-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.size-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-cta {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-specs {
    padding: 80px 0;
    background: var(--bg-light);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.spec-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.spec-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.spec-item p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Product Detail Page - Additional Styles */
.product-price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e41e31;
}

.options-info {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.option-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.color-swatch-info {
    cursor: default !important;
}

.color-swatch-info:hover {
    transform: none !important;
    border-color: inherit !important;
}

.product-description h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-features-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.product-features-list li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.product-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.product-info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.product-info-items .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.product-info-items .info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.product-info-items .info-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.product-info-items .info-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.product-technique {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.technique-label {
    font-weight: 600;
    color: var(--text-dark);
}

.technique-value {
    color: var(--primary-color);
    font-weight: 500;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.image-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.image-nav.prev {
    left: 10px;
}

.image-nav.next {
    right: 10px;
}

/* Catalogue Page - Product Price */
.product-price-display {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e41e31;
    margin-bottom: 1rem;
}

/* Product Card as Link */
a.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.product-card-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

a.product-card-link .product-link {
    display: inline-block;
    margin-top: 0.5rem;
}

/* Responsive for product detail page */
@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .product-price-tag {
        font-size: 1.25rem;
    }
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background: var(--bg-light);
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-content strong {
    color: var(--text-dark);
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* WooCommerce base overrides are in assets/css/woocommerce.css */

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: left;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 1rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu > li > a {
        padding: 1rem 2rem;
        display: block;
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 0;
        background: var(--bg-light);
        display: none;
        width: 100%;
        pointer-events: auto;
    }

    .nav-item-dropdown.active .mega-menu {
        display: block;
    }

    /* Déroulant Clubs en version mobile */
    .clubs-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: var(--bg-light);
        padding: 0;
        width: 100%;
        display: none;
    }

    .nav-clubs.active .clubs-dropdown {
        display: block;
    }

    .clubs-dropdown a {
        padding: 0.85rem 3rem;
        border-bottom: 1px solid var(--border-color);
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .mega-menu-column {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .mega-menu-column:last-child {
        border-bottom: none;
    }

    .mega-menu-column h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .mega-menu-link {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }

    .dropdown-arrow {
        margin-left: auto;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-accept-cookies,
    .btn-refuse-cookies,
    .btn-cookie-info {
        flex: 1;
        min-width: 120px;
    }

    .category-hero h1 {
        font-size: 2rem;
    }

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

    .product-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .product-main-image {
        aspect-ratio: 4/3;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

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

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .woocommerce div.product div.images,
    .woocommerce div.product div.summary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 1.5rem;
    }
}

/* ============================================================
 * Vitrine catalogue 2026 (textile / objets personnalisés)
 * ============================================================ */
.product-category-group {
    margin-bottom: 3.5rem;
}

.product-category-group:last-child {
    margin-bottom: 0;
}

.family-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.vitrine-card .product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.product-audience {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-light);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 3px 10px;
    margin-bottom: 0.75rem;
}

.vitrine-card .product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.vitrine-card .product-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.vitrine-card .product-price-display {
    margin-bottom: 1rem;
}

.product-card-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.82rem;
}

/* Badge audience sur la fiche détail */
.product-details .product-audience {
    margin: 0.25rem 0 1rem;
}
