.hero-action-box {
    margin-top: 50px;
    text-align: center;
}

.btn-explorer-main {
    display: inline-block;
    padding: 18px 55px;
    background: rgba(0, 0, 0, 0.4); /* Fond sombre semi-transparent pour voir la vidéo derrière */
    color: #f1e4bc; /* Ton doré iconique */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-family: 'Cinzel', serif;
    
    /* Bordure Dorée fine */
    border: 1px solid #f1e4bc;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Ombre légère pour le détacher de la fumée */
    box-shadow: 0 0 15px rgba(241, 228, 188, 0.1);
    backdrop-filter: blur(8px); /* Floute légèrement la vidéo sous le bouton */
}

/* Effet de brillance au survol */
.btn-explorer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(241, 228, 188, 0.3),
        transparent
    );
    transition: all 0.6s;
}

.btn-explorer-main:hover {
    color: #000;
    background: #f1e4bc; /* Le bouton devient dorée plein au survol */
    box-shadow: 0 0 30px rgba(241, 228, 188, 0.4);
    transform: translateY(-3px); /* Petit saut vers le haut */
}

.btn-explorer-main:hover::before {
    left: 100%;
}

.btn-sparkle {
    margin-left: 10px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-explorer-main:hover .btn-sparkle {
    display: inline-block;
    transform: rotate(20deg) scale(1.2);
}

.sophro-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 20px;
}
.sophro-text { flex: 1; }
.sophro-visual { flex: 1; }

.premium-frame {
    border: 1px solid #f1e4bc;
    padding: 15px;
    position: relative;
}
.premium-frame img {
    width: 100%;
    display: block;
    filter: sepia(0.2) contrast(1.1); /* Donne un petit côté mystique à la photo */
}
/* Adaptation mobile */
@media (max-width: 768px) {
    .sophro-inner { flex-direction: column; text-align: center; }
    .gold-divider { margin: 15px auto !important; }
}


/* --- Base & Variables --- */
:root {
    --gold-primary: #d4af37;
    --gold-bright: #f9e2af;
    --dark-bg: #0a0a0a;
    --dark-card: #151515;
    --text-light: #e0e0e0;
    --smoke-opacity: rgba(255, 255, 255, 0.05);
}

.noctis-premium-v2 {
       background-image: 
        radial-gradient(circle at 50% 50%, rgba(40, 30, 10, 0.4) 0%, transparent 70%),
        url('https://www.transparenttextures.com/patterns/dark-matter.png'); /* Texture légère */
    color: var(--text-light);
    font-family: 'Playfair Display', serif; /* À ajouter via Google Fonts si possible */
    line-height: 1.8;
    padding: 60px 0;
}

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

/* --- Header & Titles --- */
.premium-hero {
    text-align: center;
    margin-bottom: 60px;
}

.gold-shimmer-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.divider-diamond {
    color: var(--gold-primary);
    font-size: 1.5rem;
    opacity: 0.8;
}

.premium-h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-bright);
    font-size: 1.8rem;
    margin-top: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    padding-bottom: 5px;
}

/* --- Grid & Layout --- */
.premium-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.premium-lead {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 25px;
}

/* --- The Treasure Box (Liste) --- */
.treasure-list-box {
    background: var(--dark-card);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(0,0,0,0.5), inset 0 0 15px rgba(212, 175, 55, 0.05);
    border-radius: 2px;
}

