/*
 Theme Name:   Celestra Child
 Theme URI:    https://celestra.com.ar/
 Description:  Tema hijo premium para Celestra, basado en el manual de marca dark.
 Author:       Antigravity
 Author URI:   https://google.com
 Template:     astra
 Version:      1.4.0
 Text Domain:  celestra-child
*/

/* ==========================================================================
   DISEÑO DE MARCA - CELESTRA (DARK THEME)
   ========================================================================== */

:root {
    /* ── PALETA CROMÁTICA ── */
    /* Se prioriza el blanco/crema sobre el dorado para dar más luz */
    --gold-dark: #ffffff;
    --gold-light: #f9f5ee;

    --black: #000000;
    --white: #ffffff;
    --cream: #f9f5ee;
    --cream-dark: #f0e9d8;

    /* Dark Theme Core */
    --bg-main: #000000;
    --bg-sec: #0a0a0a;
    --surface: #141414;
    --surface-light: #1e1e1e;

    /* Tipografía y Color de Texto */
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --text-dim: #808080;
    --text-topo: #808080;

    /* ── BORDES Y SOMBRAS ── */
    --border: rgba(255, 255, 255, 0.15);
    --border-light: rgba(255, 255, 255, 0.25);

    --shadow-none: none;
    --shadow-sm: 0 4px 12px rgba(255, 255, 255, 0.08);
    --shadow-md: 0 12px 32px rgba(255, 255, 255, 0.12);
    --shadow-lg: 0 24px 64px rgba(255, 255, 255, 0.15);
    --shadow-gold: 0 10px 40px rgba(255, 255, 255, 0.25);
    /* Sombra ahora blanca */

    /* ── RADIOS ── */
    --radius-sharp: 2px;
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* ── ESPACIADO (Base 8px) ── */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;

    /* ── FUENTES ── */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Raleway', sans-serif;
}

/* ── ESTILOS GLOBALES ── */

body {
    background-color: var(--black) !important;
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

html {
    background-color: var(--black) !important;
}

/* ── ESCALA TIPOGRÁFICA ── */

h1,
.h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-main);
}

h2,
.h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-main);
}

h3,
.h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-main);
}

p,
.body-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
}

.text-display {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
}

.text-small {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.text-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

a {
    color: var(--gold-dark);
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--gold-light);
}

/* ── HEADER PREMIUM (GHD STYLE) ── */

.top-bar {
    background: var(--cream);
    color: var(--black);
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    /* Normal para paginas internas */
    z-index: 1001;
    margin: 0;
    padding: 0;
}

.premium-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    padding: var(--space-4) 0;
}

/* FONDO TRANSPARENTE EN HOME (Posición controlada por PHP .home-header-overlay-wrapper) */
body.home .premium-header,
body.front-page .premium-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%) !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
}

.menu-toggle {
    display: none;
}

.site-branding img,
.custom-logo-link img {
    height: auto !important;
    max-height: 32px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    display: block;
}

/* Evita espacio superior en el contenido */
.site-content,
.ast-container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

#page {
    background-color: var(--black);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding .logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.15em;
    color: var(--white);
    font-weight: 400;
}

.site-branding img {
    height: 32px;
    width: auto;
    display: block;
}

/* Nav */
.main-navigation ul {
    display: flex;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted) !important;
    position: relative;
    padding: var(--space-2) 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-dark);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--white) !important;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.action-item {
    color: var(--white);
    font-size: 18px;
    position: relative;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.action-item:hover {
    opacity: 0.7;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold-dark);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ── CLASES DE UTILIDAD ── */

.text-gold {
    color: var(--gold-dark) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-topo {
    color: var(--text-topo) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-dark {
    background-color: var(--bg-main) !important;
}

.bg-surface {
    background-color: var(--surface) !important;
}

.bg-gold {
    background-color: var(--gold-dark) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
    color: var(--black) !important;
}

/* ── COMPONENTES: BOTONES PREMIUM ── */

.btn-primary,
.button.primary {
    padding: 14px 36px;
    background: var(--cream);
    color: var(--black) !important;
    border: 1.5px solid var(--cream);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.btn-primary:hover,
.button.primary:hover {
    background: transparent;
    color: var(--cream) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.08);
}

.btn-secondary,
.button.secondary {
    padding: 13px 36px;
    background: transparent;
    color: var(--text-main) !important;
    border: 1.5px solid var(--text-main);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-secondary:hover,
.button.secondary:hover {
    background: var(--text-main);
    color: var(--black) !important;
}

.btn-ghost,
.button.ghost {
    padding: 13px 36px;
    background: transparent;
    color: var(--cream) !important;
    border: 1.5px solid var(--cream);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
}

.btn-ghost:hover,
.button.ghost:hover {
    background: var(--cream);
    color: var(--black) !important;
    transform: translateY(-1px);
}

.btn-dark,
.button.dark {
    padding: 14px 36px;
    background: var(--black);
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
    display: inline-block;
}

.btn-dark:hover,
.button.dark:hover {
    opacity: 0.8;
}

/* ── FOOTER PREMIUM (GHD STYLE) ── */

.site-footer {
    background: var(--bg-sec);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

.footer-newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-16);
}

.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: var(--space-6);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-light);
    border-right: none;
    padding: 14px 20px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.newsletter-form button {
    background: var(--gold-dark);
    color: var(--black);
    border: none;
    padding: 0 30px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.footer-col h5 {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: var(--space-3);
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold-dark);
}

.footer-socials {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-icon:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--space-8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.05em;
}

.payment-icons {
    display: flex;
    gap: var(--space-4);
    opacity: 0.5;
}

/* ── COMPONENTES: TARJETAS Y CONTENEDORES ── */

.card-premium {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card-premium:hover {
    border-color: var(--gold-dark);
    transform: translateY(-4px);
    background: var(--surface-light);
    box-shadow: var(--shadow-gold);
}

.card-glow {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--gold-dark);
    padding: var(--space-8);
    box-shadow: var(--shadow-gold);
    text-align: center;
}

/* ── EFECTOS DE DISEÑO ── */

.grain-overlay {
    position: relative;
}

.grain-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.blur-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

/* ── ANIMACIONES ── */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes scrollProgress {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.animate-fade-up {
    /* Desactivado para mejorar rendimiento y evitar parpadeos */
    opacity: 1 !important;
    transform: none !important;
}

/* ── WOOCOMMERCE LOOP (GHD STYLE) ── */

.woocommerce ul.products {
    margin: var(--space-8) 0 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: var(--space-8) !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
    text-align: left !important;
    /* Alineado a la izquierda */
    padding-bottom: var(--space-6) !important;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    margin-bottom: var(--space-2);
}

.woocommerce ul.products li.product img {
    aspect-ratio: 1/1;
    /* Más cuadrado como GHD */
    object-fit: cover;
    background: var(--surface);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-4) !important;
    /* Espacio reducido */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.02);
}

/* Badge de Oferta */
.woocommerce ul.products li.product .onsale {
    top: 15px !important;
    left: 15px !important;
    right: auto !important;
    margin: 0 !important;
    background: var(--gold-dark) !important;
    color: var(--black) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    padding: 5px 12px !important;
    min-height: auto !important;
    line-height: 1 !important;
    border-radius: var(--radius-sm) !important;
    z-index: 2;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    /* GHD no usa todo mayúsculas en títulos */
    color: var(--white) !important;
    margin-bottom: var(--space-1) !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}

.woocommerce ul.products li.product .price {
    font-size: 15px !important;
    color: var(--white) !important;
    /* Precio en blanco como GHD */
    font-weight: 600 !important;
    margin-bottom: var(--space-4) !important;
    display: block !important;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: var(--gold-dark);
}

.woocommerce ul.products li.product .price del {
    font-size: 0.8em;
    opacity: 0.5;
    margin-right: 8px;
}

.woocommerce ul.products li.product .button {
    background: transparent !important;
    color: var(--white) !important;
    border: 1px solid var(--white) !important;
    border-radius: var(--radius-pill) !important;
    padding: 10px 24px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    /* Alineado a la izquierda */
}

.woocommerce ul.products li.product .button:hover {
    background: var(--white) !important;
    color: var(--black) !important;
}

.woocommerce ul.products li.product .added_to_cart {
    display: block;
    font-size: 11px;
    margin-top: 10px;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── FIX PARA WPAUTOP (ESPACIOS EN BLANCO) ── */

.home-wrapper p:empty,
.home-wrapper>br {
    display: none !important;
}

/* Evita que WordPress envuelva secciones en etiquetas P con margen */
.home-wrapper>p {
    margin: 0 !important;
    padding: 0 !important;
    display: contents !important;
}

/* ── GHD INSPIRED LAYOUTS ── */

.ghd-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.ghd-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--black);
    min-height: 80vh;
}

