/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
    --color-bordeaux: #55052A;
    --color-bordeaux-sp: #aa1249;
    --color-bordeaux-light: #760F30;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C158;
    --color-white: #FFFFFF;
    --color-cream: #F8F6F3;
    --color-gray: #666666;
    --color-gray-light: #E5E5E5;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --oclegal-header-brand-radius: 8px;
    --oclegal-scroll-offset: 116px;
    --oclegal-admin-bar-offset: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.site{
    background-color: var(--color-gold);
    color: var(--color-gray);
}

html {
    scroll-behavior: smooth;
}

section[id][data-oclegal-nav-key] {
    scroll-margin-top: var(--oclegal-scroll-offset);
}

body.admin-bar section[id][data-oclegal-nav-key] {
    scroll-margin-top: calc(var(--oclegal-scroll-offset) + var(--oclegal-admin-bar-offset));
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    background: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(85, 5, 42, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition)
}

.navbar.scrolled {
    background: rgba(85, 5, 42, 0.98);
    box-shadow: 0 4px 30px rgba(85, 5, 42, 0.2);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    flex-shrink: 0;
    align-self: center;
    line-height: 0;
}

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

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-gold);
}

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

.nav-cta {
    background: var(--color-gold);
    color: var(--color-bordeaux) !important;
    padding: 12px 30px;
    border-radius: 0;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-gold-light);
    color: var(--color-bordeaux) !important;
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */

/* Hero: fond bordeaux avec rayures verticales subtiles (style 2e capture) */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: 100vh;
    background: var(--color-bordeaux-sp);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(165, 20, 72, 0.56) 0%, rgba(138, 14, 58, 0.46) 100%);
    pointer-events: none;
}

/* Rayures verticales très fines, légèrement plus foncées (rendu capture d'écran) */
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        180deg,
        transparent 0,
        transparent 5px,
        rgba(0, 0, 0, 0.045) 5px,
        rgba(0, 0, 0, 0.045) 6px
    );
    pointer-events: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: none;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 56rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--color-white);
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    color: var(--color-white);
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.hero-scroll .hero-scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.hero-scroll .hero-scroll-link:hover {
    color: inherit;
    text-decoration: none;
}

.hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gray-light);
}

.scroll-indicator {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ========================================
   COMMON SECTION STYLES
   ======================================== */

section {
    margin-bottom: -20px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-label.light {
    color: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 300;
    color: var(--color-bordeaux-light);
    line-height: 1.3;
}

.section-title.light {
    color: var(--color-white);
}

.text-divider {
    width: 80px;
    height: 1px;
    background: var(--color-gold);
    margin: 32px 0;
}

/* ========================================
   INTRO SECTION
   ======================================== */

.intro-section {
    background: var(--color-white);
    text-align: center;
    padding-top: 130px;
    padding-bottom: 64px;
}

.intro-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 400;
    color: var(--color-bordeaux-light);
    margin-bottom: 28px;
}

.intro-text {
    font-size: 20px;
    line-height: 2;
    color: var(--color-gray);
    font-weight: 300;
}

.intro-image-wrap {
    margin: 28px 0 0;
}

.intro-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.intro-button-wrap {
    margin-top: 40px;
}

.intro-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-bordeaux);
    text-decoration: none;
    transition: var(--transition);
}

.intro-button:hover {
    background: var(--color-bordeaux-light);
    color: var(--color-white);
    text-decoration: none;
}

/* ========================================
   SOCIÉTÉ SECTION
   ======================================== */

.societe-section {
    background: var(--color-cream);
    padding-top: 100px;
    padding-bottom: 100px;
}

.societe-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

/* Bordure dorée + passe-partout blanc ; au survol la photo va jusqu’aux bords intérieurs du cadre */
.image-frame {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--color-white);
    border: 1px solid var(--color-gold);
    box-sizing: border-box;
    padding: 20px;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.image-frame:hover {
    padding: 0;
}

.founder-portrait {
    flex: 1;
    min-height: 0;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.societe-content {
    padding: 24px 0 8px;
}

.section-text {
    font-size: 18px;
    line-height: 2;
    color: var(--color-gray);
    margin-bottom: 50px;
}

.societe-section .section-text {
    margin-bottom: 36px;
}

.founder-info {
    margin-top: 40px;
    padding: 32px 0 0;
    border-top: 1px solid var(--color-gray-light);
}

.founder-info h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-bordeaux-light);
    margin-bottom: 10px;
}

.founder-role {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.founder-desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-gray);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: var(--color-white);
    padding-bottom: 100px;
}

.services-header {
    max-width: 700px;
}

.services-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-gray);
    margin-top: 16px;
    margin-bottom: 0;
}

.services-list {
    display: grid;
    gap: 0;
}

.service-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--color-gray-light);
    transition: var(--transition);
    position: relative;
}

.services-list .service-item:first-child {
    padding-top: 36px;
}

.service-item-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.service-icon {
    line-height: 0;
}

.service-icon img {
    max-width: 60px;
    height: auto;
    display: block;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--color-cream);
    transition: var(--transition);
    z-index: -1;
}

.service-item:hover::before {
    width: 100%;
}

.service-item:hover {
    padding-left: 40px;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 300;
    color: var(--color-gold);
    opacity: 0.3;
    transition: var(--transition);
}

.service-item:hover .service-number {
    opacity: 1;
    transform: scale(1.1);
    color: var(--color-bordeaux-light);
}

.service-content h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-bordeaux-light);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-gray);
}

/* ========================================
   VALEURS SECTION
   ======================================== */

.valeurs-section {
    position: relative;
    background: var(--color-bordeaux);
    padding-top: 64px;
    padding-bottom: 50px;
    overflow: hidden;
}

.valeurs-background {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

.valeurs-header {
    text-align: center;
    margin-bottom: 80px;
}

.valeurs-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    margin-bottom: 0;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.valeur-card {
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.valeur-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.valeur-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.valeur-card:hover::before {
    opacity: 1;
}

.valeur-icon-wrapper {
    margin-bottom: 30px;
}

.valeur-icon-wrapper .valeur-icon-img {
    max-width: 60px;
    height: auto;
    display: block;
}

.valeur-icon {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.valeur-card h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 20px;
}

.valeur-card p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   TÉMOIGNAGES SECTION
   ======================================== */

.temoignages-section {
    position: relative;
    z-index: 1;
    background: var(--color-cream);
    padding-top: 64px;
    padding-bottom: 50px;
    margin-bottom: 0;
}

.temoignages-header {
    text-align: center;
    margin-bottom: 80px;
}

.temoignages-description {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 0;
}

.temoignages-description--after {
    margin-top: 1.5em;
}

.temoignages-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.temoignage-slide {
    background: var(--color-white);
    padding: 60px 50px;
    position: relative;
    transition: var(--transition);
}

.temoignage-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: var(--transition);
}

.temoignage-slide:hover {
    transform: translateY(-10px);
}

.temoignage-slide:hover::before {
    border-color: var(--color-gold);
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 120px;
    line-height: 0.5;
    color: var(--color-gold);
    opacity: 0.2;
    margin-bottom: 30px;
}

.temoignage-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-gray);
    margin-bottom: 40px;
    font-style: italic;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.temoignage-author-photo {
    flex-shrink: 0;
}

.temoignage-author-photo img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}

.temoignage-author h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-bordeaux-light);
    margin-bottom: 5px;
}

.temoignage-author p {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--color-gold);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: var(--color-bordeaux);
    padding: 180px 0 0 0;
    margin-bottom: 0 !important;
}

/* Séparation visuelle Contact → pied de page global (accueil) */
body.home #footer.bootscore-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.085);
    padding-top: 2rem;
    margin-top: 1.5rem;
}
body.home #footer.bootscore-footer .footer-compact {
    padding-bottom: 4rem;
}

/* Supprimer tout espace entre section contact et suite du contenu */
#contact.contact-section,
section.contact-section {
    margin-bottom: 0 !important;
}
.entry-content > [class*="section-contact"],
.site-main [class*="section-contact"]:last-child,
.wp-block-oclegal-section-contact {
    margin-bottom: 0 !important;
}
.elvetik-footer {
    margin-top: 0 !important;
}
body.home .entry-content,
body.home .site-main,
body.home #content {
    padding-bottom: 0 !important;
}

/* Pas de marge/padding haut sous la navbar fixe : évite la bande claire au-dessus du hero (accueil) */
body.home #content,
body.home #primary,
body.home .site-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.home #page,
body.home {
    background-color: var(--color-bordeaux);
}

/* Page Contact dédiée : supprime la bande blanche (padding #content + titre + padding section) */
body.page-contact #content,
body.page-contact #primary,
body.page-contact .site-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.page-contact .entry-header {
    display: none;
}

body.page-contact .contact-section {
    padding-top: 110px;
}

