/* =========================================================
   BRIGHT ENGLISH STUDIO - DESIGN SYSTEM COMPLET
   ========================================================= */

/* 1. VARIABLES GLOBALES (Synchronisées avec theme.json) */
:root {
    --color-primary: #1A365D;
    /* Bleu profond */
    --color-accent: #FFC107;
    /* Jaune action */
    --color-bg: #F8F9FA;
    /* Fond clair */
    --color-dark: #2D3748;
    /* Texte principal */
    --color-white: #FFFFFF;

    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Fraunces', serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.05);
    --shadow-md: 0 8px 24px rgba(26, 54, 93, 0.08);
    --shadow-lg: 0 16px 40px rgba(26, 54, 93, 0.12);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. RESET & BASE */
/* Anti overflow horizontal global (clip ne bloque pas le sticky) */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

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

/* 3. LAYOUT UTILITAIRES */
.container {
    max-width: 1440px;
    /* Largeur augmentée pour un rendu plus premium */
    margin: 0 auto;
    padding: 0 40px;
}

.content-area {
    padding: 60px 0;
}

/* 4. COMPOSANTS : BOUTONS */
.btn,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary,
.wp-block-button__link {
    background-color: var(--color-accent);
    color: var(--color-primary) !important;
}

.btn-primary:hover,
.wp-block-button__link:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
}

/* 5. MICRO-INTERCTIONS & ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* 6. ACCESSIBILITÉ & FOCUS */
:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}


/* =========================================================
   HEADER & NAVIGATION & LOGOS
   ========================================================= */
.bes-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bes-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 240px;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bes-header.scrolled .bes-header-inner {
    min-height: 120px;
}

.bes-header.scrolled .bes-logo-img {
    height: 100px;
}

.bes-logo a {
    display: flex;
    align-items: center;
}

