/*
Theme Name: Tema Warmly Custom
Description: Tema a medida basado en el diseño minimalista de warmlydecor.com.
Author: Fran
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,600..900;1,600..900&display=swap');

/* Reset universal de anchos para evitar desbordamientos y columnas cortadas */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Aumento de Logo para match con WarmlyDecor */
.custom-logo,
.site-branding img,
.site-logo img {
    width: 260px !important;
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Wordmark / Logo Tipográfico Premium (Estilo Warmly)
   ========================================================================== */
.text-logo {
    font-family: 'Playfair Display', serif;
    /* Tipografía editorial de alta gama */
    font-size: 2.3rem;
    /* Tamaño prominente pero no invasivo */
    font-weight: 800;
    /* Extra Bold para conseguir la fuerza de Warmly */
    color: #000000;
    text-decoration: none;
    letter-spacing: -1.5px;
    /* Condensar letras como marcas de lujo */
    text-transform: lowercase;
    /* Truco warmly para quitar "corporativismo" */
    line-height: 1;
    display: block;
    margin-right: 40px;
    /* Separar del menú un poco más */
    transition: opacity 0.3s ease;
}

.text-logo:hover {
    opacity: 0.7;
    /* Suaviza el negro puro en hover */
    color: #000000;
}

/* ==========================================================================
   Base Styles & Typography
   ========================================================================== */
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    /* Fondo blanco puro */
    color: #333333;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Tipografía moderna sin serifa */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reset básico de enlaces */
a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666666;
}

/* ==========================================================================
   WooCommerce Minimalist Grid Structure
   ========================================================================== */
/* Convertimos la cuadrícula de productos a CSS Grid moderno y limpio */
ul.products,
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px 30px;
    padding: 0;
    margin: 3rem 0;
    list-style: none;
}

/* Limpiar los márgenes float por defecto de WooCommerce */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0 !important;
    padding: 0;
    width: 100% !important;
    text-align: center;
    /* Alineación central típica del minimalismo */
}

/* Estilo para las imágenes de los productos en la cuadrícula */
.woocommerce ul.products li.product img {
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
    display: block;
    background-color: #f9f9f9;
    /* Fondo sutil para destacar la silueta del producto */
    transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
    opacity: 0.85;
    /* Ligero efecto al pasar el ratón */
}

/* Estilos minimalistas para el título del producto */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 8px;
    padding: 0;
    color: #000000;
}

/* Estilos para el precio del producto */
.woocommerce ul.products li.product .price {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
}

/* Ocultar elementos innecesarios a primera vista (estrellas, add-to-cart genérico) para un look más limpio */
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .button {
    display: none !important;
}

/* ==========================================================================
   Top Bar (CRO)
   ========================================================================== */
.warmly-top-bar {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 100;
}

/* ==========================================================================
   Header Main (Smart Header Activo)
   ========================================================================== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 99;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Suavidad extrema idéntica al submenú */
}

/* Ocultado automático inyectado por JS al hacer scroll descendente */
.site-header.is-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
    /* Ajuste de altura refinado a 25px verticalmente */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo / Branding */
.site-branding {
    flex: 0 0 auto;
    /* Ocupa solo lo necesario */
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.site-title a {
    color: #000000;
}

/* Nav Menú Central */
.main-navigation {
    flex: 1;
    /* Ocupa todo el espacio central restante */
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* Permite saltar de línea si hay muchos ítems */
    justify-content: center;
}

.main-navigation li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
}

.main-navigation li a:hover {
    color: #000000;
}

.main-navigation li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

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

/* ==========================================================================
   Submenús Desplegables (Dropdown Premium)
   ========================================================================== */
.main-navigation ul li {
    position: relative;
    /* Clave para poder anclar el desplegable justo debajo */
}

.main-navigation ul.sub-menu {
    position: absolute;
    top: calc(100% + 15px);
    /* Queda un poco despegado para acercarse flotando */
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    /* Sombra extendida muy difusa, Premium */
    border-radius: 4px;
    /* Un poco de amabilidad geométrica */
    padding: 15px 0;

    /* Animación de Aparición (Fade-in Slide-up) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Reseteo de estilos flex del menú padre */
    display: block;
    pointer-events: none;
    z-index: 1000;
}