/* ========================================
   PAGES IMPRESSUM & HONORAIRES – bandeau 3 colonnes Gutenberg (bordeaux | blanc | bordeaux)
   Slugs WP : impressum (.page-impressum), honoraires (.page-honoraires). Autres pages : dupliquer les sélecteurs.
   ======================================== */

body.page-impressum .entry-content .wp-block-columns,
body.page-honoraires .entry-content .wp-block-columns {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, min(100%, 22rem)) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: none;
}

body.page-impressum .entry-content .wp-block-columns .wp-block-column,
body.page-honoraires .entry-content .wp-block-columns .wp-block-column {
    min-width: 0;
}

body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(1),
body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(3),
body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(1),
body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(3) {
    background: var(--color-bordeaux);
}

body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(2),
body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(2) {
    background: var(--color-white);
    padding: 2rem 1.75rem;
    text-align: center;
}

body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(2) .wp-block-heading,
body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(2) p,
body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(2) li,
body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(2) .wp-block-heading,
body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(2) p,
body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(2) li {
    text-align: center;
}

@media (max-width: 781px) {
    body.page-impressum .entry-content .wp-block-columns,
    body.page-honoraires .entry-content .wp-block-columns {
        grid-template-columns: 1fr;
    }

    body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(1),
    body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(2),
    body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(3),
    body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(1),
    body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(2),
    body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(3) {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    body.page-impressum .entry-content .wp-block-columns .wp-block-column:nth-child(2),
    body.page-honoraires .entry-content .wp-block-columns .wp-block-column:nth-child(2) {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 120px;
    align-items: start;
}

.contact-info {
    padding-top: 40px;
}

.contact-intro {
    font-size: 18px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 64px;
}

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

.contact-detail-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.detail-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.detail-value {
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.8;
}

.contact-maps-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--color-gold, #d4af37);
    text-decoration: none;
    font-size: 16px;
}
.contact-maps-link:hover {
    text-decoration: underline;
}

.contact-detail-item--address .contact-address-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-address-text {
    flex: 1;
    min-width: 0;
}

.contact-address-thumb {
    flex-shrink: 0;
    max-width: min(220px, 50vw);
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

/* ========================================
   PREMIUM FORM
   ======================================== */

.premium-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 70px 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-field {
    position: relative;
    margin-bottom: 50px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 16px;
    padding: 15px 0;
    font-family: var(--font-sans);
    font-weight: 300;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

.form-field label {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: var(--transition);
    letter-spacing: 1px;
}

.form-field input:focus + label,
.form-field input:valid + label,
.form-field textarea:focus + label,
.form-field textarea:valid + label {
    top: -20px;
    font-size: 11px;
    color: var(--color-gold);
    letter-spacing: 2px;
}

/* Téléphone optionnel : vide mais :valid → rétablir le label comme les champs requis vides */
.form-field input[type="tel"]:placeholder-shown:not(:focus) + label {
    top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.form-field input:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
    width: 100%;
}

.premium-button {
    width: 100%;
    background: var(--color-gold);
    color: var(--color-bordeaux);
    border: none;
    padding: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-gold-light);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.premium-button:hover::before {
    width: 300%;
    height: 300%;
}

.premium-button span {
    position: relative;
    z-index: 1;
}

.premium-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

/* Conteneur message formulaire contact (succès / erreur) */
.contact-form-message {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.4;
}
.contact-form-message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.contact-form-message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-bordeaux);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

/* Footer logo as text (OCLegal) */
.footer-brand .footer-logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 2px;
    display: block;
    height: auto;
    filter: none;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-links a:visited {
    color: rgba(255, 255, 255, 0.6);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 2px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .container,
    .container-narrow {
        padding: 0 40px;
    }

    .societe-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .societe-section {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .valeurs-grid,
    .temoignages-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 36px;
    }

    .intro-title {
        font-size: 42px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 100px 0;
    }

    .intro-section {
        padding-top: 72px;
        padding-bottom: 40px;
    }

    .societe-section {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .temoignages-section {
        padding-top: 72px;
        padding-bottom: 100px;
    }

    .societe-grid {
        gap: 40px;
    }

    .societe-content {
        padding: 12px 0 0;
    }

    .contact-detail-item--address .contact-address-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-address-thumb {
        max-width: min(100%, 220px);
        max-height: none;
        width: auto;
        height: auto;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

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

/* ========================================
   SELECTION STYLING
   ======================================== */

::selection {
    background: var(--color-gold);
    color: var(--color-bordeaux);
}

::-moz-selection {
    background: var(--color-gold);
    color: var(--color-bordeaux);
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bordeaux);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-light);
}

/* ========================================
   ADDITIONAL PREMIUM EFFECTS
   ======================================== */

.nav-links a.active {
    color: var(--color-gold);
}

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

/* Smooth transitions for all interactive elements */
a, button, input, textarea {
    -webkit-tap-highlight-color: transparent;
}

/* Premium glow effect for gold elements */
@keyframes goldGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
}

.section-label {
    animation: goldGlow 3s ease-in-out infinite;
}


/* ========================================
   THEME / WORDPRESS OVERRIDES
   ======================================== */

.wc-breadcrumb {
    display: none;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   TOP BAR WIDGET
   ======================================== */

/* Fix bg-primary to use custom primary color */
.bg-primary {
    background-color: var(--primary) !important;
}

.top-bar-widget {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0;
    width: 100%;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    min-height: 34px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

/* Texte à gauche */
.top-bar-text {
    flex: 0 1 auto;
    white-space: nowrap;
    line-height: 1.2;
    text-align: left;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

/* Icônes sociales à droite - côte à côte */
.top-bar-social {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
}

.top-bar-social .social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
    text-decoration: none !important;
    transition: var(--transition);
    color: var(--white) !important;
    border-radius: 50% !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

.top-bar-social .social-icon i {
    font-size: 16px !important;
    color: var(--white) !important;
    line-height: 1 !important;
    display: block !important;
}

.top-bar-social .social-icon:hover {
    opacity: 0.8 !important;
    transform: scale(1.1) !important;
}

.top-bar-social .social-icon:hover i {
    color: var(--white) !important;
}


/* Compatibility with custom top-banner class */
.top-banner {
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
}

.banner-separator {
    opacity: 0.7;
}

/* ========================================
   NAVBAR LOGO
   ======================================== */

/* Logo barre principale : pas de hauteur fixe sur le lien = pas de rognage ; contraste via filtre sur .navbar-brand:not(.bg-light) */
#nav-main.navbar a.navbar-brand {
    display: inline-block;
    line-height: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    margin: 0;
    border-radius: var(--oclegal-header-brand-radius);
    background-color: transparent !important;
}

/* Logos monochrome inversés (Bootscore / marque sans fond clair) */
.navbar-brand:not(.bg-light) {
    /* filter: brightness(0) invert(1); */
}

/* Image logo #nav-main : une seule échelle (max-height), ratio préservé */
#nav-main.navbar .navbar-brand img,
#nav-main.navbar .nav-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    max-height: 48px;
    object-fit: contain;
    object-position: center center;
    margin: 0;
    padding: 0;
}

/* Autres emplacements .navbar-brand (hors barre principale) */
.navbar-brand img {
    display: block;
    width: auto;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

/* Ensure logo displays correctly in all browsers (both light and dark theme versions) */
/* Override theme-specific display classes to ensure logo is always visible */
.navbar-brand img.d-td-none,
.navbar-brand img.d-tl-none {
    width: auto;
    height: auto;
    max-width: none;
    max-height: 48px;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

/* Force logo with d-td-none to display by default (light theme logo) */
.navbar-brand img.d-td-none {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide dark theme logo by default, show only when dark theme is active */
.navbar-brand img.d-tl-none {
    display: none !important;
}

/* Show dark theme logo when dark theme is active */
[data-bs-theme="dark"] .navbar-brand img.d-td-none {
    display: none !important;
}

[data-bs-theme="dark"] .navbar-brand img.d-tl-none {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ========================================
   NAVIGATION (Theme / WordPress overrides)
   ======================================== */

/* Même bordeaux que la section Nos valeurs (.valeurs-section) ; accent #DBB632 (header) */
#nav-main.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    --color-gold: #DBB632;
    background: var(--color-bordeaux);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

#nav-main.navbar.scrolled {
    background: var(--color-bordeaux);
    box-shadow: 0 4px 30px rgba(85, 5, 42, 0.2);
}

#nav-main.navbar .container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 4px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    overflow: visible;
}

#nav-main.navbar .container > .nav-logo {
    flex: 0 0 auto;
}

/* Desktop (lg+) : une seule ligne ; offcanvas après logo / menu / actions (évite intercalation flex + logo masqué) */
@media (min-width: 992px) {
    #nav-main.navbar .container {
        flex-wrap: nowrap;
    }

    #nav-main.navbar .container > #offcanvas-navbar {
        order: 10;
    }

    #nav-main.navbar .container > .nav-logo {
        position: relative;
        z-index: 2;
        flex-shrink: 0;
    }

    /* Menu principal centré avec léger décalage vers la droite (équilibre logo / actions) */
    #nav-main.navbar .container > .navbar-menu-desktop {
        position: absolute;
        left: 50%;
        transform: translateX(calc(-50% + 250px));
        width: max-content;
        max-width: calc(100% - 280px);
        justify-content: center;
        z-index: 1;
    }

    #nav-main.navbar .container > .header-actions {
        position: relative;
        z-index: 2;
    }
}