.ghd-split-img {
    position: relative;
    overflow: hidden;
}

.ghd-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ghd-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-16);
    background: var(--bg-sec);
}

.ghd-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: var(--space-2);
    margin: var(--space-8) 0;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

/* Refined Product Grid */
.ghd-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin: var(--space-12) 0;
}

.ghd-product-card {
    background: transparent;
    transition: all 0.3s ease;
    padding-bottom: var(--space-6);
}

.ghd-product-img {
    aspect-ratio: 4/5;
    background: var(--surface);
    margin-bottom: var(--space-4);
    position: relative;
    overflow: hidden;
}

.ghd-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-8);
    transition: transform 0.5s ease;
}

.ghd-product-card:hover .ghd-product-img img {
    transform: scale(1.08);
}

.ghd-product-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--gold-dark);
    color: var(--black);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ghd-product-info {
    text-align: center;
}

.ghd-product-info h3 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.ghd-product-price {
    font-size: 14px;
    color: var(--gold-dark);
    font-weight: 400;
}

/* ── LAYOUT DE HOME (MODERNO Y ELEGANTE) ── */

.home-section {
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.container-tight {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

/* Hero Section */
.hero-v3 {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--black);
}

.hero-v3-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    z-index: 0;
}

.hero-v3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-v3-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-v3-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator {
    width: 20px;
    height: 35px;
    border: 1.5px solid var(--gold-dark);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    width: 2px;
    height: 6px;
    background: var(--gold-dark);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollProgress 1.5s infinite;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.feature-item {
    text-align: center;
    padding: var(--space-8);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: var(--space-4);
}

/* Product Spotlight */
.spotlight-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.spotlight-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.spotlight-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.spotlight-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.4);
}

/* Complementary Products */
.products-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-6);
}

.product-mini-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    padding: var(--space-4);
}

.product-mini-card:hover {
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.product-mini-img {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-4);
}

.product-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Banner */
.cta-banner {
    background: var(--surface-light);
    border: 1px solid var(--gold-dark);
    padding: var(--space-12);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(199, 174, 106, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

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

    /* Hero fixes */
    .hero-v3 {
        height: 100svh;
        padding-top: 60px;
    }

    .text-display,
    .hero-v3-content h1 {
        font-size: clamp(28px, 8vw, 36px) !important;
        margin: 15px 0 !important;
        line-height: 1.1 !important;
    }

    /* Trust banner wrap */
    .trust-banner-inner {
        flex-wrap: wrap !important;
        gap: 15px;
    }

    /* Masterpiece Split */
    .ghd-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ghd-split-img {
        max-height: 50vh;
        width: 100%;
    }

    .ghd-split-img img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
    }

    .ghd-split-content {
        padding: var(--space-8) var(--space-6);
        text-align: center;
    }

    .ghd-split-content h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .ghd-split-buttons {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .ghd-split-buttons .btn-primary,
    .ghd-split-buttons .btn-dark,
    .ghd-split-buttons .btn-ghost {
        width: 100%;
    }

    /* Bento Grid */
    .ghd-bento {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
        gap: var(--space-2);
    }

    .bento-item img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-tall {
        grid-row: span 2;
    }

    /* Mobile Menu Logic */
    .menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    #site-navigation {
        display: none !important;
    }

    #site-navigation.toggled {
        display: block !important;
    }

    #site-navigation ul {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.98) !important;
        backdrop-filter: blur(12px) !important;
        padding: var(--space-4) 0 !important;
        text-align: center !important;
        z-index: 99999 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .top-bar {
        font-size: 8px !important;
        line-height: 1.2 !important;
        padding: 8px 5px !important;
        height: auto !important;
    }

    /* Spotlight Layout */
    .spotlight-layout {
        grid-template-columns: 1fr;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ── AJUSTES ESPECÍFICOS PARA ASTRA ── */

.ast-container {
    max-width: 1200px;
}

/* Old absolute masthead removed */

.main-navigation a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Iconos de Header y Mobile Menu Toggle */
.action-item,
.action-item svg,
.menu-toggle,
.ast-mobile-menu-buttons .menu-toggle {
    color: var(--white) !important;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item>a,
.main-navigation .current_page_item>a,
.main-header-menu .current-menu-item>a,
.main-header-menu .current_page_item>a {
    color: var(--cream) !important;
}

/* ==========================================================================
   SINGLE PRODUCT - CELESTRA CONVERSION PDP
   ========================================================================== */

.celestra-product-page,
.celestra-single-product {
    background: var(--black);
    color: var(--text-main);
}

.celestra-pdp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

.celestra-pdp-hero {
    position: relative;
    padding: var(--space-12) 0 var(--space-16);
    overflow: hidden;
}

.celestra-pdp-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 174, 106, 0.5), transparent);
}