/* PUENTE INVISIBLE: Evita que el ratón pierda el contacto ("caiga al vacío") al cruzar los 15px que separan el menú de arriba con la caja de abajo. */
.main-navigation ul.sub-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

/* Mostrar submenú al pasar el ratón por encima del padre */
.main-navigation ul li:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Sube suavemente hacia su posición final */
    pointer-events: auto;
}

.main-navigation ul.sub-menu li {
    display: block;
    margin: 0;
    width: 100%;
}

/* Eliminamos la raya negra de subrayado del menú principal al hacer hover en el submenu */
.main-navigation ul.sub-menu li a::after {
    display: none;
}

.main-navigation ul.sub-menu li a {
    display: block;
    padding: 10px 30px;
    font-size: 0.85rem;
    /* Más pequeño que el menú principal */
    font-weight: 400;
    color: #555555;
    /* Gris mate oscuro, para diferenciarse del negro del menú principal */
    text-transform: none;
    /* Mejor legibilidad en minúsculas tipo Oración */
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Efecto hover suave de cada ítem del desplegable */
.main-navigation ul.sub-menu li a:hover {
    color: #000000;
    background-color: #f7f7f7;
    transform: translateX(6px);
    /* Micro-movimiento hacia la derecha al poner el ratón */
}

/* Carrito Derecha */
.header-cart {
    flex: 0 0 auto;
    /* Ocupa solo lo necesario */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 30px;
}

.cart-customlocation {
    position: relative;
    display: flex;
    align-items: center;
    color: #000000;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
}

.cart-customlocation::after {
    display: none;
    /* overrides previous general hover */
}

.cart-customlocation svg {
    margin-right: 5px;
}

.cart-count {
    background-color: #000000;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -5px;
    right: -10px;
}

/* ==========================================================================
   Dropdown Menus (Sub-categorías)
   ========================================================================== */
.main-navigation li {
    position: relative;
}

/* Ocultar submenús por defecto */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    width: 220px;
    background-color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Sombra elegante */
    border: 1px solid #f5f5f5;
    padding: 15px 0;
    margin: 0;
    border-radius: 2px;
}

/* Quitar la separación de los elementos que rompían la estructura horizontal */
.main-navigation ul ul li {
    display: block;
    margin: 0;
    padding: 0;
}

/* Mostrar el submenú en hover del elemento superior */
.main-navigation li:hover>ul {
    display: block;
    animation: fadeMenuIn 0.25s ease forwards;
}

/* Animación premium de entrada de menú (warmly aesthetic) */
@keyframes fadeMenuIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

/* Ajustes precisos de tipografía y separaciones de los enlaces internos */
.main-navigation ul ul li a {
    padding: 8px 25px;
    font-size: 0.85rem;
    font-weight: 400;
    color: #555555;
    text-transform: none;
    /* Minúsculas elegantes (formato normal) */
    letter-spacing: 0;
    display: block;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.main-navigation ul ul li a:hover {
    color: #000000;
    background-color: #fbfbfb;
    padding-left: 30px;
    /* Microinteracción premium de desplazamiento al pasar el ratón */
}

/* Desactiva la línea subrayada del menú superior al estar en un submenú */
.main-navigation ul ul li a::after {
    display: none;
}

/* ==========================================================================
   Logo Size & Alignment
   ========================================================================== */
.site-branding .custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-branding img.custom-logo {
    max-width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ==========================================================================
   Contenedor Global (Front Page)
   ========================================================================== */
.front-page-main {
    background-color: #ffffff;
    width: 100%;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ==========================================================================
   0. Envolvente Fotográfica (Hero Wrapper Dinámico)
   ========================================================================== */
.hero-wrapper {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center 25%;
    /* Ajuste a la franja central alta para pillar laterales */
    background-color: #222222;
    padding-bottom: 30px;
    /* Pequeño margen para que la sombra inferior descanse sobre la foto */
    padding-top: 20px;
    /* Pequeño respiro arriba */
}

/* Capa oscura semitransparente original de Warmly para contraste de texto */
.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    /* Negro suave para calmar la foto y conservar sus colores reales */
    z-index: 1;
}

/* Garantizar que el contenido interno destaque por sobre la capa oscura */
.hero-wrapper .content-wrapper {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   1. Hero Section Contenida Textos Blanco
   ========================================================================== */
.warmly-contained-header {
    text-align: center;
    padding: 0 0 30px;
    /* Relleno superior a cero */
}

.hero-pre-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-main-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    /* Letra muchísimo más reducida y refinada */
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 12px;
    /* Spacing enorme idéntico a Warmly */
    text-indent: 12px;
    /* Compensación óptica para seguir centrado perfecto */
}

.hero-light {
    font-weight: 300;
    font-size: 0.9em;
    /* Ligero escalón visual para la primera palabra */
}

.hero-bold {
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 1px;
}

/* ==========================================================================
   2. Category Mosaic (Contained Grid)
   ========================================================================== */
.warmly-category-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 800px;
    /* Limitado rígidamente a 800px para compactar el grid hacia el centro */
    margin: 0 auto;
}

@media (min-width: 768px) {
    .warmly-category-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    height: 250px;
    /* Altura forzada y compacta exactamente a 250px */
    background-color: #111111;
    display: block;

    /* EFECTO FLOTANTE PARA SEPARARLO DE LA COCINA DE FONDO */
    border-radius: 4px;
    /* Suaviza muy ligeramente las esquinas para dar volumen */
    border: 1px solid rgba(255, 255, 255, 0.22);
    /* OPCIÓN 2: Borde finísimo de cristal brillante */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    /* Sombra 3D proyectada contra el fondo */
    transform: translateY(0);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    /* Transición fluida */
}

/* Interacción de elevación para reforzar la flotabilidad */
.mosaic-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.45);
    /* El borde de cristal brilla un poco más al acercar el ratón */
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
}