.bes-logo-img {
    height: 199px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Navigation Desktop --- */
.bes-nav-desktop .bes-main-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bes-main-menu li a {
    font-weight: 600;
    font-size: 1.05rem;
    color: #2D3748;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bes-main-menu li a:hover,
.bes-main-menu li.current-menu-item a {
    color: #ffffff;
    background-color: #1A365D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.2);
}

/* --- Bouton Espace (Desktop) --- */
.bes-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.bes-account-btn {
    background-color: #1A365D;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2);
}

.bes-account-btn:hover {
    background-color: #FFC107;
    color: #1A365D !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* --- Bouton Hamburger (Mobile) --- */
.bes-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background-color: #FFC107;
    padding: 14px;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.bes-burger span {
    width: 28px;
    height: 3px;
    background-color: #1A365D;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.bes-burger:hover {
    transform: scale(1.05);
}

.bes-burger.active {
    background-color: #ffffff;
}

.bes-burger.active span {
    background-color: #1A365D;
}

.bes-burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.bes-burger.active span:nth-child(2) {
    opacity: 0;
}

.bes-burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Menu Mobile --- */
.bes-nav-mobile {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background-color: #1A365D;
    padding: 60px 40px 40px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
}

.bes-nav-mobile.active {
    transform: translateX(0);
}

.bes-mobile-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.bes-mobile-logo img {
    height: 140px;
    width: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.bes-mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}

.bes-mobile-menu li a {
    font-size: 2rem;
    font-family: 'Fraunces', serif;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bes-mobile-menu li a:hover {
    color: #FFC107;
}

.bes-mobile-cta {
    margin-top: 20px;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    background-color: #FFC107;
    color: #1A365D !important;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1024px) {

    .bes-nav-desktop,
    .bes-account-btn {
        display: none;
    }

    .bes-burger {
        display: flex;
    }

    .bes-header-inner {
        min-height: 160px;
        padding: 15px 0;
    }

    .bes-logo-img {
        height: 140px;
    }
}


/* =========================================================
   FOOTER
   ========================================================= */
.bes-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.bes-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.bes-footer-slogan {
    color: var(--color-accent);
    font-style: italic;
    margin-bottom: 20px;
}

.bes-footer-contact {
    list-style: none;
}

.bes-footer-contact li {
    margin-bottom: 8px;
}

.bes-footer-contact a,
.bes-footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.bes-footer-contact a:hover,
.bes-footer-col ul li a:hover {
    color: var(--color-accent);
}

.bes-footer-col h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.bes-footer-col ul {
    list-style: none;
}

.bes-footer-col ul li {
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .bes-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .bes-footer-contact,
    .bes-footer-col ul {
        padding: 0;
    }
}


/* =========================================================
   PAGE D'ACCUEIL : HERO & SECTIONS
   ========================================================= */

/* 1. HERO SECTION */
.bes-hero-section {
    text-align: center;
    padding: 120px 24px 100px;
    background-color: #1A365D;
    background-image: radial-gradient(circle at 50% 50%, #244a80 0%, #1A365D 70%);
    color: #ffffff;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: 80px;
    overflow: hidden;
}

.bes-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.bes-hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.bes-hero-section .wp-block-button__link {
    background-color: #FFC107;
    color: #1A365D;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.bes-hero-section .wp-block-button__link:hover {
    background-color: #ffffff;
    color: #1A365D !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* 2. SECTION NIVEAUX */
.bes-levels-section {
    max-width: 1440px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.bes-section-subtitle {
    font-size: 1.1rem;
    color: #2D3748;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto 50px;
}

.bes-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.bes-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(26, 54, 93, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bes-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.1);
}

.bes-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
}

.bes-card-beginner .bes-card-icon {
    background-color: #4CAF50;
}

.bes-card-intermediate .bes-card-icon {
    background-color: #2196F3;
}

.bes-card-advanced .bes-card-icon {
    background-color: #9C27B0;
}

.bes-card h3 {
    margin-bottom: 15px;
}

.bes-card p {
    margin-bottom: 25px;
    color: #2D3748;
    opacity: 0.8;
    flex-grow: 1;
}

.bes-btn-card .wp-block-button__link {
    background-color: transparent;
    color: #1A365D;
    border: 2px solid #1A365D;
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bes-btn-card .wp-block-button__link:hover {
    background-color: #1A365D;
    color: #ffffff !important;
}

/* 3. SECTION AVANTAGES */
.bes-features-section {
    background-color: #ffffff;
    padding: 80px 40px;
    border-top: 1px solid rgba(26, 54, 93, 0.05);
    border-bottom: 1px solid rgba(26, 54, 93, 0.05);
}

.bes-features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.bes-feature-item {
    text-align: center;
    padding: 20px;
}

.bes-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bes-feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1A365D;
}

.bes-feature-item p {
    color: #2D3748;
    opacity: 0.7;
}


/* =========================================================
   WOOCOMMERCE : BOUTIQUE PREMIUM & DENSE
   ========================================================= */

/* En-tête de la boutique */
.woocommerce-products-header {
    background: linear-gradient(135deg, #1A365D 0%, #244a80 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: 60px;
}

.woocommerce-products-header h1 {
    color: #ffffff;
    font-size: 3rem;
}

/* Menu de tri */
.woocommerce-ordering {
    margin-bottom: 40px !important;
    text-align: right;
}

.woocommerce-ordering select {
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid #1A365D;
    background-color: #ffffff;
    color: #1A365D;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.woocommerce-ordering select:hover {
    border-color: #FFC107;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

/* Grille des produits : 4 colonnes */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 0 60px;
    padding: 0;
    list-style: none;
    max-width: 1440px;
}

.woocommerce ul.products li.product {
    margin: 0 !important;
    width: 100% !important;
}

/* Carte Produit */
.bes-woo-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(26, 54, 93, 0.05);
    position: relative;
}

.bes-woo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(26, 54, 93, 0.15);
    border-color: #FFC107;
}

/* Image produit */
.bes-woo-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #F8F9FA;
    display: block;
}

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

.bes-woo-card:hover .bes-woo-card-img img {
    transform: scale(1.08);
}

/* Corps de la carte */
.bes-woo-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.bes-woo-title-link {
    text-decoration: none;
}

.bes-woo-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1A365D;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.bes-woo-card:hover .bes-woo-title {
    color: #FFC107;
}

.bes-woo-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 16px;
}

.bes-woo-price ins {
    color: #1A365D;
    text-decoration: none;
}

/* Bouton d'achat grille */
.bes-woo-btn {
    margin-top: auto;
    background-color: #1A365D !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    display: block;
    width: 100%;
}

.bes-woo-btn:hover {
    background-color: #FFC107 !important;
    color: #1A365D !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
    margin: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 12px 18px !important;
    border-radius: 50% !important;
    background: #ffffff;
    color: #1A365D !important;
    font-weight: 700;
    border: 1px solid rgba(26, 54, 93, 0.1);
    transition: all 0.3s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #1A365D !important;
    color: #ffffff !important;
    border-color: #1A365D;
    transform: translateY(-2px);
}



/* =========================================================
   WOOCOMMERCE : PAGE PRODUIT SEULE (VITRINE PREMIUM)
   ========================================================= */

.bes-header-inner {
    min-height: 130px;
}

.bes-logo-img {
    height: 130px;
}

/* On utilise .container (défini globalement à 1440px) au lieu de .bes-woo-container */
.woocommerce div.product {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 60px;
}

/* FIX : Forcer les colonnes à 100% de leur cellule grid */
.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    width: 100% !important;
}

.woocommerce div.product .woocommerce-product-gallery {
    position: sticky;
    top: 140px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.12);
    background: #fff;
}