.navbar-menu-desktop .elvetik-main-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
    flex-wrap: nowrap;
}

.elvetik-main-menu .nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.elvetik-main-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.elvetik-main-menu .nav-link:hover {
    color: var(--color-gold);
}

.elvetik-main-menu .nav-link:hover::after {
    width: 100%;
}

/* Élément de menu actif : texte or/jaune + soulignement (cohérent avec mobile) */
.elvetik-main-menu .nav-item.current-menu-item:not(:last-child) > .nav-link,
.elvetik-main-menu .nav-item.current-menu-ancestor:not(:last-child) > .nav-link,
.elvetik-main-menu .nav-item.oclegal-section-active:not(:last-child) > .nav-link {
    color: var(--color-gold);
}
.elvetik-main-menu .nav-item.current-menu-item:not(:last-child) > .nav-link::after,
.elvetik-main-menu .nav-item.current-menu-ancestor:not(:last-child) > .nav-link::after,
.elvetik-main-menu .nav-item.oclegal-section-active:not(:last-child) > .nav-link::after {
    width: 100%;
}
.elvetik-main-menu .nav-item:not(:last-child) > .nav-link.active {
    color: var(--color-gold);
}
.elvetik-main-menu .nav-item:not(:last-child) > .nav-link.active::after {
    width: 100%;
}
/* Contact actif : fond plus clair + contour bordeaux (évite texte or sur fond or) */
.elvetik-main-menu .nav-item:last-child.current-menu-item > .nav-link,
.elvetik-main-menu .nav-item:last-child.oclegal-section-active > .nav-link {
    background: var(--color-gold-light);
    color: var(--color-bordeaux) !important;
    box-shadow: inset 0 0 0 2px var(--color-bordeaux);
    border-radius: var(--oclegal-header-brand-radius);
}

/* Contact : bouton avec fond jaune (desktop) */
.elvetik-main-menu .nav-item:last-child .nav-link {
    background: var(--color-gold);
    color: var(--color-bordeaux) !important;
    padding: 12px 30px;
    border-radius: var(--oclegal-header-brand-radius);
}
.elvetik-main-menu .nav-item:last-child .nav-link::after {
    display: none;
}
.elvetik-main-menu .nav-item:last-child .nav-link:hover {
    background: var(--color-gold-light);
    color: var(--color-bordeaux) !important;
    transform: translateY(-2px);
}

/* Header principal - fond bordeaux (masthead derrière la navbar fixe) */
#masthead.site-header {
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
}

/* Menu desktop - centré dans la barre (lg+), ne pas rétrécir pour garder le bouton Contact visible */
.navbar-menu-desktop {
    display: flex;
    justify-content: center;
    order: 2;
    z-index: 1;
    padding-left: 0;
    flex-shrink: 0;
}

.elvetik-main-menu {
    margin: 0;
    padding: 0;
}

.elvetik-main-menu .nav-item {
    margin: 0;
}

/* Header actions (icônes à droite) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    margin-left: auto;
    order: 3;
    z-index: 1;
}

.header-actions .btn {
    background-color: transparent;
    border: none;
    color: #ffffff;
    padding: 0.5rem;
    font-size: 1.25rem;
    transition: 0.3s ease;
}

.header-actions .btn:hover {
    color: var(--color-gold);
    background-color: transparent;
}

.header-actions .btn:focus {
    box-shadow: none;
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* 4a (sélecteur de langue) en bas à droite du header */
.language-switcher-wrapper {
    order: 4;
}

/* ==============================
   NAVBAR & MENU RESPONSIVE
   ============================== */

/* Tablet & mobile: hide desktop menu, show hamburger */
@media (max-width: 991.98px) {
    .navbar-menu-desktop {
        display: none !important;
    }

    /* Sans la colonne menu flex:1, pousser langue + burger à droite */
    #nav-main.navbar .container > .header-actions {
        margin-left: auto;
    }

    /* Navbar container: less padding on small screens */
    #nav-main.navbar .container {
        padding: 12px 20px;
    }

    /* Hamburger button: touch-friendly, visible */
    #nav-main.navbar .nav-toggler {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem 0.75rem;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        color: var(--color-white) !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
    }

    #nav-main.navbar .nav-toggler:hover {
        color: var(--color-gold) !important;
        border-color: var(--color-gold) !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    /* Logo (image or text) on mobile */
    #nav-main.navbar .navbar-brand img,
    #nav-main.navbar .nav-logo img {
        max-height: 38px;
    }

    #nav-main.navbar .navbar-brand:not(.bg-light) {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    /* Allow header-actions to shrink on small screens */
    #nav-main.navbar .header-actions {
        min-width: 0;
    }
}

/* Mobile menu offcanvas */
@media (max-width: 991.98px) {
    #offcanvas-navbar.offcanvas {
        max-width: 85vw;
        width: 320px;
    }

    #offcanvas-navbar .offcanvas-header {
        background: rgba(85, 5, 42, 0.98);
        color: var(--color-white);
        padding: 1rem 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #offcanvas-navbar .offcanvas-title {
        color: var(--color-white);
        font-weight: 500;
    }

    #offcanvas-navbar .offcanvas-header .btn-close {
        filter: invert(1);
        opacity: 0.9;
    }

   body #offcanvas-navbar .offcanvas-body {
        background: rgba(85, 5, 42, 0.98);
        padding: 0;
        overflow: inherit !important;
        min-height: 0;
    }

    body #offcanvas-navbar .offcanvas-body .navbar-nav,
    body #offcanvas-navbar .offcanvas-body #bootscore-navbar,
    #nav-main #offcanvas-navbar .offcanvas-body .navbar-nav,
    #nav-main #offcanvas-navbar .offcanvas-body #bootscore-navbar {
        display: flex !important;
        flex-direction: column;

        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #offcanvas-navbar.offcanvas.show .offcanvas-body .navbar-nav,
    #offcanvas-navbar.offcanvas.show .offcanvas-body #bootscore-navbar {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(85, 5, 42, 0.98);
    }

    #offcanvas-navbar .offcanvas-body .nav-item,
    #offcanvas-navbar .offcanvas-body .navbar-nav > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #offcanvas-navbar .offcanvas-body .nav-link,
    #offcanvas-navbar .offcanvas-body .navbar-nav > li > a {
        padding: 1rem 1.25rem;
        display: block;
        width: 100%;
        color: var(--color-white) !important;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    #offcanvas-navbar .offcanvas-body .nav-link:hover,
    #offcanvas-navbar .offcanvas-body .navbar-nav > li > a:hover {
        color: var(--color-gold) !important;
        background: rgba(255, 255, 255, 0.05);
    }

    #offcanvas-navbar .offcanvas-body .nav-item.current-menu-item:not(:last-child) > .nav-link,
    #offcanvas-navbar .offcanvas-body .nav-item.current-menu-ancestor:not(:last-child) > .nav-link,
    #offcanvas-navbar .offcanvas-body .nav-item.oclegal-section-active:not(:last-child) > .nav-link,
    #offcanvas-navbar .offcanvas-body .nav-item:not(:last-child) > .nav-link.active,
    #offcanvas-navbar .offcanvas-body .nav-item.current-menu-item:not(:last-child) > a,
    #offcanvas-navbar .offcanvas-body .nav-item.current-menu-ancestor:not(:last-child) > a,
    #offcanvas-navbar .offcanvas-body .nav-item.oclegal-section-active:not(:last-child) > a {
        color: var(--color-gold) !important;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Last item (CTA) in mobile menu */
    #offcanvas-navbar .offcanvas-body .nav-item:last-child .nav-link {
        background: var(--color-gold);
        color: var(--color-bordeaux) !important;
        margin: 1rem 1.25rem;
        width: calc(100% - 2.5rem);
        text-align: center;
        border-radius: var(--oclegal-header-brand-radius);
    }

    #offcanvas-navbar .offcanvas-body .nav-item:last-child .nav-link:hover {
        background: var(--color-gold-light);
        color: var(--color-bordeaux) !important;
    }

    #offcanvas-navbar .offcanvas-body .nav-item:last-child.current-menu-item > .nav-link,
    #offcanvas-navbar .offcanvas-body .nav-item:last-child.oclegal-section-active > .nav-link {
        background: var(--color-gold-light);
        color: var(--color-bordeaux) !important;
        box-shadow: inset 0 0 0 2px var(--color-bordeaux);
        border-radius: var(--oclegal-header-brand-radius);
    }

    /* Dropdowns / submenus in mobile offcanvas */
    #offcanvas-navbar .offcanvas-body .nav-item.dropdown .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.15);
        box-shadow: none;
    }

    #offcanvas-navbar .offcanvas-body .dropdown-menu .dropdown-item {
        padding: 0.75rem 1.25rem 0.75rem 2rem;
        color: var(--color-white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    #offcanvas-navbar .offcanvas-body .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--color-gold);
    }
}