.mosaic-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Asegura el centrado sin deformarse */
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mosaic-item:hover .mosaic-bg {
    transform: scale(1.06);
    /* Lujoso Zoom progresivo */
}

.mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradiente oscuro sutil SOLO en la parte inferior para asegurar perfecta legibilidad del texto sin tapar los productos */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 65%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.90;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Transición premium ultra suave */
}

.mosaic-item:hover .mosaic-overlay {
    /* OPCIÓN 1: En lugar de oscurecerse, la capa oscura inferior se "limpia" dejando ver el producto brillante con más detalle */
    opacity: 0.35;
}

.mosaic-content {
    position: absolute;
    bottom: 25px;
    /* Fijado dinámicamente en la zona inferior */
    z-index: 2;
    padding: 0 30px;
    /* Respiro lateral amplio desde los bordes */
    display: flex;
    flex-direction: column;
    /* OPCIÓN 3: Prepara al bloque para saltar suavemente */
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mosaic-item:hover .mosaic-content {
    /* OPCIÓN 3: El texto sube muy sutilmente interactuando en 3D con la foto y la propia caja elevándose */
    transform: translateY(-8px);
}

/* Panel Izquierdo (Impares): Texto anclado Abajo a la Derecha */
.warmly-category-mosaic .mosaic-item:nth-child(odd) .mosaic-content {
    right: 0;
    text-align: right;
    align-items: flex-end;
}

/* Panel Derecho (Pares): Texto anclado Abajo a la Izquierda */
.warmly-category-mosaic .mosaic-item:nth-child(even) .mosaic-content {
    left: 0;
    text-align: left;
    align-items: flex-start;
}

.mosaic-subtitle {
    font-size: 0.75rem;
    /* Palabra muy pequeña arriba similar a 'SHOP' */
    font-weight: 600;
    /* Letra gruesa */
    letter-spacing: 5px;
    /* Gran separación para elegancia */
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 5px;
    /* Cercano al título grande */
    transition: text-shadow 0.4s ease;
}

.mosaic-title {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    /* Título de categoría grande */
    font-weight: 300;
    /* Muy fina y elegante (Light) */
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    transition: text-shadow 0.4s ease;
}

/* Compensación de contraste al eliminar la cortina oscura en hover */
.mosaic-item:hover .mosaic-title,
.mosaic-item:hover .mosaic-subtitle {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

/* ==========================================================================
   3. Trust Badge Section (Estilo Señorial / Editorial)
   ========================================================================== */
.warmly-trust-section {
    text-align: center;
    padding: 100px 0 60px;
    /* Aumento de espacio para purificar la sección */
    background-color: #ffffff;
}

.trust-icon {
    margin-bottom: 25px;
    color: #000000;
    /* Negro puro para máximo contraste premium */
    opacity: 0.8;
    /* Suavidad en el peso visual del icono */
}

.trust-title {
    font-family: 'Playfair Display', serif;
    /* Tipografía Señorial */
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    /* Aspecto de Cita de Revista de Lujo */
    color: #000000;
    margin: 0 0 15px;
    letter-spacing: 0;
}

.trust-text {
    font-size: 0.95rem;
    font-weight: 300;
    /* Letra finísima para el subtítulo */
    color: #555555;
    margin: 0 auto;
    max-width: 600px;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   4. Elegant Separators (Estilo Boutique)
   ========================================================================== */
.warmly-elegant-separator {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 40px 0 80px;
    /* Respiro masivo */
    max-width: 1000px;
    /* Acotado para que la línea no sea infinita */
    margin: 0 auto;
}

.warmly-elegant-separator::before,
.warmly-elegant-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eaeaea;
    /* Línea de división ultra sutil */
}

.warmly-elegant-separator h2 {
    font-size: 1rem;
    /* Muy reducido, la elegancia susurra, no grita */
    font-weight: 400;
    letter-spacing: 8px;
    /* Spacing gigantesco (tendencia actual) */
    color: #000000;
    text-transform: uppercase;
    padding: 0 50px;
    margin: 0;
}

/* ==========================================================================
   5. Product Grid (Diseño Hover Señorial e Invisible)
   ========================================================================== */
.warmly-products-section {
    padding-bottom: 100px;
    /* Más aire al final */
}

.warmly-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columnas en móvil */
    gap: 40px 20px;
    /* Aumentado sustancialmente el espacio vertical entre filas */
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 992px) {
    .warmly-products-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 Columnas en PC */
        gap: 60px 40px;
        /* Espaciado masivo para purificar cada producto */
    }
}