.celestra-pdp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    gap: var(--space-12);
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Fix Astra Margin Issues */
.ast-plain-container.ast-no-sidebar #primary {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.ast-plain-container.ast-no-sidebar .entry-content {
    margin-top: 0 !important;
}

.celestra-pdp-gallery {
    position: relative;
}

.celestra-pdp-main-image {
    aspect-ratio: 1 / 1;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.celestra-pdp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(22px, 5vw, 72px);
}

.celestra-pdp-sale-badge,
.celestra-pdp-urgency {
    background: var(--gold-dark);
    color: var(--black);
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.celestra-pdp-sale-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 3;
    padding: 9px 14px;
}

.celestra-pdp-urgency {
    padding: 8px 12px;
    white-space: nowrap;
}

.celestra-pdp-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3);
    margin-top: var(--space-3);
}

.celestra-pdp-thumb {
    aspect-ratio: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: block;
    overflow: hidden;
}

.celestra-pdp-thumb:hover {
    border-color: var(--gold-dark);
}

.celestra-pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.celestra-pdp-summary {
    position: sticky;
    top: 112px;
    background: rgba(20, 20, 20, 0.76);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-md);
}

.celestra-pdp-breadcrumb,
.celestra-pdp-breadcrumb a {
    color: var(--text-dim);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.celestra-pdp-breadcrumb {
    margin-bottom: var(--space-6);
}

.celestra-pdp-title {
    font-size: clamp(40px, 5vw, 68px);
    margin: var(--space-3) 0 var(--space-4);
}

.celestra-pdp-rating {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    align-items: center;
    margin-bottom: var(--space-6);
    color: var(--gold-dark);
    font-size: 13px;
}

.celestra-pdp-rating strong,
.celestra-pdp-rating em {
    color: var(--text-muted);
    font-style: normal;
}

.celestra-pdp-promise p {
    margin-bottom: var(--space-4);
}

.celestra-pdp-benefits {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: 0;
    display: grid;
    gap: var(--space-3);
}

.celestra-pdp-benefits li {
    color: var(--text-main);
    font-size: 14px;
    padding-left: 26px;
    position: relative;
}

.celestra-pdp-benefits li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-dark);
    position: absolute;
    left: 4px;
    top: 10px;
    box-shadow: 0 0 18px rgba(199, 174, 106, 0.55);
}

.celestra-pdp-buybox {
    border-top: 1px solid var(--border);
    padding-top: var(--space-6);
}

.celestra-pdp-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    margin-bottom: var(--space-5, 20px);
}

.celestra-pdp-stock {
    color: var(--gold-dark);
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
}

.celestra-pdp-summary .price {
    color: var(--white);
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.celestra-pdp-summary .price del {
    color: var(--text-dim);
    font-size: 0.72em;
    margin-right: var(--space-2);
    opacity: 0.8;
}

.celestra-pdp-summary .price ins {
    color: var(--gold-light);
    text-decoration: none;
}

.celestra-pdp-summary form.cart {
    display: grid;
    gap: var(--space-4);
    margin: 0;
}

.celestra-pdp-summary form.cart .quantity {
    margin: 0 !important;
}

.celestra-pdp-summary form.cart .qty {
    width: 88px;
    min-height: 46px;
    background: var(--black);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    color: var(--white);
    text-align: center;
}

.celestra-pdp-summary form.cart .single_add_to_cart_button,
.celestra-pdp-summary .button {
    width: 100%;
    min-height: 54px;
    background: var(--gold-dark) !important;
    border: 0 !important;
    border-radius: var(--radius-pill) !important;
    color: var(--black) !important;
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.celestra-pdp-summary form.cart .single_add_to_cart_button:hover,
.celestra-pdp-summary .button:hover {
    background: var(--gold-light) !important;
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.celestra-pdp-summary table.variations {
    width: 100%;
    margin: 0;
}

.celestra-pdp-summary table.variations th,
.celestra-pdp-summary table.variations td {
    display: block;
    padding: 0 0 var(--space-2);
    background: transparent;
}

.celestra-pdp-summary table.variations label {
    color: var(--text-main);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.celestra-pdp-summary table.variations select {
    width: 100%;
    min-height: 46px;
    background: var(--black);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--white);
    padding: 0 var(--space-4);
}

.celestra-pdp-microcopy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
    margin-top: var(--space-5, 20px);
}

.celestra-pdp-microcopy span,
.celestra-pdp-box-points span {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.35;
    padding: var(--space-3);
    text-align: center;
}

.celestra-pdp-strip {
    background: var(--bg-sec);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.celestra-pdp-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.celestra-pdp-strip-grid div {
    border-right: 1px solid var(--border);
    padding: var(--space-6);
}

.celestra-pdp-strip-grid div:last-child {
    border-right: 0;
}

.celestra-pdp-strip-grid strong {
    color: var(--white);
    display: block;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
}

.celestra-pdp-strip-grid span {
    color: var(--text-muted);
    font-size: 12px;
}

.celestra-pdp-section {
    padding: var(--space-16) 0;
}

.celestra-pdp-split {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: var(--space-12);
    align-items: start;
}

.celestra-pdp-section h2 {
    font-size: clamp(34px, 4vw, 56px);
    margin: var(--space-3) 0 0;
}

.celestra-pdp-feature-list,
.celestra-pdp-tech-grid {
    display: grid;
    gap: var(--space-4);
}

.celestra-pdp-feature-list {
    grid-template-columns: repeat(2, 1fr);
}

.celestra-pdp-feature-list div,
.celestra-pdp-tech-grid div,
.celestra-featured-main-product {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-6);
}

.celestra-pdp-feature-list strong {
    color: var(--white);
    display: block;
    font-size: 15px;
    margin-bottom: var(--space-2);
}

.celestra-pdp-feature-list span,
.celestra-pdp-box-edition p {
    color: var(--text-muted);
    font-size: 14px;
}

.celestra-pdp-tech {
    background: linear-gradient(180deg, var(--black), var(--bg-sec));
}

.celestra-pdp-tech-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: var(--space-8);
}

.celestra-pdp-tech-grid span {
    color: var(--gold-dark);
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: var(--space-6);
}

.celestra-pdp-tech-grid h3 {
    margin-bottom: var(--space-3);
}

.celestra-pdp-tech-grid p {
    font-size: 14px;
    margin: 0;
}

.celestra-pdp-box-edition {
    background:
        linear-gradient(135deg, rgba(199, 174, 106, 0.14), transparent 42%),
        var(--surface);
    border: 1px solid rgba(199, 174, 106, 0.35);
    border-radius: var(--radius-md);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-12);
    padding: var(--space-12);
}