/* Desktop: hide nav list inside offcanvas (menu is in navbar) */
@media (min-width: 992px) {
    #offcanvas-navbar .offcanvas-body .navbar-nav {
        display: none !important;
    }
}

/* Extra small: full-width offcanvas, tighter padding */
@media (max-width: 576px) {
    #offcanvas-navbar.offcanvas {
        max-width: 100vw;
        width: 100%;
        border-radius: 0;
    }

    #nav-main.navbar .container {
        padding: 10px 16px;
    }

    #nav-main.navbar .navbar-brand img,
    #nav-main.navbar .nav-logo img {
        max-height: 34px;
    }

    #nav-main.navbar .navbar-brand:not(.bg-light) {
        font-size: 1rem;
    }
}
/* ========================================
   HERO FULL WIDTH
   ======================================== */

/* Support for mockup class AND WordPress blocks */
.hero-fullwidth,
.wp-block-cover.hero-fullwidth {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

/* WordPress Cover block - adjustments */
.wp-block-cover.hero-fullwidth {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    left: 0 !important;
    right: 0 !important;
}

/* WordPress Cover block - background image fixes */
.wp-block-cover.hero-fullwidth .wp-block-cover__background {
    object-fit: cover !important;
    object-position: center !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0 !important;
}

/* Ensure background image style covers full width */
.wp-block-cover.hero-fullwidth[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

.wp-block-cover.hero-fullwidth.has-background-dim .wp-block-cover__background {
    opacity: 0.3 !important;
}

/* Reduce overlay darkness (WordPress adds its own overlay) */
.wp-block-cover.hero-fullwidth::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05)) !important;
}

/* Ensure background image covers full width */
.wp-block-cover.hero-fullwidth.has-background-dim,
.wp-block-cover.hero-fullwidth {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.wp-block-cover.hero-fullwidth .wp-block-cover__inner-container {
    position: relative;
    z-index: 10;
    width: 100% !important;
    max-width: 100% !important;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

/* Ensure parent container doesn't limit width */
.entry-content>.wp-block-cover.hero-fullwidth,
.site-main>.wp-block-cover.hero-fullwidth,
.content-area>.wp-block-cover.hero-fullwidth,
.entry-content .wp-block-cover.hero-fullwidth,
.site-main .wp-block-cover.hero-fullwidth,
.content-area .wp-block-cover.hero-fullwidth {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    left: 0 !important;
    right: 0 !important;
}

/* Ensure Bootstrap containers don't limit width */
.site-content .container .wp-block-cover.hero-fullwidth,
.site-content .wp-block-cover.hero-fullwidth {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    left: 0 !important;
    right: 0 !important;
}

/* Force hero to break out of ALL possible containers */
body .wp-block-cover.hero-fullwidth,
body>* .wp-block-cover.hero-fullwidth,
.wp-site-blocks .wp-block-cover.hero-fullwidth,
main .wp-block-cover.hero-fullwidth,
article .wp-block-cover.hero-fullwidth,
.wp-block-group .wp-block-cover.hero-fullwidth,
.wp-block-column .wp-block-cover.hero-fullwidth,
.entry-content .wp-block-cover.hero-fullwidth,
.post-content .wp-block-cover.hero-fullwidth,
.entry-content>.wp-block-cover.hero-fullwidth {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
}

/* Ensure parent containers don't clip the hero */
.entry-content,
.site-main,
.content-area,
.wp-block-group,
article,
.site-content,
.container {
    overflow-x: visible !important;
    position: relative;
}

/* Force entry-content to allow full width children */
.entry-content>.wp-block-cover.hero-fullwidth {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* Overlay for WordPress Cover block */
.wp-block-cover.hero-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
    z-index: 1;
}

.hero-content-center,
.wp-block-group.hero-content-center {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    z-index: 10;
    padding: 2rem 0;
    width: 100%;
}

/* Container inside hero should use Bootstrap max-width */
.hero-content-center .container {
    position: relative;
    z-index: 10;
}

.hero-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h1,
h2 {
    color: var(--primary);
}

.hero-title,
.wp-block-heading.hero-title,
.wp-block-heading.hero-title h1,
.wp-block-heading.hero-title h2 {
    font-size: 4.85rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #ffffff !important;
    letter-spacing: 3px;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
}

.hero-title br {
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta-group,
.wp-block-group.hero-cta-group,
.wp-block-buttons.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Style for WordPress buttons in hero */
.hero-cta-group .wp-block-button,
.wp-block-buttons.hero-cta-group .wp-block-button {
    margin: 0;
}

.hero-editable-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-align: center;
}

/* ========================================
   HERO FIRST SECTION (bordeaux style)
   Applied when block has class .hero
   ======================================== */

.wp-block-cover.hero-fullwidth.hero {
    height: 100vh;
    min-height: unset;
    max-height: none;
    background: var(--color-bordeaux);
}

.wp-block-cover.hero-fullwidth.hero::before {
    display: none;
}

.wp-block-cover.hero-fullwidth.hero .hero-background {
    position: absolute;
    inset: 0;
    background-color: var(--color-bordeaux);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dégradé bordeaux toujours visible (avec ou sans image) */
.wp-block-cover.hero-fullwidth.hero .hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(85, 5, 42, 0.95) 0%, rgba(118, 15, 48, 0.9) 100%);
    pointer-events: none;
}

.wp-block-cover.hero-fullwidth.hero .hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.wp-block-cover.hero-fullwidth.hero .hero-overlay {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    z-index: 1;
}

.wp-block-cover.hero-fullwidth.hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 2rem;
    text-align: center;
    color: var(--color-white);
    animation: heroFadeInUp 1.2s ease-out;
}

/* Logo optionnel : bloc hero-banner (Cover), pas le hero OC Legal (#accueil) */
.wp-block-cover.hero-fullwidth.hero .hero-logo {
    margin-bottom: 60px;
    opacity: 0;
    animation: heroFadeIn 1s ease-out 0.3s forwards;
}

.wp-block-cover.hero-fullwidth.hero .hero-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
}

.wp-block-cover.hero-fullwidth.hero .hero-title,
.wp-block-cover.hero-fullwidth.hero .wp-block-heading.hero-title,
.wp-block-cover.hero-fullwidth.hero .wp-block-heading.hero-title h1,
.wp-block-cover.hero-fullwidth.hero .wp-block-heading.hero-title h2 {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.5s forwards;
    color: var(--color-white);
    line-height: 1.2;
    text-shadow: none;
}

.wp-block-cover.hero-fullwidth.hero .hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 80px;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.7s forwards;
}

.wp-block-cover.hero-fullwidth.hero .hero-cta-group {
    margin-bottom: 0;
}

.wp-block-cover.hero-fullwidth.hero .hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 80px;
    opacity: 0;
    animation: heroFadeIn 1s ease-out 1s forwards;
}

.wp-block-cover.hero-fullwidth.hero .hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gray-light);
}

.wp-block-cover.hero-fullwidth.hero .scroll-indicator {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ========================================
   BUTTON OVERRIDES (Bootstrap compatible)
   ======================================== */

/* Custom button styles that extend Bootstrap */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(66, 160, 166, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 6px 16px rgba(66, 160, 166, 0.5);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    will-change: backdrop-filter;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(3px)) {
    .btn-secondary {
        background: rgba(255, 255, 255, 0.25);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.35);
    }
}

/* ========================================
   PRODUCT CATEGORIES GRID 2x3
   ======================================== */

.product-categories-grid {
    padding: 0.5rem 0 2rem 0;
    background: var(--white);
    margin-bottom: 0;
}

.categories-grid-2x3 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

/* First 4 thumbnails each take 3 columns (3x4=12) */
.categories-grid-2x3>*:nth-child(1) {
    grid-column: 1 / span 3;
}

.categories-grid-2x3>*:nth-child(2) {
    grid-column: 4 / span 3;
}

.categories-grid-2x3>*:nth-child(3) {
    grid-column: 7 / span 3;
}

.categories-grid-2x3>*:nth-child(4) {
    grid-column: 10 / span 3;
}