.warmly-product-card {
    text-align: center;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.warmly-product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.warmly-product-text-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.warmly-product-image {
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
    margin-bottom: 20px;
    padding: 30px;
    /* Asegura que ninguna imagen toque los bordes laterales ni superior */
}

.warmly-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    /* Permite a object-fit calcular perfectamente el espacio vertical */
    aspect-ratio: 1 / 1.15;
    object-fit: contain;
    /* Nunca recorta las botellas por los lados, las respeta íntegras */
    object-position: center bottom;
    /* ORO PURO: Obliga a los productos horizontales a bajar hasta tocar el "suelo" */
    mix-blend-mode: multiply;
    /* Funciona maravillosamente con fondos blancos puros de productos */
    position: relative;
    z-index: 2;
    /* Por encima de la sombra base */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}

.warmly-product-card:hover .warmly-product-image img {
    transform: scale(1.05) translateY(-5px);
    /* Lujoso y lento zoom fotográfico al acercarse + levitación real */
}

.warmly-product-info {
    padding: 0 10px;
}

.warmly-product-title {
    font-size: 0.95rem;
    font-weight: 400;
    /* Reforzado un pelín para legibilidad estricta */
    margin: 0 0 10px;
    color: #000000;
    text-transform: none;
    letter-spacing: 0.5px;
}

.warmly-product-price {
    font-size: 0.95rem;
    font-family: 'Playfair Display', serif;
    /* Precios Serif para dar sensación señorial y de boutique antigua */
    font-weight: 500;
    color: #444444;
    margin-bottom: 0;
}

.warmly-product-price ins {
    text-decoration: none;
    color: #000000;
}

.warmly-product-price del {
    opacity: 0.4;
    margin-right: 8px;
}

/* Botón Añadir al Carrito "Flotante y Mágico" (Tendencia CRO Lujo 2026) */
.warmly-product-action {
    position: absolute;
    bottom: 20px;
    /* Sube levitando anclado EXACTAMENTE sobre el fondo gris de la foto del producto */
    left: 0;
    right: 0;
    padding: 0 20px;
    display: flex;
    /* Añadido para poder centrar el botón estrecho */
    justify-content: center;
    opacity: 0;
    /* Totalmente invisible por defecto */
    transform: translateY(15px);
    /* Empieza desplazado hacia abajo */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Transición coreografiada */
    pointer-events: none;
    /* No interactuable si está invisible */
    z-index: 10;
}