.celestra-pdp-box-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    align-content: center;
}

.celestra-pdp-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.celestra-pdp-cross-sell .products {
    margin-top: var(--space-8) !important;
}

.celestra-featured-main-product {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: var(--space-6);
    align-items: center;
    max-width: 720px;
}

.celestra-featured-main-product img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.celestra-featured-main-product h3 {
    margin: 0 0 var(--space-2);
}

.celestra-featured-main-product p {
    font-size: 14px;
    margin-bottom: var(--space-3);
}

.celestra-pdp-accordions {
    border-top: 1px solid var(--border);
}

.celestra-pdp-accordions details {
    border-bottom: 1px solid var(--border);
    padding: var(--space-5, 20px) 0;
}

.celestra-pdp-accordions summary {
    color: var(--white);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.celestra-pdp-accordions p {
    font-size: 14px;
    margin: var(--space-3) 0 0;
}

@media (max-width: 1024px) {

    .celestra-pdp-hero-grid,
    .celestra-pdp-split,
    .celestra-pdp-box-edition {
        grid-template-columns: 1fr;
    }

    .celestra-pdp-summary {
        position: static;
    }

    .celestra-pdp-strip-grid,
    .celestra-pdp-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .celestra-pdp-container {
        padding: 0 var(--space-4);
    }

    .celestra-pdp-hero {
        padding: var(--space-8) 0 var(--space-12);
    }

    .celestra-pdp-summary {
        padding: var(--space-6);
    }

    .celestra-pdp-title {
        font-size: 38px;
    }

    .celestra-pdp-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .celestra-pdp-microcopy,
    .celestra-pdp-strip-grid,
    .celestra-pdp-feature-list,
    .celestra-pdp-tech-grid,
    .celestra-pdp-box-points {
        grid-template-columns: 1fr;
    }

    .celestra-pdp-strip-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .celestra-pdp-strip-grid div:last-child {
        border-bottom: 0;
    }

    .celestra-pdp-section {
        padding: var(--space-12) 0;
    }

    .celestra-pdp-box-edition {
        padding: var(--space-6);
    }

    .celestra-pdp-section-head {
        align-items: start;
        flex-direction: column;
    }

    .celestra-featured-main-product {
        grid-template-columns: 1fr;
    }

    .celestra-featured-main-product img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
}

/* ==========================================================================
   PDP v3 — NEW CONVERSION SECTIONS (IDENTICAL TO TEMPLATE)
   ========================================================================== */


.single-product .site-content,
.single-product .ast-container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

:root {
    --gold: #ffffff;
    --gold-light: #f9f5ee;
    --gold-dark: #e6e6e6;
    --black: #0A0A08;
    --black-soft: #111110;
    --surface: #161614;
    --surface-2: #1E1E1B;
    --surface-3: #252520;
    --border: rgba(255, 255, 255, 0.15);
    --border-mid: rgba(255, 255, 255, 0.25);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
    --radius: 2px;
    --radius-md: 4px;
}

.celestra-pdp-v3 *,
.celestra-pdp-v3 *::before,
.celestra-pdp-v3 *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.celestra-pdp-v3 {
    background: var(--black);
    color: var(--text-primary);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 9px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.announcement span {
    margin: 0 16px;
}

.announcement .dot {
    opacity: 0.5;
}

/* ── NAV ── */
.v3-nav {
    position: sticky;
    top: 36px;
    z-index: 99;
    background: rgba(10, 10, 8, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions a {
    color: var(--text-secondary);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

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

.cart-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
}

.cart-icon:hover {
    border-color: var(--gold);
}

.cart-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
}

/* ── URGENCY STRIP ── */
.urgency-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 10px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.urgency-strip .left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.urgency-strip .dot-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7CDE82;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.urgency-strip .right {
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.12em;
}

.countdown {
    display: flex;
    gap: 6px;
    align-items: center;
}

.countdown-unit {
    background: var(--surface-3);
    padding: 4px 8px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-primary);
    min-width: 32px;
    text-align: center;
}

.countdown-sep {
    color: var(--gold);
    font-weight: 500;
}

/* ── PRODUCT HERO (GHD STYLE) ── */
.product-hero {
    position: relative;
    display: flex;
    justify-content: flex-end;
    min-height: 80vh;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--black);
}

.product-gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-media-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg-img,
.hero-bg-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: opacity 0.8s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

.product-gallery-controls {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumb.active {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(199, 174, 106, 0.3);
    transform: translateY(-4px);
}

.video-thumb-placeholder {
    color: var(--gold);
    width: 24px;
    height: 24px;
}

.gallery-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Product Info Overlay */
.product-info {
    position: relative;
    z-index: 5;
    width: 480px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 50px 40px;
    border-left: none;
    min-height: 80vh;
    box-shadow: none;
}

/* Product Info */
.product-info {
    padding-left: 64px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
}

.product-breadcrumb {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-breadcrumb span {
    color: var(--gold);
}

.product-category {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.product-title {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-subtitle {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-secondary);
}

.rating-count {
    font-size: 13px;
    color: var(--text-muted);
}

.product-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.features-quick {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 0 !important;
    margin: 0 !important;
}

.feature-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 10px;
    height: 10px;
    stroke: var(--gold);
}

/* Product Accordions (Description & Features) */
.product-description-accordion details summary::-webkit-details-marker,
.product-features-accordion details summary::-webkit-details-marker {
    display: none;
}

.product-description-accordion details[open] .accordion-icon,
.product-features-accordion details[open] .accordion-icon {
    transform: rotate(45deg);
}

.product-description-accordion summary:hover,
.product-features-accordion summary:hover {
    color: var(--gold-light);
}

.product-description-accordion .accordion-icon,
.product-features-accordion .accordion-icon {
    transition: transform 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

.stock-warning {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stock-warning-text {
    font-size: 13px;
}

.stock-warning-text strong {
    color: var(--gold);
    font-weight: 500;
}

.stock-bar {
    height: 3px;
    background: var(--surface-3);
    border-radius: 2px;
    margin-top: 6px;
    flex: 1;
}

.stock-bar-fill {
    height: 3px;
    width: 28%;
    background: var(--gold);
    border-radius: 2px;
}

.price-block {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 8px;
}

.price-current {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    color: var(--text-primary);
}

.price-original {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
    font-family: var(--serif);
}

.price-badge {
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    border-radius: 1px;
    margin-bottom: 6px;
}

.price-note {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.qty-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.qty-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-btn {
    width: 38px;
    height: 38px;
    background: var(--surface-2);
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--surface-3);
}

.qty-value {
    width: 48px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    border: none;
    color: var(--text-primary);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 38px;
    line-height: 38px;
}

.cta-primary {
    width: 100%;
    height: 54px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.cta-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.cta-primary:active {
    transform: translateY(0);
}

.cta-secondary {
    width: 100%;
    height: 48px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-mid);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-secondary:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.trust-badges {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    flex-shrink: 0;
}

/* ── SOCIAL PROOF STRIP ── */
.social-proof-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    margin-top: 80px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-number {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.proof-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    max-width: 100px;
    line-height: 1.4;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── SPECS ── */
.specs-section {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 60px;
}

.section-tag {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 56px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 56px;
}

.spec-item {
    background: var(--surface);
    padding: 32px 28px;
    transition: background 0.2s;
}

.spec-item:hover {
    background: var(--surface-2);
}

.spec-value {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.spec-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.spec-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── BENEFITS ── */
.benefits-section {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    transition: border-color 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.benefit-card:hover {
    border-color: var(--border-mid);
    transform: translateY(-2px);
}

.benefit-number {
    font-family: var(--serif);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 400;
}

.benefit-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.benefit-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}

.benefit-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── LEATHER BOX ── */
.leather-section {
    margin: 80px 0 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 100%;
}

.leather-content {
    max-width: 480px;
}

.leather-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.leather-feat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.leather-feat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 7px;
    flex-shrink: 0;
}

.leather-feat-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.leather-visual {
    flex: 1;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.leather-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.leather-visual-text {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
}

/* ── URGENCY CTA BAND ── */
.urgency-cta {
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 60px;
    text-align: center;
    margin-top: 80px;
}

.urgency-cta .urgency-tag {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.urgency-cta h2 {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.1;
}

.urgency-cta p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.cta-inline-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 40px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.cta-inline-primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-1px);
}

.cta-inline-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 52px;
    padding: 0 32px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-mid);
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.cta-inline-secondary:hover {
    border-color: var(--gold);
    color: var(--text-primary);
}

/* ── REVIEWS ── */
.reviews-section {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 60px;
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.reviews-aggregate {
    display: flex;
    align-items: center;
    gap: 20px;
}

.agg-number {
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 300;
    line-height: 1;
    color: var(--gold);
}

.agg-right .stars-large {
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--gold);
}

.agg-right .agg-count {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: border-color 0.2s;
}

.review-card:hover {
    border-color: var(--border-mid);
}

.review-stars {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 14px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.author-info .name {
    font-size: 13px;
    font-weight: 500;
}

.author-info .meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
}

.verified-badge {
    margin-left: auto;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 7px;
    border-radius: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── COMPLEMENTARY ── */
.complementary-section {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 60px;
}

.complementary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--border-mid);
    transform: translateY(-2px);
}

.product-card-image {
    aspect-ratio: 4/3;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.product-card-image-label {
    font-family: var(--serif);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.product-card-body {
    padding: 20px;
}

.product-card-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold) !important;
    margin-bottom: 6px;
}

.product-card-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.2;
    color: var(--text-primary) !important;
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-muted) !important;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card-price {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--text-primary) !important;
}

.product-card-price ins {
    text-decoration: none;
    color: var(--gold) !important;
}

.product-card-price del {
    font-size: 0.7em;
    color: var(--text-muted) !important;
    margin-right: 8px;
}

.product-card-cta {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}

.product-card-cta:hover {
    border-color: var(--gold);
}

.product-card-cta svg {
    width: 12px;
    height: 12px;
    stroke: var(--gold);
}

/* ── WOOCOMMERCE LOOP GRID ── */
.woocommerce ul.products,
.woocommerce-page ul.products,
.complementary-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 32px !important;
    margin: 40px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    padding: 0 !important;
}

.price-badge {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 10px;
    border-radius: 2px;
}

/* ── FAQ ── */
.faq-section {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 0 60px;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    user-select: none;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, border-color 0.2s;
}

.faq-icon svg {
    width: 10px;
    height: 10px;
    stroke: var(--gold);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--gold);
}

.faq-answer {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 22px;
}

/* ── NEWSLETTER ── */
.newsletter-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 80px;
    padding: 72px 60px;
    text-align: center;
}