/* By default: 4 additional thumbnails for homepage (5, 6, 7, 8) */
.categories-grid-2x3>*:nth-child(5) {
    grid-column: 1 / span 3;
}

.categories-grid-2x3>*:nth-child(6) {
    grid-column: 4 / span 3;
}

.categories-grid-2x3>*:nth-child(7) {
    grid-column: 7 / span 3;
}

.categories-grid-2x3>*:nth-child(8) {
    grid-column: 10 / span 3 !important;
}

/* Fallback rule with higher specificity to ensure application in production */
.product-categories-grid .categories-grid-2x3>*:nth-child(8) {
    grid-column: 10 / span 3 !important;
}

/* For accessories page: if 7th thumbnail is the last, center the last 3 */
/* Columns 2, 5, 8 to center (leaves 1 empty column on left, 3 on right) */
.categories-grid-2x3>*:nth-child(7):last-child {
    grid-column: 8 / span 3;
}

.categories-grid-2x3>*:nth-child(6):nth-last-child(2) {
    grid-column: 5 / span 3;
}

.categories-grid-2x3>*:nth-child(5):nth-last-child(3) {
    grid-column: 2 / span 3;
}

.category-box {
    background: var(--bg-light);
    border: none;
    padding: 0;
    text-align: center;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    line-height: 1.1;
    background-color: var(--white);
}

.category-second-word {
    font-weight: 800;
    display: block;
    margin-top: -1rem;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 0;
    padding-top: 0;
    position: relative;
    z-index: 3;
    color: var(--white);
    font-size: 1.4rem;
    transform: scaleX(0.9);
    transform-origin: center;
    text-shadow:
        0 0 4px rgba(0, 0, 0, 0.6),
        0 0 8px rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.category-first-word {
    font-weight: 900;
    display: block;
    letter-spacing: -0.5px;
    font-size: 1.65rem;
    line-height: 1;
    transform: scaleY(1.15);
    transform-origin: top;
    margin-bottom: -0.3rem;
    padding-bottom: 0;
    position: relative;
    z-index: 3;
    color: var(--white);
    text-shadow:
        0 0 8px rgba(0, 0, 0, 1),
        0 0 16px rgba(0, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 1),
        0 4px 8px rgba(0, 0, 0, 0.9),
        -1px -1px 0 rgba(0, 0, 0, 0.8),
        1px 1px 0 rgba(0, 0, 0, 0.8);
}

/* Firefox specific correction */
@-moz-document url-prefix() {
    .category-second-word {
        margin-top: -0.4rem;
        line-height: 1.15;
    }

    .category-first-word {
        line-height: 1.05;
        transform: scaleY(1.12);
    }
}

.category-box {
    position: relative;
    z-index: 2;
}

.category-first-word,
.category-second-word {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Container for text at top of thumbnail */
.category-box>span,
.category-box>.category-first-word {
    padding-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

.category-box:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 160, 166, 0.3);
}

/* Background images for each category */
.category-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: var(--category-image, none);
    background-color: var(--white);
    z-index: 0;
    pointer-events: none;
}

/* Light overlay for better text readability while keeping white background visible */
.category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.category-box:hover::before {
    opacity: 0.4;
}

/* Category-specific background images */
.category-bottes::after,
a[href="#bottes"].category-box::after {
    background-image: url('../img/vignettes/bottes.png');
}

a[href="#chaussettes-polaire"].category-box::after {
    background-image: url('../img/vignettes/chaussette polaire.jpg');
}

a[href="#chaussettes-fantaisie"].category-box::after {
    background-image: url('../img/vignettes/chaussettes-fantaisie.jpg');
}

a[href="#hoodies"].category-box::after {
    background-image: url('../img/vignettes/13-hoodie.jpg');
}

a[href="#lacets"].category-box::after {
    background-image: url('../img/vignettes/lacets.jpg');
}

a[href="#semelles"].category-box::after {
    background-image: url('../img/vignettes/semelles mouton.png');
}

a[href="#bonnets"].category-box::after {
    background-image: url('../img/vignettes/bonnet&echarpes.jpg');
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

    /* .hero-title {
        font-size: 3.5rem;
    }*/

    .wp-block-cover.hero-fullwidth.hero .hero-title {
        font-size: 3.5rem;
    }
}

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .wp-block-cover.hero-fullwidth.hero .hero-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   SECTION NOTRE HISTOIRE (Gutenberg Blocks)
   ======================================== */

.wp-block-group.elvetik-our-story {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.elvetik-our-story .our-story-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    text-transform: uppercase !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 2px !important;
}

.elvetik-our-story .our-story-subtitle {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    color: var(--gray-dark) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
}

.elvetik-our-story .our-story-text {
    font-size: 1rem !important;
    color: var(--gray-dark) !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
}

.elvetik-our-story .our-story-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto 2rem auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem 3rem !important;
    max-width: 500px !important;
    justify-items: start !important;
}

.elvetik-our-story .our-story-features li {
    font-size: 1rem !important;
    color: var(--gray-dark) !important;
    font-weight: 500 !important;
    text-align: left !important;
    list-style: none !important;
    padding-left: 0 !important;
}

/* Colorer les checkmarks en teal */
.elvetik-our-story .our-story-features .checkmark-icon {
    color: var(--primary) !important;
    font-weight: 700 !important;
    margin-right: 0.5rem;
}

.elvetik-our-story .our-story-button .wp-block-button__link {
    padding: 0.75rem 2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
    background-color: transparent !important;
    color: var(--gray-dark) !important;
    border: 2px solid var(--gray-dark) !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
}

.elvetik-our-story .our-story-button .wp-block-button__link:hover {
    background-color: var(--gray-dark) !important;
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .elvetik-our-story .our-story-features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* ========================================
   BANNIÈRE PROMOTIONNELLE (Gutenberg Cover Block)
   ======================================== */

.elvetik-promo-banner-cover {
    position: relative;
    min-height: 500px !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* Forcer l'image de fond si elle n'est pas chargée automatiquement */
.elvetik-promo-banner-cover::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-image: url('https://elvetik-dev.ddev.site/wp-content/uploads/2026/01/cover-web-3.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
    display: block !important;
    opacity: 1 !important;
}

/* Réduire l'opacité de l'overlay pour mieux voir l'image */
.elvetik-promo-banner-cover .wp-block-cover__background {
    opacity: 0.2 !important;
}

/* S'assurer que l'image du bloc Cover est visible */
.elvetik-promo-banner-cover img.wp-block-cover__image-background,
.elvetik-promo-banner-cover .wp-block-cover__image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.elvetik-promo-banner-cover .wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.elvetik-promo-banner-cover .promo-banner-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    text-transform: uppercase !important;
    margin-bottom: 2rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    line-height: 1.2 !important;
}

.elvetik-promo-banner-cover .promo-banner-button .wp-block-button__link {
    padding: 1rem 2.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border: none !important;
    text-decoration: none !important;
    transition: var(--transition) !important;
}

.elvetik-promo-banner-cover .promo-banner-button .wp-block-button__link:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .elvetik-promo-banner-cover .promo-banner-title {
        font-size: 2rem !important;
    }

    .elvetik-promo-banner-cover {
        min-height: 400px !important;
    }
}

/* ========================================
   MEILLEURES VENTES & SOLDES
   ======================================== */

.elvetik-best-sellers,
.elvetik-sales {
    padding: 0rem 0;

}

.elvetik-sales {
    background: var(--white);
}

/* Section title override for product sections only (preserves premium .section-title elsewhere) */
.elvetik-best-sellers .section-title,
.elvetik-sales .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    text-align: left;
    letter-spacing: 1px;
}

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

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin: 1rem 1rem 0.5rem 1rem;
    text-align: center;
}

.product-price {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-dark);
}