/* Al tocar toda la caja del producto, el botón sube levitando sobre la foto del producto */
.warmly-product-card:hover .warmly-product-action {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.warmly-add-to-cart-btn {
    display: inline-block;
    /* Ya no ocupa el 100% de lado a lado */
    width: auto;
    font-size: 0.75rem;
    /* Texto muy pequeñito y refinado */
    font-weight: 600;
    letter-spacing: 2px;
    /* Gran separación */
    color: #ffffff;
    /* Letra blanca */
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 40px;
    /* Tamaño tipo "píldora" muy elegante */
    background-color: #000000;
    /* Botón bloque negro señorial moderno */
    border: none;
    transition: background-color 0.3s ease;
}

.warmly-add-to-cart-btn:hover {
    background-color: #333333;
    /* Aclara muy levemente en el hover directo al botón */
    color: #ffffff;
}

/* ==========================================================================
   Single Product Page Styling (Premium Layout)
   ========================================================================== */

/* Precio en Producto Individual */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #000000 !important;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Modificar el botón violeta por defecto de WooCommerce a estilo Premium Negro */
.woocommerce div.product form.cart .button {
    background-color: #000000 !important;
    color: #ffffff !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 0;
    /* Bordes cuadrados elegantes */
    border: 1px solid #000000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.woocommerce div.product form.cart .button:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
}

/* Dropdown de Variaciones (Aromas, etc) */
.woocommerce div.product form.cart .variations select {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background-color: #ffffff;
    font-size: 0.9rem;
    color: #333333;
    cursor: pointer;
    margin-bottom: 20px;
}

.woocommerce div.product form.cart .variations label {
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Etiqueta de "Sin existencias" */
.woocommerce div.product p.stock.out-of-stock {
    color: #888888;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Selector de cantidad Premium (con botones + y -) */
.woocommerce .quantity {
    display: inline-flex;
    align-items: stretch;
    background-color: #f5f5f5;
    border: none;
    margin-right: 15px;
    height: 48px;
    vertical-align: middle;
}

.woocommerce .quantity .qty-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 300;
    color: #555555;
    padding: 0 15px;
    outline: none;
    transition: background-color 0.2s, color 0.2s;
}

.woocommerce .quantity .qty-btn:hover {
    color: #000000;
    background-color: #e6e6e6;
}

.woocommerce .quantity .qty {
    width: 60px;
    text-align: center;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    padding: 0;
    margin: 0;
    -moz-appearance: textfield;
    /* Ocultar flechas Firefox */
    appearance: textfield;
    /* Estándar */
}

/* Ocultar flechas numéricas nativas de Chrome/Safari */
.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Ocultar botón "Limpiar" de las variaciones */
.woocommerce div.product form.cart .reset_variations {
    display: none !important;
}

/* Ajuste del botón 'Añadir al carrito' para alinear con el seleccionador de cantidad */
.woocommerce div.product form.cart .button {
    vertical-align: middle;
    height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
}

/* Texto de Impuestos y Envío debajo del precio */
.warmly-tax-shipping-info {
    font-size: 0.85rem;
    color: #888888;
    margin-top: -15px;
    margin-bottom: 25px;
}

.warmly-tax-shipping-info a {
    color: #888888;
    text-decoration: underline;
    transition: color 0.3s;
}

.warmly-tax-shipping-info a:hover {
    color: #000000;
}

/* ==========================================================================
   Galería de Producto (Miniaturas y Diseño)
   ========================================================================== */

/* Layout nativo estable: Miniaturas alineadas debajo de la imagen principal */
.woocommerce div.product div.images.woocommerce-product-gallery {
    display: block;
    /* Restaurar display normal */
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    margin-bottom: 20px;
}

.woocommerce div.product div.images .flex-control-nav.flex-control-thumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin: 0;
    padding: 0;
    position: relative;
    top: auto;
    left: auto;
}

.woocommerce div.product div.images .flex-control-nav.flex-control-thumbs li {
    width: 80px !important;
    /* Forzar el tamaño cuadrado para todas las pantallas */
    height: 80px !important;
    margin: 0 !important;
    list-style: none;
    float: none !important;
    /* Eliminar el float nativo de Woo */
    position: static !important;
    /* Evitar que el JS del tema los saque de la pantalla */
}

/* Estilo Premium para las minitaturas */
.woocommerce div.product div.images .flex-control-nav.flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    /* Para que la fotito no se deforme */
    background-color: #f7f7f7;
    border: 1px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}