.newsletter-section h2 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 8px;
}

.newsletter-section p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

.newsletter-input {
    flex: 1;
    height: 48px;
    background: var(--black);
    border: 1px solid var(--border-mid);
    border-right: none;
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 14px;
    padding: 0 18px;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s;
}

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

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    height: 48px;
    padding: 0 24px;
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    white-space: nowrap;
    transition: background 0.2s;
}

.newsletter-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* ── FOOTER ── */
.v3-footer {
    padding: 64px 60px 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 220px;
}

.footer-col h4 {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
    text-decoration: none;
}

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

.footer-social svg {
    width: 13px;
    height: 13px;
    stroke: var(--text-muted);
}

/* ── STICKY MOBILE CART ── */
.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 8, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 200;
    gap: 16px;
}

.sticky-cart-info {
    flex: 1;
}

.sticky-cart-name {
    font-size: 13px;
    font-weight: 500;
}

.sticky-cart-price {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--gold);
}

.sticky-cart-btn {
    height: 46px;
    padding: 0 28px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s;
}

.sticky-cart-btn:hover {
    background: var(--gold-light);
    color: var(--black);
}

@media (max-width: 900px) {
    .v3-nav {
        padding: 0 16px;
        height: 60px;
        top: 0;
    }

    .nav-links {
        display: none;
    }

    /* Ocultamos links extensos en mobile */
    .nav-logo {
        font-size: 16px;
    }

    .urgency-strip {
        padding: 12px 16px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 11px;
    }

    .product-hero {
        flex-direction: column;
        min-height: auto;
        display: block;
    }

    .product-gallery-bg {
        position: relative;
        height: 65vh;
        width: 100%;
    }

    .product-gallery-controls {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        flex-direction: row;
        padding: 16px;
        background: var(--black);
        overflow-x: auto;
        justify-content: center;
    }

    .gallery-thumbs {
        flex-direction: row;
        gap: 10px;
    }

    .gallery-thumb {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .product-info {
        width: 100%;
        padding: 32px 20px;
        margin-top: 0;
    }

    .product-title {
        font-size: 32px;
        line-height: 1.1;
    }

    .product-subtitle {
        font-size: 18px;
    }

    .price-current {
        font-size: 28px;
    }

    .stock-warning {
        padding: 10px;
    }

    .stock-warning-text {
        font-size: 11px;
    }

    .sticky-cart {
        padding: 12px 16px;
        height: auto;
        gap: 12px;
    }

    .sticky-cart-name {
        font-size: 11px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sticky-cart-price {
        font-size: 16px;
    }

    .sticky-cart-btn {
        padding: 0 16px;
        height: 40px;
        font-size: 10px;
    }

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

    .benefits-grid,
    .reviews-grid,
    .complementary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .section-subtitle {
        font-size: 14px;
    }

    .leather-section {
        padding: 40px 20px;
    }

    .social-proof-strip {
        padding: 30px 20px;
    }

    .faq-section,
    .reviews-section,
    .complementary-section,
    .benefits-section,
    .specs-section {
        padding: 0 20px;
        margin-top: 60px;
    }
}

/* WooCommerce Custom Add to Cart */
.celestra-pdp-v3 .custom-wc-add-to-cart form.cart {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.celestra-pdp-v3 .custom-wc-add-to-cart form.cart .quantity {
    display: none;
}

.celestra-pdp-v3 .custom-wc-add-to-cart form.cart button.single_add_to_cart_button {
    width: 100%;
    height: 54px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    padding: 0;
}

.celestra-pdp-v3 .custom-wc-add-to-cart form.cart button.single_add_to_cart_button:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.celestra-pdp-v3 .custom-wc-add-to-cart form.cart button.single_add_to_cart_button::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><path d="M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z"/><line x1="3" y1="6" x2="21" y2="6"/><path d="M16 10a4 4 0 01-8 0"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
}

/* ==========================================================================
   MINI CART POPUP OVERRIDES (CELESTRA BRANDING)
   ========================================================================== */

:root {
    --mc-bg: var(--bg-sec);
    --mc-text: var(--text-main);
    --mc-cta: var(--gold-dark);
    --mc-icon: var(--text-muted);
    --mc-danger: #e25c5c;
    --mc-success: #51a364;
    --mc-badge: var(--gold-dark);
    --mc-dim: var(--border);
}

#custom-cart-root.custom-cart-popup {
    background: var(--bg-sec);
    color: var(--text-main);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.9);
    font-family: var(--font-body);
}