.product-price .original-price {
    text-decoration: line-through;
    color: var(--gray);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.product-price .sale-price {
    color: var(--accent-red);
}

.add-to-cart-btn {
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem 1rem;
    padding: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* ========================================
   NEWSLETTER
   ======================================== */

.elvetik-newsletter {
    padding: 4rem 0;
    background: var(--bg-light);
}

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: var(--primary);
}

.newsletter-button {
    padding: 0.75rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        width: 100%;
    }

    .promo-banner-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.elvetik-footer {
    background-color: var(--color-bordeaux) !important;
    color: var(--color-white) !important;
    padding: 0 !important;
}

/* Footer compact (maquette OCLegal) */
.footer-compact {
    text-align: center;
    padding: 0 0 3rem;
}

.footer-compact .footer-brand-name {
    margin: 1.25rem 0 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.footer-compact .footer-brand-name a {
    color: inherit;
    text-decoration: none;
}

.footer-compact .footer-brand-name a:hover {
    color: var(--color-gold-light);
}

.footer-compact .footer-tagline {
    margin: 0 0 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.footer-compact .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-compact .footer-links .footer-link-item {
    display: inline-block;
}

.footer-compact .footer-links .footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-compact .footer-links .footer-link:hover {
    color: var(--color-gold);
}

.footer-compact .footer-links .footer-link:visited {
    color: rgba(255, 255, 255, 0.9);
}

.footer-compact .footer-sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.25rem;
}

.footer-compact .copyright-text {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.elvetik-footer-widgets {
    padding: 4rem 0 2rem 0;
    background-color: var(--gray-dark);
}

.elvetik-footer-widgets .footer-widget {
    margin-bottom: 2rem;
}

.elvetik-footer-widgets .footer-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.elvetik-footer-widgets .footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elvetik-footer-widgets .footer-widget ul li {
    margin-bottom: 0.75rem;
}

.elvetik-footer-widgets .footer-widget ul li a,
.elvetik-footer-widgets .footer-widget a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    opacity: 0.9;
}

.elvetik-footer-widgets .footer-widget ul li a:hover,
.elvetik-footer-widgets .footer-widget a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Social Icons in Footer */
.elvetik-footer-widgets .footer-widget .social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.elvetik-footer-widgets .footer-widget .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--white) !important;
    text-decoration: none !important;
    transition: var(--transition);
    font-size: 1.2rem;
}

.elvetik-footer-widgets .footer-widget .social-icons a i {
    color: var(--white) !important;
}

.elvetik-footer-widgets .footer-widget .social-icons a:hover {
    color: var(--primary) !important;
    transform: scale(1.1);
}

.elvetik-footer-widgets .footer-widget .social-icons a:hover i {
    color: var(--primary) !important;
}

/* Language Selector */
.elvetik-footer-widgets .footer-widget select {
    background-color: var(--gray-dark);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 200px;
}