/* Efecto al seleccionar o pasar el ratón */
.woocommerce div.product div.images .flex-control-nav.flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-nav.flex-control-thumbs li img:hover {
    border-color: #000000;
    opacity: 1;
}

/* ==========================================================================
   Limpieza de Botones de Pago (Minimalismo)
   ========================================================================== */

/* Ocultar G-Pay, Google Pay y Link que ensucian la ficha de producto */
.single-product #wc-stripe-payment-request-wrapper,
.single-product .wc-stripe-pe-element,
.single-product #wc-payment-request-button,
.single-product .woocommerce-store-api-payment-request-button,
.single-product #stripe-payment-request-button {
    display: none !important;
}

/* Ocultar metadatos (SKU, Categoría, Etiquetas) para un look más limpio */
.single-product .product_meta {
    display: none !important;
}

/* Ocultar el texto publicitario de PayPal de "Paga en 3 plazos" */
.single-product .paypal-buttons-message,
.single-product [data-pp-message],
.single-product iframe[title="pp-message"],
.single-product .wcppec-checkout-buttons__container p {
    display: none !important;
}

/* ==========================================================================
   CHECKOUT PREMIUM TIPO SHOPIFY (Finalizar Compra)
   ========================================================================== */

/* Contenedor adaptado */
.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 992px) {

    /* Dividir Checkout en dos columnas: 55% Izquierda, 40% Derecha */
    .woocommerce-checkout form.checkout {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        margin-top: 40px;
    }

    /* Columna Dirección / Datos */
    .woocommerce-checkout form.checkout #customer_details {
        width: 55% !important;
        padding-right: 50px;
        border-right: 1px solid #e6e6e6;
        float: none !important;
    }

    /* Columna Resumen / Métodos de pago */
    .woocommerce-checkout form.checkout #order_review_heading,
    .woocommerce-checkout form.checkout #order_review {
        width: 40% !important;
        padding-left: 10px;
        float: none !important;
        clear: none !important;
    }

    /* Dejar la columna derecha fija mientras haces scroll (UX Premium) */
    .woocommerce-checkout form.checkout #order_review {
        position: sticky;
        top: 30px;
    }
}

/* Forzar ancho en columnas internas del plugin */
.woocommerce-checkout form.checkout #customer_details .col-1,
.woocommerce-checkout form.checkout #customer_details .col-2 {
    width: 100% !important;
    float: none !important;
    margin-bottom: 20px;
}

/* Imprimir campos de texto exactamente como en Shopify */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease-in-out;
    box-shadow: transparent 0 0 0 0 !important;
}

/* Efecto Focus (Borde negro Shopify) */
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: #000;
    box-shadow: 0 0 0 1px #000 !important;
    outline: none;
}

/* Tipografía de Títulos y Etiquetas */
.woocommerce-checkout h3 {
    font-size: 22px;
    font-weight: normal;
    font-family: 'Times New Roman', Times, serif;
    /* Editorial */
    margin-bottom: 20px;
    border-bottom: none;
}

.woocommerce-checkout .form-row label {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 7px;
    display: inline-block;
}

/* Aviso discreto de Opcional */
.woocommerce-checkout .optional {
    color: #999;
    font-weight: 300;
    font-size: 12px;
}

/* Tabla de resumen de carro (Total) - Minimalista */
.woocommerce-checkout table.shop_table {
    border: none !important;
    border-collapse: separate;
    border-spacing: 0;
}

.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
    border-width: 0 0 1px 0 !important;
    border-style: solid !important;
    border-color: #f2f2f2 !important;
    padding: 16px 0;
}

/* Estilo Tarjetas de Métodos de Pago (Radio Buttons Limpios) */
.woocommerce-checkout #payment {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    padding: 0;
    margin-top: 15px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: none;
    padding: 0;
    margin: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
    padding: 18px 20px !important;
    border-bottom: 1px solid #d9d9d9 !important;
    margin: 0;
    font-size: 15px;
    color: #333;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
    border-bottom: none !important;
}