#custom-cart-root .cart-header h3 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#custom-cart-root .cart-info a.cart-name {
    font-family: var(--font-body);
    font-weight: 500;
    transition: color 0.3s ease;
}

#custom-cart-root .cart-info a.cart-name:hover {
    color: var(--gold-light);
}

#custom-cart-root .btn-checkout {
    background: var(--gold-dark);
    color: var(--black);
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

#custom-cart-root .btn-checkout:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

#custom-cart-root .cart-subtotal {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-main);
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

#custom-cart-root .cart-subtotal strong {
    color: var(--gold-light);
    font-weight: 500;
}

#custom-cart-root .cross-sells h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-size: 14px;
    margin-top: 20px;
}

#custom-cart-root .cross-sell-item {
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

#custom-cart-root .cross-sell-item:hover {
    border-color: var(--gold-dark);
    background: var(--surface-light);
}

#custom-cart-root .cross-sell-title {
    font-family: var(--font-body);
    font-weight: 500;
}

/* Custom Trigger Styles in Header */
.custom-cart-trigger {
    color: var(--white) !important;
    transition: opacity 0.3s ease;
    padding: 0 !important;
}

.custom-cart-trigger:hover {
    opacity: 0.7;
}

.custom-cart-trigger svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 1.5px !important;
}

.custom-cart-count {
    top: -8px !important;
    right: -10px !important;
    background-color: var(--gold-dark) !important;
    color: var(--black) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important;
}

.progress-bar-bg {
    background: var(--surface) !important;
}

.progress-bar-fill {
    background: var(--gold-dark) !important;
    box-shadow: 0 0 10px rgba(199, 174, 106, 0.3);
}

.success-msg {
    color: #51a364 !important;
}

/* ── WOOCOMMERCE CHECKOUT BLOCKS STYLING ── */

/* Container and general typography */
.wc-block-checkout {
    color: var(--text-main);
    font-family: var(--font-body);
}

/* Headings within checkout */
.wc-block-checkout h2,
.wc-block-checkout h3,
.wc-block-components-checkout-step__title {
    color: var(--white) !important;
    font-family: var(--font-display) !important;
}