.gold-h3 {
    color: var(--gold-primary);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.premium-list {
    list-style: none;
    padding: 0;
}

.premium-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.premium-list .dot {
    color: var(--gold-primary);
    margin-right: 10px;
    text-shadow: 0 0 5px var(--gold-primary);
}

/* --- Button (Le bouton JOLI) --- */
.cta-wrapper {
    text-align: center;
    margin: 40px 0;
}

.btn-premium-gold {
    display: inline-block;
    position: relative;
    padding: 15px 40px;
    background: transparent;
    color: var(--gold-bright) !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    border: 1px solid var(--gold-primary);
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-premium-gold:hover {
    color: var(--dark-bg) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-premium-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-premium-gold:hover::before {
    left: 100%;
}

.btn-premium-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-in-out;
    z-index: -2;
}

.btn-premium-gold:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- Footer & Notice --- */
.premium-footer-content {
    margin-top: 80px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.medical-notice {
    font-size: 0.8rem;
    opacity: 0.5;
    font-style: italic;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .premium-main-grid { grid-template-columns: 1fr; }
    .gold-shimmer-title { font-size: 2rem; }
}

/* --- La barre Newsletter au-dessus --- */
.footer-newsletter-bar {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 0;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.02); /* Très léger reflet */
}

.newsletter-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.newsletter-intro h4 {
    color: #d4af37;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.newsletter-intro p {
    margin: 5px 0 0;
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Formulaire sur une ligne --- */
.newsletter-form-inline {
    display: flex;
    gap: 0; /* Colle l'input et le bouton pour un look moderne */
    min-width: 350px;
}

.premium-input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 12px 15px;
    color: #fff;
}

.btn-gold-ok {
    background: #d4af37;
    border: 1px solid #d4af37;
    color: #000;
    padding: 0 25px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-gold-ok:hover {
    background: #f9e2af;
}

/* --- Grille du bas --- */
.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes égales */
    gap: 30px;
}

@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr 1fr; } /* 2 colonnes sur tablette */
    .newsletter-flex { flex-direction: column; text-align: center; }
}

/* POSITIONNEMENT DU BLOC PANIER */
.panier-arcana-fixe {
    position: absolute !important;
    top: 20px !important;
    right: 40px !important; /* C'est ici qu'on force la droite */
    z-index: 9999 !important;
    display: block !important;
}

/* LE HALO LUMINEUX DERRIÈRE LE CHAUDRON */
.lien-chaudron {
    position: relative !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 220px !important; /* Zone du halo */
    height: 220px !important;
    text-decoration: none !important;
    background: radial-gradient(circle, rgba(241, 228, 188, 0.25) 0%, rgba(0,0,0,0) 70%) !important;
    border-radius: 50%;
}

/* L'IMAGE DU CHAUDRON (200PX) */
.img-chaudron {
    width: 200px !important;
    height: auto !important;
    display: block !important;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.8));
}

/* LE CHIFFRE (LA PERLE) */
.nombre-articles {
    position: absolute !important;
    top: 45px !important;
    right: 45px !important;
    background: #000 !important;
    color: #f1e4bc !important;
    border: 1.5px solid #f1e4bc !important;
    font-family: 'Cinzel', serif;
    font-size: 18px !important;
    width: 35px !important;
    height: 35px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(241, 228, 188, 0.5);
}

/* LOGO CENTRE (On s'assure qu'il reste à 300px ou plus) */
.header-logo-center img {
    width: 350px !important;
    height: auto;
    margin: 0 auto;
}
/* ============================================================
   TITRES DORÉS GRADIENT — EI-NOCTIS ARCANA
   ============================================================ */

/* Gradient doré sur tous les titres principaux */
h1, h2, h3,
.archive-title,
.product_title,
.entry-title,
.woocommerce-loop-product__title,
.noctis-product-body h3,
.section-title,
.gold-shimmer-title,
.archive-header-text h1,
.cat-title {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Exception : ne pas appliquer sur les boutons et éléments spéciaux */
.btn-explorer-main h1,
.btn-explorer-main h2,
.btn-gold-outline,
.etiquette-ancienne h1,
.etiquette-ancienne h2 {
    background: none !important;
    -webkit-text-fill-color: inherit !important;
    color: inherit !important;
}

/* ============================================================
   MASQUER LA VIGNETTE CATÉGORIE SUR LA PAGE BOUTIQUE/SHOP
   Empêche l'affichage de la card catégorie à côté des produits
   ============================================================ */
.woocommerce ul.products li.product-category,
.woocommerce-page ul.products li.product-category,
body.post-type-archive-product ul.products li.product-category,
.noctis-archive-grid .product-category {
    display: none !important;
}