/* Caja oculta de datos de tarjeta al activar el radio (Ej: Stripe) */
.woocommerce-checkout #payment div.payment_box {
    background-color: #fafafa !important;
    margin: 0 -20px -18px -20px !important;
    padding: 20px !important;
    border-top: 1px solid #d9d9d9 !important;
    border-radius: 0 0 5px 5px;
}

.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

/* Botón Final "Realizar el Pedido" GIGANTE de Shopify */
.woocommerce-checkout #payment #place_order {
    background-color: #000;
    color: #fff;
    font-size: 17px;
    padding: 22px 20px;
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: opacity 0.3s ease;
    border: none;
}

.woocommerce-checkout #payment #place_order:hover {
    background-color: #000;
    opacity: 0.8 !important;
}

/* ==========================================================================
   PESTAÑAS DE PRODUCTO (Descripción / Valoraciones)
   ========================================================================== */

/* Separar el contenido de los bordes laterales ligeramente */
.woocommerce div.product .woocommerce-tabs {
    padding-left: 8px;
    padding-right: 8px;
}

/* Opcional: darle un pequeño margen arriba para separarlo de los productos relacionados */
.woocommerce div.product .woocommerce-tabs .panel {
    padding-top: 15px;
}

/* ==========================================================================
   NUEVAS SECCIONES HOME (Storytelling, Social Proof, Spotlight, Newsletter)
   ========================================================================== */

/* 6. Storytelling (50/50) */
.warmly-story-section {
    display: flex;
    flex-wrap: wrap;
    margin: 80px 0;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

.warmly-story-section .story-image {
    flex: 1 1 50%;
    min-width: 300px;
}

.warmly-story-section .story-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.warmly-story-section .story-content {
    flex: 1 1 50%;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 300px;
}

.story-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

.story-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.story-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background-color: #333;
    color: #fff;
}

/* 7. Prueba Social (Valoraciones) */
.warmly-social-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0 80px;
}

.review-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #eee;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-stars {
    color: #000;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin: 0;
}

/* 8. Spotlight Banner */
.warmly-spotlight-section {
    margin: 80px 0;
    width: 100%;
}

.spotlight-bg {
    position: relative;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.spotlight-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 30px;
}

.spotlight-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.spotlight-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #fff;
}

.spotlight-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.spotlight-btn:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* 9. Newsletter VIP */
.warmly-newsletter-section {
    background-color: #fafafa;
    padding: 80px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 60px;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000;
}

.newsletter-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fff;
    font-size: 14px;
    outline: none;
}

.newsletter-form input[type="email"]:focus {
    border-color: #000;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .warmly-story-section .story-content {
        padding: 40px 20px;
    }

    .story-title {
        font-size: 26px;
    }

    .spotlight-title {
        font-size: 32px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* ==========================================================================
   PÁGINA SOBRE NOSOTROS (El Método Eco-Jin)
   ========================================================================== */
.about-us-page {
    background-color: #fff;
}

/* 1. Hero Banner */
.about-us-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-us-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    /* Oscurecer para leer bien el texto blanco */
}

.about-us-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 0 20px;
    max-width: 900px;
}

.about-us-hero h1 {
    font-size: 44px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

.about-us-hero p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 2. Problem vs Solution */
.about-us-problem-solution {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 100px auto;
    gap: 40px;
    padding: 0 20px;
}

.problem-col,
.solution-col {
    flex: 1 1 400px;
    padding: 60px 50px;
    border-radius: 8px;
}

.problem-col {
    background-color: #fafafa;
    border-left: 3px solid #ccc;
}

.solution-col {
    background-color: #000;
    color: #fff;
    border-left: 3px solid #fff;
}

.col-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.problem-col h2 {
    color: #000;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.solution-col h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.problem-col p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.solution-col p {
    color: #ddd;
    line-height: 1.8;
    font-size: 16px;
}

/* 3. 3 Pilares Grid */
.about-us-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
    text-align: center;
}

.pillar {
    padding: 50px 30px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.pillar h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 400;
}

.pillar p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* 4. Llamada a la acción final */
.about-us-cta {
    background-color: #fafafa;
    text-align: center;
    padding: 100px 20px;
}

.about-us-cta h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 400;
}