/* Labels and placeholders visibility */
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-checkout label {
    color: var(--gold-light) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 1 !important;
}

.wc-block-components-text-input input::placeholder,
.wc-block-components-text-input textarea::placeholder,
.wc-block-checkout input::placeholder,
.wc-block-checkout textarea::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.8 !important;
}

/* Inputs and textareas */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-combobox input,
.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout textarea {
    background-color: var(--surface) !important;
    color: var(--white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-sm) !important;
    padding: 14px 16px !important;
    transition: all 0.3s ease;
}

.wc-block-components-text-input input:focus,
.wc-block-components-text-input textarea:focus,
.wc-block-checkout input:focus,
.wc-block-checkout textarea:focus {
    border-color: var(--gold-dark) !important;
    outline: none !important;
    box-shadow: 0 0 0 1px var(--gold-dark) !important;
    background-color: var(--surface-light) !important;
}

/* Floating labels in WooCommerce Blocks */
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input:focus-within label {
    color: var(--gold-dark) !important;
}

/* Prominent "Place Order" Button */
.wc-block-components-checkout-place-order-button,
.wc-block-checkout .wc-block-components-button.contained {
    background: var(--gold-dark) !important;
    color: var(--black) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    padding: 22px 30px !important;
    border-radius: var(--radius-pill) !important;
    border: none !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-shadow: var(--shadow-gold) !important;
    margin-top: var(--space-8) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout .wc-block-components-button.contained:hover {
    background: var(--gold-light) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(199, 174, 106, 0.4) !important;
    color: var(--black) !important;
}

/* Order Summary Box */
.wc-block-components-order-summary,
.wc-block-checkout__totals {
    background-color: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    padding: var(--space-6) !important;
    box-shadow: var(--shadow-sm) !important;
}

.wc-block-components-order-summary-item__name,
.wc-block-components-order-summary-item__price {
    color: var(--white) !important;
}

.wc-block-components-order-summary-item__quantity {
    color: var(--black) !important;
    background-color: var(--white) !important;
}

/* Shipping Method Options Fix */
/* Inactive State: white text */
.wc-block-checkout__shipping-method-option,
.wc-block-checkout__shipping-method-option *,
.wc-block-components-shipping-rates-control .wc-block-components-radio-control-accordion-option,
.wc-block-components-shipping-rates-control .wc-block-components-radio-control-accordion-option * {
    color: var(--white) !important;
}

/* Active State: white background */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control-accordion-option[aria-checked="true"],
.wc-block-components-shipping-rates-control .wc-block-components-radio-control-accordion-option.is-active,
.shipping-method .active,
.shipping-method input:checked + label,
.wc-block-checkout__shipping-method-option.is-active,
.wc-block-checkout__shipping-method-option[aria-checked="true"],
.wc-block-components-radio-control__option-checked {
    background-color: var(--white) !important;
}

/* Active State: black text */
.wc-block-components-shipping-rates-control .wc-block-components-radio-control-accordion-option[aria-checked="true"],
.wc-block-components-shipping-rates-control .wc-block-components-radio-control-accordion-option[aria-checked="true"] *,
.wc-block-components-shipping-rates-control .wc-block-components-radio-control-accordion-option.is-active,
.wc-block-components-shipping-rates-control .wc-block-components-radio-control-accordion-option.is-active *,
.shipping-method .active,
.shipping-method .active *,
.shipping-method input:checked + label,
.shipping-method input:checked + label *,
.wc-block-checkout__shipping-method-option.is-active,
.wc-block-checkout__shipping-method-option.is-active *,
.wc-block-checkout__shipping-method-option[aria-checked="true"],
.wc-block-checkout__shipping-method-option[aria-checked="true"] *,
.wc-block-components-radio-control__option-checked,
.wc-block-components-radio-control__option-checked * {
    color: var(--black) !important;
}

/* Secondary Buttons / Edit Buttons */
.wc-block-components-button:not(.contained) {
    color: var(--gold-dark) !important;
}

.wc-block-components-button:not(.contained):hover {
    color: var(--gold-light) !important;
}

/* Checkboxes and Radio buttons */
.wc-block-components-radio-control input[type="radio"],
.wc-block-components-checkbox input[type="checkbox"] {
    accent-color: var(--gold-dark) !important;
    background-color: var(--surface) !important;
    border: 1px solid var(--border-light) !important;
}

/* Error messages */
.wc-block-components-validation-error {
    color: #e55353 !important;
    font-size: 13px !important;
    margin-top: 4px !important;
}

/* ── PAGE TITLE EN CHECKOUT ── */
.woocommerce-checkout .entry-title {
    text-align: center !important;
    color: var(--gold-dark) !important;
    font-size: 42px !important;
    margin-top: var(--space-6) !important;
    margin-bottom: var(--space-8) !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em !important;
}

/* Address Card Styling (Direcciones guardadas) */
.wc-block-components-address-card,
.wc-block-checkout address {
    background-color: var(--surface-light) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-sm) !important;
    padding: var(--space-4) !important;
    color: var(--white) !important;
}

.wc-block-components-address-card__address-section--primary {
    color: var(--gold-light) !important;
    font-weight: 500 !important;
}

.wc-block-components-address-card__address-section--secondary {
    color: var(--text-muted) !important;
}

/* Fix mobile horizontal scroll global fallback */
html,
body {
    max-width: 100%;
    overflow-x: hidden !important;
}