.woocommerce div.product .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.woocommerce div.product .summary {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.06);
}

.woocommerce div.product .product_title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.1;
}

.woocommerce div.product .price {
    font-size: 2rem !important;
    color: #1A365D !important;
    font-weight: 800 !important;
    margin-bottom: 30px !important;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(26, 54, 93, 0.08);
    display: block;
}

.woocommerce div.product .price del {
    color: #94a3b8 !important;
    font-weight: 400;
    margin-right: 10px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2D3748;
    margin-bottom: 30px;
}

.woocommerce div.product form.cart {
    margin-bottom: 30px;
}

.woocommerce div.product form.cart .button {
    background-color: #FFC107;
    color: #1A365D;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce div.product form.cart .button:hover {
    background-color: #1A365D;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(26, 54, 93, 0.25);
}

/* Badges de confiance */
.bes-trust-badges {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.bes-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A365D;
    flex: 1;
}

.bes-badge-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

/* =========================================================
   SECTION COURS PLEINE LARGEUR (En bas de page)
   ========================================================= */
.bes-fullwidth-course {
    background: #1A365D;
    padding: 80px 40px;
    margin-top: 60px;
    color: #ffffff;
}

.bes-course-materials h4 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.bes-course-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.bes-fullwidth-course .bes-locked-content {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.bes-fullwidth-course .bes-locked-content h3 {
    color: #ffffff;
}

.bes-fullwidth-course .bes-locked-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Zone Verrouillée dans le fond bleu */
.bes-fullwidth-course .bes-locked-content {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.bes-fullwidth-course .bes-locked-content h3 {
    color: #ffffff;
}

.bes-fullwidth-course .bes-locked-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================================
   SÉCURITÉ & LECTEUR DE CONTENU
   ========================================================= */

.bes-course-materials h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1A365D;
}

/* Zone Verrouillée */
.bes-locked-content {
    text-align: center;
    padding: 50px 30px;
    background: #F8F9FA;
    border: 2px dashed #1A365D;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(26, 54, 93, 0.03);
}

.bes-locked-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.bes-locked-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.bes-locked-content p {
    max-width: 400px;
    margin: 0 auto 30px;
    color: #2D3748;
    opacity: 0.8;
    line-height: 1.6;
}

.bes-locked-content .btn {
    margin: 0 10px;
}

/* Lecteur Sécurisé */
.bes-secure-player {
    background: #1A365D;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.15);
}

.bes-secure-player iframe,
.bes-secure-player video {
    border-radius: 8px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.bes-audio-player {
    padding: 30px 0;
    text-align: center;
}

.bes-audio-player audio {
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}


/* =========================================================
   RESPONSIVE GLOBAL (Mobile & Tablette)
   ========================================================= */

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

    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .woocommerce div.product .woocommerce-product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {

    /* Header & Home */
    .bes-hero-title {
        font-size: 2.5rem;
    }

    .bes-hero-subtitle {
        font-size: 1.1rem;
    }

    .bes-hero-section {
        padding: 80px 20px 60px;
    }

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

    /* WooCommerce */
    .woocommerce-products-header h1 {
        font-size: 2rem;
    }

    .woocommerce-products-header {
        padding: 60px 20px;
        margin-bottom: 40px;
    }

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

    .bes-woo-container {
        padding: 30px 20px;
    }

    .woocommerce div.product .summary {
        padding: 30px 20px;
    }

    .woocommerce div.product .product_title {
        font-size: 1.8rem;
    }

    .bes-trust-badges {
        flex-wrap: wrap;
        gap: 20px;
    }

    .bes-badge {
        min-width: 45%;
    }

    /* Sécurité */
    .bes-locked-content .btn {
        display: block;
        margin: 0 auto 15px;
        width: 80%;
    }
}