.about-us-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.cta-btn-giant {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 20px 50px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-btn-giant:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .about-us-hero h1 {
        font-size: 30px;
    }

    .problem-col,
    .solution-col {
        padding: 40px 20px;
    }

    .problem-col h2,
    .solution-col h2 {
        font-size: 26px;
    }
}

/* ==========================================================================
   PIE DE PÁGINA PREMIUM (CUSTOM FOOTER)
   ========================================================================== */
.custom-premium-footer {
    background-color: #111;
    color: #eee;
    padding: 80px 20px 20px;
    font-family: inherit;
    border-top: 1px solid #222;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-widget-title {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #555;
    transition: width 0.3s ease;
}

.footer-col:hover .footer-widget-title::after {
    width: 50px;
    background-color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-socials a {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-socials a:hover {
    opacity: 1;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pay-icon {
    font-size: 11px;
    border: 1px solid #444;
    padding: 5px 10px;
    border-radius: 3px;
    color: #888;
    letter-spacing: 1px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #222;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #777;
    margin: 0;
}

/* ==========================================================================
   LÍNEA LABONCLER V.I.P (DARK MODE LANDING PAGE)
   ========================================================================== */
.laboncler-dark-mode {
    background-color: #0d0d0d;
    color: #f5f5f5;
    min-height: 100vh;
}

/* Eliminar márgenes blancos residuales para que se funda bien con el footer oscuro */
.laboncler-dark-mode #main {
    margin-bottom: 0 !important;
}

/* 1. Hero Laboncler */
.laboncler-hero {
    width: 100%;
}
.laboncler-bg {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.laboncler-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Degradado ultra oscuro para transición nítida */
    background: linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, rgba(13,13,13,1) 100%);
}
.laboncler-hero-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    margin-top: 40px; /* Bajarlo por la cabecera clara */
}
.laboncler-subtitle {
    display: block;
    font-size: 13px;
    letter-spacing: 5px;
    color: #d4af37; /* Toque ORO viejo / Lujo */
    text-transform: uppercase;
    margin-bottom: 20px;
}
.laboncler-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 10px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.laboncler-desc {
    font-size: 18px;
    color: #ccc;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 2. Manifesto */
.laboncler-manifesto {
    padding: 60px 20px 80px;
    text-align: center;
    background-color: #0d0d0d;
}
.manifesto-inner {
    max-width: 800px;
    margin: 0 auto;
}
.manifesto-inner h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 1px;
}
.manifesto-inner p {
    color: #999;
    font-size: 15.5px;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 40px;
}
.elegant-line {
    width: 60px;
    height: 1px;
    background-color: #d4af37; /* Detalles dorados sutiles */
    margin: 0 auto;
}

/* 3. Products Grid Oscuro VIP */
.laboncler-products {
    padding: 0 20px 100px;
    background-color: #0d0d0d;
}
.laboncler-products-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.laboncler-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 60px 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.laboncler-product-item {
    text-align: center;
}
.laboncler-product-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #171717; /* Peana gris oscuro elegante en vez de blanco roto */
    margin-bottom: 25px;
    padding: 30px;
}
.laboncler-product-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.laboncler-product-item:hover .laboncler-product-image img {
    transform: scale(1.05) translateY(-5px);
}

/* Botón VIP flotante Dorado */
.laboncler-product-action {
    position: absolute;
    bottom: 20px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.laboncler-product-item:hover .laboncler-product-action {
    opacity: 1;
    transform: translateY(0);
}
.laboncler-add-to-cart-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #d4af37; /* Botón distintivo en modo oscuro */
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;
}
.laboncler-add-to-cart-btn:hover {
    background-color: #fff;
    color: #000;
}

.laboncler-product-title {
    margin: 0 0 10px;
}
.laboncler-product-title a {
    color: #f5f5f5;
    font-size: 15px;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.laboncler-product-title a:hover {
    color: #d4af37;
}
.laboncler-product-price {
    display: block;
    color: #d4af37; /* Precios en dorado, señal visual de alta gama */
    font-family: 'Playfair Display', serif;
    font-size: 16.5px;
}
.laboncler-product-price ins { text-decoration: none; }
.laboncler-empty {
    text-align: center;
    color: #666;
    font-size: 16px;
    font-style: italic;
    padding: 100px 0;
}