/* Espaciado en bordes para mobile */
@media (max-width: 768px) {

    .woocommerce-checkout .site-content,
    .woocommerce-checkout .ast-container,
    .woocommerce-checkout .wc-block-checkout {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
}


/* ==========================================================================
   SHOP THE COLLECTION — 3 COLUMNS DESKTOP / CAROUSEL MOBILE
   ========================================================================== */

/* ── Desktop: 3 columnas centradas (Solo pantallas de escritorio y portátiles) ── */
@media (min-width: 922px) {

    .collection-section .woocommerce ul.products,
    .collection-section .woocommerce.columns-3 ul.products {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        justify-content: center !important;
        gap: var(--space-8) !important;
        max-width: 1100px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ── MOBILE: Carrusel con peek lateral (Móviles y Tablets < 922px) ── */
@media (max-width: 921px) {

    /*
     * PROBLEMA: .home-section tiene overflow: hidden, lo que impide
     * que el track del carrusel haga scroll horizontal.
     * SOLUCIÓN: usar overflow: visible para no recortar la interacción.
     */
    html body .collection-section.home-section {
        overflow: visible !important;
    }

    /* El ghd-container quita padding lateral y contiene el peek */
    html body .collection-section .ghd-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* El header mantiene padding propio */
    html body .collection-section .collection-header {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    /* El wrapper del shortcode debe ser visible y no recortar */
    html body .collection-section .collection-grid-wrap,
    html body .collection-section .woocommerce,
    html body .collection-section .woocommerce.columns-3 {
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    /*
     * TRACK DEL CARRUSEL
     * Usamos selectores ultra específicos y forzamos display: flex en mobile.
     */
    html body .collection-section .collection-grid-wrap ul.products,
    html body .collection-section .woocommerce ul.products,
    html body .collection-section ul.products {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        /* Peek effect: 8.5% padding centers the active item (83vw wide) and shows 8.5vw of previous/next items */
        padding: 10px 8.5% 24px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    html body .collection-section .collection-grid-wrap ul.products::-webkit-scrollbar,
    html body .collection-section .woocommerce ul.products::-webkit-scrollbar,
    html body .collection-section ul.products::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    /*
     * ITEMS: Cada producto ocupa exactamente 83vw.
     * De esta forma, el activo queda perfectamente centrado en pantalla,
     * dejando un 'peek' del 8.5% a la izquierda y a la derecha.
     * Soportamos tanto li.product estándar como div.product-card personalizados.
     */
    html body .collection-section .collection-grid-wrap ul.products li.product,
    html body .collection-section .woocommerce ul.products li.product,
    html body .collection-section ul.products li.product,
    html body .collection-section .collection-grid-wrap ul.products .product-card,
    html body .collection-section .woocommerce ul.products .product-card,
    html body .collection-section ul.products .product-card,
    html body .collection-section .collection-grid-wrap ul.products .product,
    html body .collection-section .woocommerce ul.products .product,
    html body .collection-section ul.products .product {
        display: block !important;
        flex: 0 0 83vw !important;
        min-width: 83vw !important;
        max-width: 83vw !important;
        width: 83vw !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        float: none !important;
    }

    /* Dots de paginación */
    .celestra-carousel-dots {
        display: flex !important;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
        padding: 0 24px 4px;
        width: 100%;
        box-sizing: border-box;
    }

    .celestra-carousel-dots span {
        display: inline-block;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        transition: background 0.3s ease, transform 0.3s ease;
        cursor: pointer;
    }

    .celestra-carousel-dots span.active {
        background: var(--white);
        transform: scale(1.4);
    }
}

/* Dots ocultos en desktop */
@media (min-width: 922px) {
    .celestra-carousel-dots {
        display: none !important;
    }
}

/* ==========================================================================
   PREMIUM HERO CAROUSEL (CROSSFADE + MOTION DESIGN)
   ========================================================================== */

.hero-v3-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-v3-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--black);
}

.hero-v3-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Motion Design: Entrada de textos con retardo escalonado en slide activo */
.hero-v3-slide .text-label,
.hero-v3-slide .text-display,
.hero-v3-slide .btn-primary {
    opacity: 0 !important;
    transform: translateY(24px) !important;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.hero-v3-slide.active .text-label {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: 0.3s !important;
}

.hero-v3-slide.active .text-display {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: 0.5s !important;
}

.hero-v3-slide.active .btn-primary {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: 0.7s !important;
}

/* Indicadores de progreso inferiores (Dots) */
.hero-v3-indicators {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.hero-v3-indicators .indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-v3-indicators .indicator.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Controles de flechas laterales (Premium GHD Style) */
.hero-v3-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
}

.hero-v3-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(0, 0, 0, 0.4) !important;
    color: var(--white) !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    backdrop-filter: blur(8px);
    outline: none !important;
}

.hero-v3-arrow:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    border-color: var(--white) !important;
    transform: scale(1.08);
}

@media (max-width: 921px) {
    .hero-v3-arrows {
        display: none !important;
    }

    .hero-v3-indicators {
        bottom: 25px;
    }
}


/* --- HOME PAGE EXTRACTED INLINE STYLES --- */
.hero-v3-carousel {
    height: 90vh;
}

.hero-v3-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-v3-content-centered {
    max-width: 1000px;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    display: flex;
    margin: 0 auto;
}

.hero-v3-btn-bottom {
    margin-top: auto;
    margin-bottom: 80px;
}

.slide-trust-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    border-top: 1px solid var(--border);
    padding: 15px 0;
    z-index: 10;
}

.trust-banner-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.trust-banner-item {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.trust-banner-star {
    color: var(--gold-dark);
    margin-right: 8px;
}

.home-collection-header { margin-bottom: 60px; text-align: center; }

.home-collection-header .h1 {
    margin-top: 15px;
}

.home-split-label {
    margin-bottom: 20px;
}

.home-split-h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.home-split-italic-span {
    font-style: italic;
    font-weight: 300;
}

.home-split-body {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.home-split-buttons {
    display: flex;
    gap: 20px;
}

.home-bento-header {
    text-align: center;
    margin-bottom: 60px;
}

.bento-overlay .text-label {
    color: var(--white);
}

.final-cta-section {
    background: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background: url('/wp-content/uploads/2024/06/cuadradamodelo.jpg') center/cover no-repeat;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.final-cta-h2 {
    font-size: 5vw;
    margin-bottom: 40px;
    color: var(--white);
}

.final-cta-p {
    color: var(--white);
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.final-cta-btn {
    padding: 20px 60px;
    font-size: 16px;
}

/* Footer Contact Channels and Navigation Grid Custom Styling */
.footer-contact-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 991px) {
    .footer-contact-channels {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-contact-channels {
        grid-template-columns: 1fr;
    }
}

.contact-channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
}

.contact-channel-item .channel-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-channel-item .channel-icon svg {
    width: 100%;
    height: 100%;
}

.contact-channel-item .channel-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-channel-item .channel-detail,
.contact-channel-item .channel-schedule {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.contact-channel-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-channel-item a:hover {
    color: var(--gold);
}

/* Adjust footer columns styles */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
    margin-bottom: 40px;
}

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