.elvetik-footer-widgets .footer-widget select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer Copyright */
.elvetik-footer-copyright {
    background-color: var(--gray-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    margin: 0;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links .footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links .footer-link:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-links .footer-link:visited {
    color: var(--white);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .elvetik-footer-widgets {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-copyright-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* ========================================
   WOOCOMMERCE SUBCATEGORIES SIDEBAR
   Design inspiré de elvetik.ch/projects/projet6/accessoires-variante-2.html
   ======================================== */

.woocommerce-sidebar {
    margin-bottom: 2rem;
    border-right: 1px solid #e5e5e5;
    padding-right: 2rem;
}

.subcategories-sidebar {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    position: sticky;
    top: 20px;
}

.subcategories-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #333;
    padding: 0;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subcategories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.subcategory-link {
    display: block;
    padding: 0.875rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

.subcategory-link:hover {
    color: var(--primary, #42a0a6);
    text-decoration: none;
}

.subcategory-item.current .subcategory-link {
    background-color: var(--primary, #42a0a6);
    color: #fff;
    font-weight: 500;
}

.subcategory-count {
    display: none;
}

/* Ensure row layout works */
.woocommerce-page .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.woocommerce-page .row>[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* ========================================
   SUBCATEGORIES THUMBNAILS SECTION
   Miniatures des sous-catégories au-dessus des produits
   Design épuré et minimaliste
   ======================================== */

.subcategories-thumbnails-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.subcategories-thumbnails-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3.5rem;
    color: #333;
    text-align: center;
}

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

.subcategory-thumbnail {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
    transition: opacity 0.2s ease;
    background: #fff;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    position: relative;
}

.subcategory-thumbnail:hover {
    transform: none;
    box-shadow: none;
    text-decoration: none;
    color: #333;
    opacity: 0.9;
}

.subcategory-thumbnail.current {
    border: none;
}

.subcategory-thumbnail-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    margin-bottom: 0;
    border: 1px solid #f0f0f0;
}

.subcategory-thumbnail-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.subcategory-thumbnail-placeholder {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.subcategory-thumbnail-placeholder .placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    opacity: 0.2;
}

.subcategory-thumbnail-content {
    padding: 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
}

.subcategory-thumbnail-title {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: var(--primary, #42a0a6);
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.subcategory-thumbnail.current .subcategory-thumbnail-title {
    color: var(--primary, #42a0a6);
    font-weight: 600;
}

.subcategory-thumbnail:hover .subcategory-thumbnail-title {
    color: var(--primary, #42a0a6);
}

/* Responsive */
@media (max-width: 991px) {
    .subcategories-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .woocommerce-sidebar {
        margin-bottom: 2rem;
    }

    .subcategories-thumbnails-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .subcategories-thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .subcategory-thumbnail-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .subcategories-thumbnails-grid {
        gap: 1rem;
    }

    .subcategory-thumbnail-title {
        font-size: 0.95rem;
    }
}

/* ========================================
   FAQ CONTENT LAYOUT
   CSS commun pour les pages FAQ
   ======================================== */

body.faq-content-layout .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

h1 {
    text-align: center;
}

body.faq-content-layout .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

body.faq-content-layout .entry-content h1+h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
}

body.faq-content-layout .entry-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.faq-content-layout .entry-content h2:first-of-type {
    margin-top: 0;
}

body.faq-content-layout .entry-content h2:not(:first-of-type) {
    margin-top: 3rem;
}

body.faq-content-layout .entry-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

body.faq-content-layout .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.faq-content-layout .entry-content h2+p {
    margin-top: 1.5rem;
}

body.faq-content-layout .entry-content ul,
body.faq-content-layout .entry-content ol {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

body.faq-content-layout .entry-content ul li,
body.faq-content-layout .entry-content ol li {
    margin-bottom: 0.75rem;
}

body.faq-content-layout .entry-content p strong {
    color: #333;
    font-weight: 600;
}

/* Responsive FAQ Layout */
@media (max-width: 768px) {
    body.faq-content-layout .entry-content {
        padding: 1.5rem 1rem 3rem;
    }

    body.faq-content-layout .entry-content h1 {
        font-size: 2rem;
    }

    body.faq-content-layout .entry-content h1+h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    body.faq-content-layout .entry-content h2 {
        font-size: 1.25rem;
        margin-top: 2.5rem;
    }

    body.faq-content-layout .entry-content h3 {
        font-size: 1.125rem;
    }

    body.faq-content-layout .entry-content p,
    body.faq-content-layout .entry-content ul,
    body.faq-content-layout .entry-content ol {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ========================================
   FAQ PAGE STYLES (Legacy - pour compatibilité)
   Ces styles sont maintenant couverts par .faq-content-layout
   ======================================== */

body.page-faq .entry-content,
body.page-id-246623 .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

body.page-faq .entry-content h1,
body.page-id-246623 .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
    padding-top: 1rem;
}

body.page-faq .entry-content h1+h2,
body.page-id-246623 .entry-content h1+h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
}

body.page-faq .entry-content h2,
body.page-id-246623 .entry-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-top: 3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.page-faq .entry-content h2:first-of-type,
body.page-id-246623 .entry-content h2:first-of-type {
    margin-top: 0;
}

body.page-faq .entry-content h2:not(:first-of-type),
body.page-id-246623 .entry-content h2:not(:first-of-type) {
    margin-top: 3rem;
}

body.page-faq .entry-content p,
body.page-id-246623 .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.page-faq .entry-content h2+p,
body.page-id-246623 .entry-content h2+p {
    margin-top: 1.5rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {

    body.page-faq .entry-content,
    body.page-id-246623 .entry-content {
        padding: 1.5rem 1rem 3rem;
    }

    body.page-faq .entry-content h1,
    body.page-id-246623 .entry-content h1 {
        font-size: 2rem;
    }

    body.page-faq .entry-content h1+h2,
    body.page-id-246623 .entry-content h1+h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    body.page-faq .entry-content h2,
    body.page-id-246623 .entry-content h2 {
        font-size: 1.25rem;
        margin-top: 2.5rem;
    }

    body.page-faq .entry-content p,
    body.page-id-246623 .entry-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ========================================
   ELVETIK CONTENT LAYOUT
   CSS commun pour toutes les pages du menu "Elvetik"
   Basé sur le design de la page "Qui sommes-nous"
   ======================================== */

body.elvetik-content-layout .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

body.elvetik-content-layout .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
}

body.elvetik-content-layout .entry-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.elvetik-content-layout .entry-content h2:first-of-type {
    margin-top: 2rem;
}

body.elvetik-content-layout .entry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

body.elvetik-content-layout .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.elvetik-content-layout .entry-content p strong {
    color: #333;
    font-weight: 600;
}

body.elvetik-content-layout .entry-content ul,
body.elvetik-content-layout .entry-content ol {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #555;
}

body.elvetik-content-layout .entry-content ul li,
body.elvetik-content-layout .entry-content ol li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* Styles spécifiques pour les images dans le layout Elvetik */
body.elvetik-content-layout .entry-content .merchandising-images,
body.elvetik-content-layout .entry-content .size-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

body.elvetik-content-layout .entry-content .merchandising-images img,
body.elvetik-content-layout .entry-content .size-tables img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.elvetik-content-layout .entry-content .merchandising-images img:hover,
body.elvetik-content-layout .entry-content .size-tables img:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Elvetik Content Layout */
@media (max-width: 768px) {
    body.elvetik-content-layout .entry-content {
        padding: 1.5rem 1rem 3rem;
    }

    body.elvetik-content-layout .entry-content h1 {
        font-size: 2rem;
    }

    body.elvetik-content-layout .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    body.elvetik-content-layout .entry-content h3 {
        font-size: 1.25rem;
    }

    body.elvetik-content-layout .entry-content p,
    body.elvetik-content-layout .entry-content ul,
    body.elvetik-content-layout .entry-content ol {
        font-size: 1rem;
        line-height: 1.7;
    }

    body.elvetik-content-layout .entry-content .merchandising-images,
    body.elvetik-content-layout .entry-content .size-tables {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   QUI SOMMES-NOUS PAGE STYLES (Legacy - pour compatibilité)
   Ces styles sont maintenant couverts par .elvetik-content-layout
   ======================================== */

body.page-qui-sommes-nous .entry-content,
body.page-id-246625 .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

body.page-qui-sommes-nous .entry-content h1,
body.page-id-246625 .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
}

body.page-qui-sommes-nous .entry-content h2,
body.page-id-246625 .entry-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.page-qui-sommes-nous .entry-content h2:first-of-type,
body.page-id-246625 .entry-content h2:first-of-type {
    margin-top: 2rem;
}

body.page-qui-sommes-nous .entry-content p,
body.page-id-246625 .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.page-qui-sommes-nous .entry-content p strong,
body.page-id-246625 .entry-content p strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Qui sommes-nous */
@media (max-width: 768px) {

    body.page-qui-sommes-nous .entry-content,
    body.page-id-246625 .entry-content {
        padding: 1.5rem 1rem 3rem;
    }

    body.page-qui-sommes-nous .entry-content h1,
    body.page-id-246625 .entry-content h1 {
        font-size: 2rem;
    }

    body.page-qui-sommes-nous .entry-content h2,
    body.page-id-246625 .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    body.page-qui-sommes-nous .entry-content p,
    body.page-id-246625 .entry-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ========================================
   MERCHANDISING PAGE STYLES
   Styles spécifiques pour la page Merchandising uniquement
   ======================================== */

body.page-merchandising .entry-content,
body.page-id-246633 .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

body.page-merchandising .entry-content h1,
body.page-id-246633 .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
}

body.page-merchandising .entry-content h2,
body.page-id-246633 .entry-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.page-merchandising .entry-content .merchandising-images,
body.page-id-246633 .entry-content .merchandising-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

body.page-merchandising .entry-content .merchandising-images img,
body.page-id-246633 .entry-content .merchandising-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.page-merchandising .entry-content .merchandising-images img:hover,
body.page-id-246633 .entry-content .merchandising-images img:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body.page-merchandising .entry-content p,
body.page-id-246633 .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.page-merchandising .entry-content p strong,
body.page-id-246633 .entry-content p strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Merchandising */
@media (max-width: 768px) {

    body.page-merchandising .entry-content,
    body.page-id-246633 .entry-content {
        padding: 1.5rem 1rem 3rem;
    }

    body.page-merchandising .entry-content h1,
    body.page-id-246633 .entry-content h1 {
        font-size: 2rem;
    }

    body.page-merchandising .entry-content .merchandising-images,
    body.page-id-246633 .entry-content .merchandising-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    body.page-merchandising .entry-content p,
    body.page-id-246633 .entry-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ========================================
   NOS VALEURS PAGE STYLES
   Styles spécifiques pour la page "Nos valeurs" uniquement
   ======================================== */

body.page-nos-valeurs .entry-content,
body.page-id-246635 .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 1rem 4rem;
}

body.page-nos-valeurs .entry-content h1,
body.page-id-246635 .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 0;
}

body.page-nos-valeurs .entry-content h2,
body.page-id-246635 .entry-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.page-nos-valeurs .entry-content h2:first-of-type,
body.page-id-246635 .entry-content h2:first-of-type {
    margin-top: 2rem;
}

body.page-nos-valeurs .entry-content p,
body.page-id-246635 .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.page-nos-valeurs .entry-content p strong,
body.page-id-246635 .entry-content p strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Nos valeurs */
@media (max-width: 768px) {

    body.page-nos-valeurs .entry-content,
    body.page-id-246635 .entry-content {
        padding: 1rem 1rem 3rem;
    }

    body.page-nos-valeurs .entry-content h1,
    body.page-id-246635 .entry-content h1 {
        font-size: 2rem;
    }

    body.page-nos-valeurs .entry-content h2,
    body.page-id-246635 .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    body.page-nos-valeurs .entry-content p,
    body.page-id-246635 .entry-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ========================================
   GUIDE DES TAILLES PAGE STYLES
   Styles spécifiques pour la page "Guide des tailles" uniquement
   ======================================== */

body.page-guide-des-tailles .entry-content,
body.page-id-246637 .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

body.page-guide-des-tailles .entry-content h1,
body.page-id-246637 .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
}

body.page-guide-des-tailles .entry-content h2,
body.page-id-246637 .entry-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.page-guide-des-tailles .entry-content h2:first-of-type,
body.page-id-246637 .entry-content h2:first-of-type {
    margin-top: 2rem;
}

body.page-guide-des-tailles .entry-content p,
body.page-id-246637 .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.page-guide-des-tailles .entry-content ul,
body.page-id-246637 .entry-content ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

body.page-guide-des-tailles .entry-content ul li,
body.page-id-246637 .entry-content ul li {
    margin-bottom: 0.75rem;
}

body.page-guide-des-tailles .entry-content .size-tables,
body.page-id-246637 .entry-content .size-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

body.page-guide-des-tailles .entry-content .size-tables img,
body.page-id-246637 .entry-content .size-tables img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body.page-guide-des-tailles .entry-content a,
body.page-id-246637 .entry-content a {
    color: var(--primary, #42a0a6);
    text-decoration: underline;
    transition: color 0.2s ease;
}

body.page-guide-des-tailles .entry-content a:hover,
body.page-id-246637 .entry-content a:hover {
    color: #2d7a7e;
    text-decoration: none;
}

body.page-guide-des-tailles .entry-content p strong,
body.page-id-246637 .entry-content p strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Guide des tailles */
@media (max-width: 768px) {

    body.page-guide-des-tailles .entry-content,
    body.page-id-246637 .entry-content {
        padding: 1.5rem 1rem 3rem;
    }

    body.page-guide-des-tailles .entry-content h1,
    body.page-id-246637 .entry-content h1 {
        font-size: 2rem;
    }

    body.page-guide-des-tailles .entry-content h2,
    body.page-id-246637 .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    body.page-guide-des-tailles .entry-content p,
    body.page-guide-des-tailles .entry-content ul,
    body.page-id-246637 .entry-content p,
    body.page-id-246637 .entry-content ul {
        font-size: 1rem;
        line-height: 1.7;
    }

    body.page-guide-des-tailles .entry-content .size-tables,
    body.page-id-246637 .entry-content .size-tables {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
}

/* ========================================
   MENTIONS LEGALES PAGE STYLES
   Styles spécifiques pour la page "Mentions légales" uniquement
   ======================================== */

body.page-mentions-legales .entry-content,
body.page-id-246642 .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

body.page-mentions-legales .entry-content h1,
body.page-id-246642 .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
}

body.page-mentions-legales .entry-content h2,
body.page-id-246642 .entry-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.page-mentions-legales .entry-content h2:first-of-type,
body.page-id-246642 .entry-content h2:first-of-type {
    margin-top: 2rem;
}

body.page-mentions-legales .entry-content h3,
body.page-id-246642 .entry-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

body.page-mentions-legales .entry-content p,
body.page-id-246642 .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.page-mentions-legales .entry-content ul,
body.page-id-246642 .entry-content ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

body.page-mentions-legales .entry-content ul li,
body.page-id-246642 .entry-content ul li {
    margin-bottom: 0.75rem;
}

body.page-mentions-legales .entry-content p strong,
body.page-id-246642 .entry-content p strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Mentions légales */
@media (max-width: 768px) {

    body.page-mentions-legales .entry-content,
    body.page-id-246642 .entry-content {
        padding: 1.5rem 1rem 3rem;
    }

    body.page-mentions-legales .entry-content h1,
    body.page-id-246642 .entry-content h1 {
        font-size: 2rem;
    }

    body.page-mentions-legales .entry-content h2,
    body.page-id-246642 .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    body.page-mentions-legales .entry-content h3,
    body.page-id-246642 .entry-content h3 {
        font-size: 1.2rem;
    }

    body.page-mentions-legales .entry-content p,
    body.page-mentions-legales .entry-content ul,
    body.page-id-246642 .entry-content p,
    body.page-id-246642 .entry-content ul {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ========================================
   CONDITIONS GENERALES DE VENTE PAGE STYLES
   Styles spécifiques pour la page "Conditions générales de vente" uniquement
   ======================================== */

body.page-conditions-generales-de-vente .entry-content,
body.page-id-246647 .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

body.page-conditions-generales-de-vente .entry-content h1,
body.page-id-246647 .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
}

body.page-conditions-generales-de-vente .entry-content h2,
body.page-id-246647 .entry-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.page-conditions-generales-de-vente .entry-content h2:first-of-type,
body.page-id-246647 .entry-content h2:first-of-type {
    margin-top: 2rem;
}

body.page-conditions-generales-de-vente .entry-content p,
body.page-id-246647 .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.page-conditions-generales-de-vente .entry-content ol,
body.page-conditions-generales-de-vente .entry-content ul,
body.page-id-246647 .entry-content ol,
body.page-id-246647 .entry-content ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

body.page-conditions-generales-de-vente .entry-content ol li,
body.page-conditions-generales-de-vente .entry-content ul li,
body.page-id-246647 .entry-content ol li,
body.page-id-246647 .entry-content ul li {
    margin-bottom: 0.75rem;
}

body.page-conditions-generales-de-vente .entry-content p strong,
body.page-id-246647 .entry-content p strong {
    color: #333;
    font-weight: 600;
}

body.page-conditions-generales-de-vente .entry-content div[style*="background-color: #f8f9fa"],
body.page-id-246647 .entry-content div[style*="background-color: #f8f9fa"] {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa !important;
    border-left: 4px solid var(--primary, #42a0a6);
    border-radius: 4px;
}

/* Responsive Conditions générales de vente */
@media (max-width: 768px) {

    body.page-conditions-generales-de-vente .entry-content,
    body.page-id-246647 .entry-content {
        padding: 1.5rem 1rem 3rem;
    }

    body.page-conditions-generales-de-vente .entry-content h1,
    body.page-id-246647 .entry-content h1 {
        font-size: 2rem;
    }

    body.page-conditions-generales-de-vente .entry-content h2,
    body.page-id-246647 .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    body.page-conditions-generales-de-vente .entry-content p,
    body.page-conditions-generales-de-vente .entry-content ol,
    body.page-conditions-generales-de-vente .entry-content ul,
    body.page-id-246647 .entry-content p,
    body.page-id-246647 .entry-content ol,
    body.page-id-246647 .entry-content ul {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ========================================
   POLITIQUE DE CONFIDENTIALITÉ PAGE STYLES
   Aligné sur Mentions légales + fond crème (autres pages légales)
   ======================================== */

body.page-politique-de-confidentialite,
body.page-politique-de-confidentialite-2,
body.privacy-policy {
    background-color: var(--color-cream);
}

body.page-politique-de-confidentialite #page,
body.page-politique-de-confidentialite-2 #page,
body.privacy-policy #page,
body.page-politique-de-confidentialite #content,
body.page-politique-de-confidentialite-2 #content,
body.privacy-policy #content,
body.page-politique-de-confidentialite .site-main,
body.page-politique-de-confidentialite-2 .site-main,
body.privacy-policy .site-main {
    background-color: var(--color-cream);
}

body.page-politique-de-confidentialite .entry-header .entry-title,
body.page-politique-de-confidentialite-2 .entry-header .entry-title,
body.privacy-policy .entry-header .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
}

body.page-politique-de-confidentialite .entry-content,
body.page-politique-de-confidentialite-2 .entry-content,
body.privacy-policy .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

body.page-politique-de-confidentialite .entry-content h1,
body.page-politique-de-confidentialite-2 .entry-content h1,
body.privacy-policy .entry-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    padding-top: 1rem;
}

body.page-politique-de-confidentialite .entry-content h2,
body.page-politique-de-confidentialite-2 .entry-content h2,
body.privacy-policy .entry-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary, #42a0a6);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

body.page-politique-de-confidentialite .entry-content h2:first-of-type,
body.page-politique-de-confidentialite-2 .entry-content h2:first-of-type,
body.privacy-policy .entry-content h2:first-of-type {
    margin-top: 2rem;
}

body.page-politique-de-confidentialite .entry-content h3,
body.page-politique-de-confidentialite-2 .entry-content h3,
body.privacy-policy .entry-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

body.page-politique-de-confidentialite .entry-content p,
body.page-politique-de-confidentialite-2 .entry-content p,
body.privacy-policy .entry-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

body.page-politique-de-confidentialite .entry-content ul,
body.page-politique-de-confidentialite-2 .entry-content ul,
body.privacy-policy .entry-content ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

body.page-politique-de-confidentialite .entry-content ol,
body.page-politique-de-confidentialite-2 .entry-content ol,
body.privacy-policy .entry-content ol {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

body.page-politique-de-confidentialite .entry-content ul li,
body.page-politique-de-confidentialite-2 .entry-content ul li,
body.privacy-policy .entry-content ul li {
    margin-bottom: 0.75rem;
}

body.page-politique-de-confidentialite .entry-content ol li,
body.page-politique-de-confidentialite-2 .entry-content ol li,
body.privacy-policy .entry-content ol li {
    margin-bottom: 0.75rem;
}

body.page-politique-de-confidentialite .entry-content p strong,
body.page-politique-de-confidentialite-2 .entry-content p strong,
body.privacy-policy .entry-content p strong {
    color: #333;
    font-weight: 600;
}

/* Responsive Politique de confidentialité */
@media (max-width: 768px) {

    body.page-politique-de-confidentialite .entry-header .entry-title,
    body.page-politique-de-confidentialite-2 .entry-header .entry-title,
    body.privacy-policy .entry-header .entry-title {
        font-size: 2rem;
    }

    body.page-politique-de-confidentialite .entry-content,
    body.page-politique-de-confidentialite-2 .entry-content,
    body.privacy-policy .entry-content {
        padding: 1.5rem 1rem 3rem;
    }

    body.page-politique-de-confidentialite .entry-content h1,
    body.page-politique-de-confidentialite-2 .entry-content h1,
    body.privacy-policy .entry-content h1 {
        font-size: 2rem;
    }

    body.page-politique-de-confidentialite .entry-content h2,
    body.page-politique-de-confidentialite-2 .entry-content h2,
    body.privacy-policy .entry-content h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
    }

    body.page-politique-de-confidentialite .entry-content h3,
    body.page-politique-de-confidentialite-2 .entry-content h3,
    body.privacy-policy .entry-content h3 {
        font-size: 1.2rem;
    }

    body.page-politique-de-confidentialite .entry-content p,
    body.page-politique-de-confidentialite .entry-content ul,
    body.page-politique-de-confidentialite .entry-content ol,
    body.page-politique-de-confidentialite-2 .entry-content p,
    body.page-politique-de-confidentialite-2 .entry-content ul,
    body.page-politique-de-confidentialite-2 .entry-content ol,
    body.privacy-policy .entry-content p,
    body.privacy-policy .entry-content ul,
    body.privacy-policy .entry-content ol {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* ========================================
   LANGUAGE SWITCHER (WPML)
   ======================================== */

.language-switcher-wrapper {
    margin-right: 0.5rem;
}

.language-switcher-btn {
    padding: 0.5rem 0.75rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-switcher-btn:hover,
.language-switcher-btn:focus {
    color: var(--primary, #42a0a6);
    border-color: var(--primary, #42a0a6);
    background: #f8f9fa;
    text-decoration: none;
}

.language-switcher-btn::after {
    margin-left: 0.25rem;
    font-size: 0.75rem;
}

.language-code {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-switcher-wrapper .dropdown-menu {
    min-width: 150px;
    padding: 0.5rem 0;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-switcher-wrapper .dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: background-color 0.2s ease;
}

.language-switcher-wrapper .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary, #42a0a6);
}

.language-switcher-wrapper .dropdown-item.active {
    background-color: #f0f9fa;
    color: var(--primary, #42a0a6);
    font-weight: 500;
}

.language-switcher-wrapper .dropdown-item .check-mark {
    color: var(--primary, #42a0a6);
    font-weight: bold;
    margin-left: 0.5rem;
}

.language-name {
    flex: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .language-switcher-wrapper {
        margin-right: 0.25rem;
    }

    .language-switcher-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   CERCLE SUIVEUR DE CURSEUR
   ======================================== */

.cursor-circle {
    position: fixed;
    width: 14px;
    height: 14px;
    border: 2px solid var(--color-gold, #D4AF37);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.08s ease-out, width 0.25s ease-out, height 0.25s ease-out;
}

.cursor-circle.is-over-menu {
    width: 32px;
    height: 32px;
}
