/* =========================================
   DECOPADO THEME — BASE CSS (OPTIMIZED)
   1. VARIABLES & RESET
   ========================================= */
:root { 
    /* --- PALETA DE MARCA --- */
    --primary:      #161616;
    --accent:       #F2C200;
    --bg:           #FFFFFF;
    --white:        #FFFFFF;

    /* --- TEXTOS --- */
    --text-body:    #2F2F2F;
    --text-title:   #111111;
	--text-title-summary:   #3B3934;
    
    /* --- DETALLES --- */
    --color-star:   #F2C200;
    --color-timer:  #1A1A1A;  
    --color-wa:     #25D366;  
    --primary-ink:  #0D0D0D;
    --title-strong: #0F0F0F;
    --accent-strong:#A57E00;
    
    /* --- MEDIDAS & UI --- */
    --radius-card:  0px;
    --radius-btn:   0px;     
    --nav-height:   75px;
    --max-w-content: 1600px; 
    --side-gap:      10px;
    --shadow:        0 16px 34px -24px rgba(0,0,0,0.28);
	--section-gap: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-body);
    padding-bottom: 84px; /* Espacio para Mobile Nav */
    overflow-x: hidden;
}

/* Tipografía Básica */
h1, h2, h3, h4, h5, h6, .logo { color: var(--text-title); }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; height: auto; object-fit: cover; }

/* Utilidades Responsive */
.desktop-only { display: none !important; }
.mobile-only { display: flex !important; }

@media (min-width: 1024px) {
    .desktop-only { display: flex !important; }
    .mobile-only { display: none !important; }
    body { padding-bottom: 0; }
}

.content-container,
.container { 
    max-width: var(--max-w-content);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--side-gap);
}

/* =========================================
   2. HEADER & TOP WRAPPER
   ========================================= */
.top-wrapper { 
    width: 100%;
    display: flex; flex-direction: column; 
}

/* --- MARQUESINA --- */
.marquee-bar {
    background:
        linear-gradient(90deg, #ffd84d 0%, var(--accent) 35%, #d4a800 100%);
    color: var(--primary-ink);
    overflow: hidden; 
    white-space: nowrap; height: 40px; font-size: 0.78rem; font-weight: 900; 
    display: flex; align-items: center; text-transform: uppercase; z-index: 101;
    letter-spacing: 0.12em;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.18);
    /* Por defecto (Desktop) es relativa */
    position: relative; 
    order: -1; 
}

.marquee-track { display: flex; width: max-content; animation: scrollInfinite 35s linear infinite; }
@keyframes scrollInfinite { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; text-shadow: 0 1px 0 rgba(255,255,255,0.12); }
.marquee-dot { font-size: 0.42rem; margin: 0 28px; opacity: 0.78; color: rgba(13,13,13,0.72); }

/* --- HEADER PRINCIPAL --- */
.header {
    background: linear-gradient(180deg, rgba(22,22,22,0.98) 0%, rgba(13,13,13,0.96) 100%);
    backdrop-filter: blur(12px); height: 70px;
    border-bottom: 1px solid rgba(242,194,0,0.22); width: 100%; transition: 0.3s;
    box-shadow: 0 16px 34px -28px rgba(0,0,0,0.85);
    z-index: 100;
    /* Por defecto (Desktop) es sticky */
    position: sticky; 
    top: 0;
    order: 0;
}
.header.is-stuck {
    background: linear-gradient(180deg, #ffd84d 0%, var(--accent) 58%, #d7ab00 100%);
    border-bottom-color: rgba(17,17,17,0.22);
    box-shadow: 0 18px 34px -26px rgba(0,0,0,0.38);
}

.header-inner {
    max-width: var(--max-w-content); width: 100%; height: 100%;
    margin: 0 auto; padding: 0 var(--side-gap); 
    display: flex; align-items: center; justify-content: space-between;
}

.logo-link { display: flex; align-items: center; height: 100%; }
.logo-img { width: auto !important; height: 45px !important; max-height: 45px !important; display: block; transition: transform 0.3s, filter 0.3s;  }
.logo-link:hover .logo-img { transform: scale(1.05); }
.header.is-stuck .logo-link { color: var(--primary-ink); }
.header.is-stuck .logo-img { filter: brightness(0) saturate(100%); }

/* Iconos Header */
.header-icons { display: flex; align-items: center; gap: 20px; }
.header-icons button, .header-icons .icon-link { color: var(--white) !important; display: flex; align-items: center; transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease; }
.header-icons button:hover, .header-icons .icon-link:hover { color: var(--accent) !important; opacity: 1; transform: translateY(-2px); }
.header.is-stuck .header-icons button,
.header.is-stuck .header-icons .icon-link { color: var(--primary-ink) !important; }
.header.is-stuck .header-icons button:hover,
.header.is-stuck .header-icons .icon-link:hover { color: rgba(17,17,17,0.76) !important; }
.header.is-stuck .cart-badge,
.header.is-stuck .wishlist-badge {
    background: var(--primary-ink);
    color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 216, 77, 0.65);
}
.icon-link{ gap: 8px; }

.header-username{
  font-weight: 600;
  font-size: 1.2rem;       /* un toque más grande */
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--white);
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
	transform: translateY(1px);
}
.header.is-stuck .header-username { color: var(--primary-ink); }
.header.is-stuck .header-avatar { border-color: rgba(17,17,17,.18); box-shadow: 0 0 0 1px rgba(17,17,17,.08); }

@media (max-width: 1023px){
  .header-username{ display:none; }
}


/* --- COMPORTAMIENTO STICKY (Lógica Crucial) --- */

/* MOBILE (< 1024px) */
/* Diseño: Logo arriba (scrollea), Marquesina abajo (se pega) */
@media (max-width: 1023px) {
    /* 1. HEADER: Pasa a ser relativo (scrollea) y sube visualmente */
    .header { 
        order: -1 !important; 
        position: relative !important; 
    }

    /* 2. MARQUESINA: Pasa a ser Sticky (se queda fija) y baja visualmente */
    .marquee-bar { 
        order: 0 !important; 
        position: sticky !important; 
        top: 0 !important; /* Fundamental para que pegue */
        box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    }

    /* Ajustes visuales extra del mobile */
    .header-inner { justify-content: center !important; }
    .logo-img { height: 38px !important; max-height: 38px !important; }
}

/* DESKTOP (>= 1024px) */
/* Diseño: Marquesina arriba (scrollea), Header/Menú abajo (se pega) */
@media (min-width: 1024px) {
   /* En desktop confirmamos el orden inverso */
    .marquee-bar { position: relative; order: -1; }
    .header { order: 0; position: sticky; top: 0; }
    
    .header-inner { display: grid; grid-template-columns: 1fr auto 1fr; }
    .logo { justify-self: start; }
    .header-icons { justify-self: end; }
    .logo-img { height: 45px !important; max-height: 45px !important; }
}

/* =========================================
   3. MENU DESKTOP & MEGA MENU
   ========================================= */
.desktop-nav { display: flex; gap: 10px; align-items: center; }
.desktop-nav > a, .nav-item-wrapper .nav-link { 
    position: relative; color: var(--white); text-decoration: none; font-size: 0.9rem;
    font-weight: 800; padding: 10px 16px; border-radius: 0; transition: all 0.3s ease; 
    opacity: 0.96; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.header.is-stuck .desktop-nav > a,
.header.is-stuck .nav-item-wrapper .nav-link { color: var(--primary-ink); }
.desktop-nav > a:hover, .nav-item-wrapper:hover .nav-link { 
    background-color: var(--accent); backdrop-filter: blur(4px);
    color: var(--primary-ink) !important;
    opacity: 1; transform: translateY(-1px);
    box-shadow: 0 12px 24px -18px rgba(242,194,0,0.7);
}
.header.is-stuck .desktop-nav > a:hover,
.header.is-stuck .nav-item-wrapper:hover .nav-link {
    background-color: rgba(17,17,17,0.92);
    color: var(--accent) !important;
    box-shadow: 0 16px 26px -18px rgba(0,0,0,0.42);
}

.nav-item-wrapper { position: relative; height: 100%; display: flex; align-items: center; }
.mega-menu {
    position: absolute; top: 100%; left: -20px; width: 680px; 
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 0; box-shadow: 0 25px 60px -10px rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.5);
    padding: 35px; display: flex; gap: 40px; opacity: 0; visibility: hidden; 
    transform: translateY(20px) scale(0.98); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); 
    cursor: default; z-index: 1000;
}
.mega-menu::before {
    content: ''; position: absolute; top: -6px; left: 45px; width: 14px; height: 14px;
    background: white; transform: rotate(45deg); border-radius: 0;
}
.nav-item-wrapper:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(18px) scale(1); }

.mega-col-links { flex: 1; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.mega-link { 
    color: var(--text-body) !important; font-weight: 600; font-size: 1.05rem;
    padding: 12px 16px; border-radius: 0; transition: 0.2s ease; display: flex; 
    justify-content: space-between; align-items: center; border-bottom: 1px solid transparent;
}
.mega-link span { font-size: 0.8rem; color: #999 !important; font-weight: 400; text-transform: uppercase; letter-spacing: 0.5px; transition: 0.2s; }
.mega-link:hover { background-color: #f4f4f4; color: var(--primary) !important; transform: translateX(5px); }
.mega-link:hover span { color: var(--accent) !important; }

.mega-card { width: 280px; border-radius: 0; overflow: hidden; position: relative; flex-shrink: 0; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.mega-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease, opacity 0.3s ease; opacity: 1; }
.mega-card h4 { transition: opacity 0.3s ease; }
.nav-item-wrapper:hover .mega-card img { transform: scale(1.1); }
.mega-card-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; color: white;
}



/* =========================================
   4. COMPONENTES GLOBALES: OVERLAYS UNIFICADOS
   (Search, Drawer, Lightbox)
   ========================================= */

/* --- Estilos Base Comunes (Fondo Glass) --- */
.overlay,
.glass-overlay,
.lightbox-overlay {
    position: fixed;
    inset: 0; 
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Estado Activo --- */
.overlay.show,
.glass-overlay.active,
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* --- Botones Cerrar (Estilo Unificado) --- */
.close-btn,
.glass-btn-close,
.lightbox-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f4f4f4;
    border: 2px solid transparent;
    color: var(--text-body);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    font-family: sans-serif;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 100;
}

/* Animación Hover Botones */
.close-btn:hover,
.glass-btn-close:hover,
.lightbox-close:hover {
    background-color: #ff6b6b;
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
}

.close-btn:active,
.glass-btn-close:active,
.lightbox-close:active {
    transform: scale(0.95);
}

/* --- REGLAS ESPECÍFICAS DE CADA POPUP --- */

/* A. Drawer (Cajón Lateral) */
.overlay { z-index: 2000; }
.drawer { 
    position: fixed; top: 0; height: 100%; width: 90%; max-width: 450px; 
    background: var(--white); z-index: 2100; padding: 20px;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.d-left { left: 0; transform: translateX(-100%); } 
.d-right { right: 0; transform: translateX(100%); }
.drawer.show { transform: translateX(0); }

/* B. Search Overlay (Buscador) */
.glass-overlay {
    z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.glass-btn-close { position: absolute; top: 20px; right: 20px; }
.glass-search-wrapper { width: 85%; max-width: 700px; text-align: center; position: relative; }
.glass-input { width: 100%; background: transparent; border: none; border-bottom: 2px solid #333; padding: 10px 0; font-size: 1.6rem; color: #111; text-align: center; outline: none; border-radius: 0; font-family: 'Inter', sans-serif; font-weight: 300; }
.glass-input:focus { border-bottom-color: var(--accent); }
.ajax-results { margin-top: 25px; background: white; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); max-height: 55vh; overflow-y: auto; display: none; text-align: left; -webkit-overflow-scrolling: touch; }
.result-row { padding: 15px 20px; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; cursor: pointer; }
.r-img { width: 50px; height: 50px; background: #eee; border-radius: 8px; margin-right: 15px; flex-shrink: 0; overflow: hidden; display: flex; align-items:center; justify-content:center; }
.r-img img { width: 100%; height: 100%; object-fit: cover; }

/* C. Lightbox Overlay (Galería) */
.lightbox-overlay {
    z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    pointer-events: none;
}
.lightbox-close { position: absolute; top: 20px; right: 20px; }
.lightbox-img-wrap { width: 100%; height: auto; flex-grow: 1; display: flex; align-items: center; justify-content: center; padding: 20px; overflow: hidden; }
.lightbox-img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.lightbox-counter { margin-bottom: 30px; background: rgba(0, 0, 0, 0.05); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 700; color: var(--text-body); letter-spacing: 1px; }

/* Media Queries Overlay */
@media (min-width: 768px) { 
    .glass-input { font-size: 3rem; border-bottom-width: 3px; } 
    .glass-btn-close,
    .lightbox-close { 
        top: 40px; right: 40px; 
        font-size: 30px; width: 60px; height: 60px; 
    } 
}

/* Menu Drawer Content */
#menuDrawer { padding: 0; background: var(--bg); }
.mobile-profile { padding: 30px 25px 20px; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: space-between; border-radius: 0; }
.user-info { display: flex; align-items: center; gap: 15px; }
.user-avatar { width: 50px; height: 50px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.header-avatar{  width: 28px; height: 28px; border-radius: 50%; object-fit: cover; display: block; border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.18); background: #fff;}
.mobile-links { padding: 20px 25px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.m-link { font-size: 1.1rem; font-weight: 600; color: var(--text-body); padding: 10px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; width: 100%; text-decoration: none; background: none; border: none; text-align: left; }
.m-sub-menu { display: none; flex-direction: column; gap: 10px; padding-left: 15px; border-left: 2px solid var(--accent); margin-top: 5px; }
.m-sub-item { font-size: 0.95rem; color: #666; padding: 8px 0; }
.mobile-spacer { flex-grow: 1; display: flex; align-items: center; justify-content: center; padding: 20px 25px 40px; }
.promo-card-mobile { background: var(--white); width: 100%; border-radius: 0; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); position: relative; display: flex; flex-direction: column; }
.pcm-img { height: 120px; width: 100%; object-fit: cover; }
.pcm-content { padding: 15px; text-align: center; }
.pcm-btn { background: var(--primary); color: white; width: 100%; padding: 10px; border-radius: 8px; font-weight: 600; margin-top: 5px; font-size: 0.9rem; }
.social-icons.on-white { justify-content: center; margin: 25px 0; gap: 15px; }
.social-icons.on-white a { width: 60px; height: 60px; background: #f0f0f0; color: var(--text-body); font-size: 1.8rem; box-shadow: 0 4px 10px rgba(0,0,0,0.08); border: 1px solid transparent; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
.social-icons.on-white a:hover { background: var(--primary); color: white; transform: translateY(-5px) scale(1.1); box-shadow: 0 10px 20px rgba(159, 182, 177, 0.5); }

/* =========================================
   CART DRAWER CONTENT (OPTIMIZADO)
   ========================================= */

/* Contenedor principal scrollable */
#cartContent { 
    flex-grow: 1; 
    overflow-y: auto; 
    overflow-x: hidden; 
    padding-right: 5px; 
    scrollbar-width: thin; 
    scrollbar-color: #eee transparent; 
}

/* Fila de cada producto */
.cart-item { 
    display: flex; 
    gap: 15px; 
    padding: 15px 0; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    align-items: center; 
    position: relative;
}

/* Imagen del producto */
.cart-img { 
    width: 85px; 
    height: 85px; 
    border-radius: 12px; 
    overflow: hidden; 
    flex-shrink: 0;
}

/* Selector de cantidad */
.cart-qty-selector { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-top: 8px; 
}

.qty-btn { 
    width: 24px; 
    height: 24px; 
    border-radius: 50%; 
    border: 1px solid #ddd; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.8rem; 
    cursor: pointer;
}

/* BOTÓN ELIMINAR (Integrado sin !important) */
#cartContent .cart-item .remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #ff6b6b;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
}

#cartContent .cart-item .remove:hover {
    background-color: transparent;
    color: #e74c3c;
    transform: scale(1.1);
}

#cartContent .cart-item .remove i {
    font-size: 1.1rem;
    font-weight: 400;
}

/* CART FOOTER & CHECKOUT */
.cart-footer { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    padding: 20px; 
    background: var(--white); 
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05); 
    border-top: 1px solid rgba(0,0,0,0.05); 
    z-index: 10; 
}

.checkout-btn { 
    width: 100%; 
    background: var(--primary); 
    color: white; 
    padding: 16px; 
    border-radius: var(--radius-btn); 
    font-weight: 700; 
    font-size: 1rem; 
    letter-spacing: 0.5px; 
    margin-top: 15px; 
    transition: 0.3s; 
    text-transform: uppercase; 
    box-shadow: 0 5px 15px rgba(159, 182, 177, 0.4); 
    border: none;
    cursor: pointer;
}

.checkout-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(159, 182, 177, 0.6); 
}

/* =========================================
   ESTILOS TOAST SISTEMA (BLOQUE UNIFICADO - COMPACTO)
   ========================================= */
.toast-card { position: fixed; top: -120px; left: 50%; transform: translateX(-50%); background: var(--white); min-width: 320px; max-width: 90%; padding: 12px; border-radius: 12px; display: flex; align-items: center; gap: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.12); border: 1px solid rgba(0,0,0,0.05); z-index: 30000; visibility: hidden; opacity: 0; transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); }
.toast-card.show { top: 25px; visibility: visible; opacity: 1; }
#toast.toast-system { height: auto !important; min-height: 60px !important; align-items: center !important; padding: 15px 20px !important; gap: 15px !important; }
.toast-img-box { width: 50px; height: 50px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #f0f0f0; }
.toast-img-box img { width: 100%; height: 100%; object-fit: cover; }
#toast.toast-system .toast-img-box { display: flex !important; align-items: center; justify-content: center; width: 42px !important; height: 42px !important; border-radius: 50% !important; background-color: #ccc; flex-shrink: 0; margin: 0 !important; }
#toast.toast-system .toast-img-box img { display: none !important; }
#toast.toast-system .toast-img-box i { color: #ffffff !important; font-size: 1.2rem !important; display: block !important; }
#toast.ts-success .toast-img-box { background-color: #27ae60 !important; box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4) !important; }
#toast.ts-error .toast-img-box { background-color: #e74c3c !important; box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4) !important; }
.toast-body { flex-grow: 1; display: flex; flex-direction: column; gap: 2px; }
#toast.toast-system .toast-body { flex: 1 !important; width: 100% !important; display: flex !important; flex-direction: column !important; justify-content: center !important; }
.t-status { font-size: 0.75rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 5px; }
#toast.toast-system .t-status { display: none !important; }
.t-product-name { font-size: 0.9rem; color: var(--text-body); font-weight: 600; margin: 0; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
#toast.toast-system .t-product-name { white-space: normal !important; text-overflow: clip !important; overflow: visible !important; display: block !important; -webkit-line-clamp: unset !important; -webkit-box-orient: unset !important; font-size: 0.9rem !important; line-height: 1.4 !important; font-weight: 500 !important; margin: 0 !important; color: #444 !important; }
#toast.toast-system .t-product-name strong, #toast.toast-system .t-product-name div:first-child { font-weight: 800 !important; color: #000 !important; }
.t-action-btn { background: var(--text-body); color: var(--white); border: none; padding: 8px 16px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: 0.2s; }
.t-action-btn:hover { background: var(--primary); }

/* =========================================
   5. SECCIONES HOME (HERO, BENEFITS, BENTO)
   ========================================= */
.hero { position: relative; width: 100%; max-width: 100%; margin: 0; overflow: hidden; height: 520px; background-color: #111; user-select: none; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(17,17,17,0.5) 0%, rgba(17,17,17,0.08) 44%, rgba(17,17,17,0.58) 100%); pointer-events: none; z-index: 0; }
.hero-progress { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: rgba(255,255,255,0.16); z-index: 12; overflow: hidden; }
.hero-progress-bar { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, #ffe073 0%, var(--accent) 55%, #d9ab00 100%); transform: scaleX(0); transform-origin: left center; will-change: transform; }
.slider-track { display: block; height: 100%; width: 100%; }
.slide { display: block; width: 100%; height: 100%; position: relative; }
.slide + .slide { display: none; }
.slide img { display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero.is-enhanced .slider-track { display: flex; cursor: grab; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.hero.is-enhanced .slide { display: block; min-width: 100%; }
.hero.is-enhanced .slide + .slide { display: block; }
.hero-content { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem) clamp(5.5rem, 8vw, 8.5rem); color: var(--white); text-align: left; pointer-events: none; background: linear-gradient(90deg, rgba(17,17,17,0.74) 0%, rgba(17,17,17,0.42) 34%, rgba(17,17,17,0.04) 72%); }
.hero-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 900; background: var(--accent); color: var(--primary-ink); padding: 7px 12px; border-radius: 4px; margin-bottom: 15px; }
.hero h1 { font-size: clamp(2.8rem, 4.8vw, 5rem); line-height: 0.92; margin-bottom: 0.8rem; color: var(--white); font-weight: 900; letter-spacing: -0.06em; text-transform: uppercase; max-width: 9ch; }
.hero-desc { font-size: 1.02rem; margin-bottom: 1.5rem; opacity: 0.92; max-width: 34ch; font-weight: 500; }
.hero-content button { pointer-events: auto; }
.btn-cta { background: var(--accent); color: var(--primary-ink); padding: 14px 24px; border-radius: var(--radius-btn); font-weight: 900; font-size: 0.86rem; letter-spacing: 0.08em; transition: 0.3s; box-shadow: 0 14px 30px -18px rgba(0,0,0,0.7); }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); background: #ffd84d; color: var(--primary-ink); }
.btn-cta:active { transform: scale(0.95); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(17,17,17,0.88); color: var(--accent); width: 52px; height: 52px; border-radius: 10px; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: 0.2s; box-shadow: 0 16px 28px -22px rgba(0,0,0,0.85); border: 1px solid rgba(242,194,0,0.24); }
.slider-btn:hover { background: #111; color: #ffe073; transform: translateY(-50%) scale(1.08); }
.slider-btn.prev { left: 30px; } .slider-btn.next { right: 30px; }
.slider-btn svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.5; fill: none; }
.home.dc-motion-ready .slide img { transform: scale(1.08); transition: transform 1.35s cubic-bezier(.2,.8,.2,1), filter .45s ease; }
.home.dc-motion-ready .slide.is-active img { transform: scale(1); }
.home.dc-motion-ready .hero-content { overflow: hidden; }
.home.dc-motion-ready .hero-content::before { content: ""; position: absolute; left: clamp(4.2rem, 6.6vw, 6rem); top: clamp(1.4rem, 3vw, 2.4rem); bottom: clamp(1.5rem, 3vw, 2.6rem); width: 6px; background: linear-gradient(180deg, rgba(242,194,0,0) 0%, var(--accent) 18%, var(--accent) 82%, rgba(242,194,0,0) 100%); box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 18px 32px -22px rgba(0,0,0,.65); opacity: 0; transform: scaleY(.08); transform-origin: top center; }
.home.dc-motion-ready .slide .hero-content > * { opacity: 0; filter: blur(8px); transform: translate3d(0, 34px, 0); will-change: transform, opacity, filter; }
.home.dc-motion-ready .slide.is-active .hero-content::before { animation: dcHeroRail .72s cubic-bezier(.22,.8,.2,1) .08s both; }
.home.dc-motion-ready .slide.is-active .hero-tag { animation: dcHeroEnter .82s cubic-bezier(.2,.8,.2,1) .1s both; }
.home.dc-motion-ready .slide.is-active h1 { animation: dcHeroEnter .9s cubic-bezier(.2,.8,.2,1) .2s both; }
.home.dc-motion-ready .slide.is-active .hero-desc { animation: dcHeroEnter .84s cubic-bezier(.2,.8,.2,1) .34s both; }
.home.dc-motion-ready .slide.is-active .btn-cta { animation: dcHeroEnter .78s cubic-bezier(.2,.8,.2,1) .48s both; }
@keyframes dcHeroRail { from { opacity: 0; transform: scaleY(.08); } to { opacity: 1; transform: scaleY(1); } }
@keyframes dcHeroEnter { 0% { opacity: 0; filter: blur(8px); transform: translate3d(0, 34px, 0); } 60% { opacity: 1; } 100% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); } }
@media (min-width: 1024px) { .hero { width: 100%; max-width: 100%; border-radius: 0; margin-top: 0; height: 620px; box-shadow: none; } .slider-btn { display: flex; } }
@media (max-width: 1023px) { .hero { margin: 0; height: 460px; } .hero-progress { height: 3px; } .hero-content { align-items: center; text-align: center; padding: 2rem 1.25rem; background: linear-gradient(to top, rgba(17,17,17,0.82) 0%, rgba(17,17,17,0.3) 56%, rgba(17,17,17,0.04) 100%); } .home.dc-motion-ready .hero-content::before { left: 50%; top: 28px; bottom: auto; width: 72px; height: 5px; transform-origin: left center; transform: scaleX(.08); } .home.dc-motion-ready .slide.is-active .hero-content::before { animation-name: dcHeroRailMobile; } .hero h1 { max-width: 10ch; } .hero-desc { max-width: 28ch; } }
@keyframes dcHeroRailMobile { from { opacity: 0; transform: translateX(-50%) scaleX(.08); } to { opacity: 1; transform: translateX(-50%) scaleX(1); } }

/* Benefits */
.benefits-bar { width: 100%; background-color: var(--white); padding: 0; margin-bottom: 0; }
.benefits-container { max-width: var(--max-w-content); margin: 0 auto; display: flex; align-items: center; }
@media (max-width: 1023px) { .benefits-bar { background-color: var(--bg); padding: 15px 0; border-bottom: none; } .benefits-container { overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 15px; gap: 12px; scrollbar-width: none; } .benefits-container::-webkit-scrollbar { display: none; } .benefit-item { flex: 0 0 75%; scroll-snap-align: center; background-color: var(--white); padding: 15px 20px; border-radius: 10px; display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 15px; border: 1px solid rgba(201, 162, 126, 0.2); } .benefit-icon { color: var(--accent) !important; font-size: 1.5rem; flex-shrink: 0; } .benefit-text strong { display: block; color: var(--accent) !important; font-size: 1rem; font-weight: 700; } .benefit-text span { color: var(--text-body) !important; font-size: 0.8rem; } }
@media (min-width: 1024px) { .benefits-bar { padding: 25px 0; } .benefits-container { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; } .benefit-item { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 20px; position: relative; padding: 10px 0; } .benefit-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background-color: rgba(201, 162, 126, 0.3); } .benefit-icon { color: var(--accent); font-size: 2.2rem; } .benefit-text { display: flex; flex-direction: column; text-align: left; } .benefit-text strong { font-size: 1.15rem; color: var(--text-body); font-weight: 700; line-height: 1.2; } .benefit-text span { font-size: 0.95rem; color: #888; } }

.home-pro-band { background: #fff; }
.home-pro-band__inner { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(380px, 0.95fr); gap: clamp(48px, 5vw, 96px); align-items: start; padding: 48px 10px 58px; }
.home-pro-band__title-wrap { display: flex; flex-direction: column; gap: 10px; padding-right: clamp(12px, 3vw, 56px); }
.home-pro-band__eyebrow { margin: 0; color: var(--accent-strong); font-size: 0.76rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.16em; }
.home-pro-band__title { margin: 0; color: var(--text-title); font-size: clamp(2.8rem, 4.6vw, 5rem); line-height: 0.9; letter-spacing: -0.04em; font-weight: 900; text-transform: uppercase; max-width: 13ch; }
.home-pro-band__content { display: flex; flex-direction: column; align-items: flex-start; justify-self: end; gap: 22px; width: 100%; max-width: 520px; padding-top: 8px; }
.home-pro-band__text { margin: 0; font-size: 1.16rem; line-height: 1.45; color: var(--text-body); max-width: 38ch; }
.home-pro-band__cta { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 24px; background: var(--accent); color: var(--primary-ink); text-decoration: none; font-size: 0.85rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0; box-shadow: 0 16px 28px -20px rgba(0,0,0,.42); transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; }
.home-pro-band__cta:hover { transform: translateY(-2px); background: #ffd84d; box-shadow: 0 18px 30px -18px rgba(0,0,0,.5); }
@media (max-width: 1023px) { .home-pro-band__inner { grid-template-columns: 1fr; gap: 24px; padding: 28px 15px 34px; } .home-pro-band__title-wrap { padding-right: 0; } .home-pro-band__title { max-width: 12ch; } .home-pro-band__content { justify-self: stretch; max-width: none; padding-top: 0; } .home-pro-band__text { font-size: 1rem; max-width: none; } }

.home main > section,
.home main > .content-container > section { position: relative; }
.home main > section::after,
.home main > .content-container > section::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 100vw; height: 1px; background: rgba(0,0,0,0.08); transform: translateX(-50%); pointer-events: none; }
.home main > section.products-wrap::after,
.home main > .content-container > section.reviews-section::after { content: none; display: none; }
.products-wrap::after { content: none !important; display: none !important; }

/* Section Header */
.section-header { position: relative; display: flex; flex-direction: column; gap: .45rem; margin: 0 0 1.8rem; padding: 0 0 0 22px; }
.section-header::before { content: ""; position: absolute; top: .15rem; bottom: .15rem; left: 0; width: 8px; background: var(--accent); box-shadow: 0 14px 28px -20px rgba(0,0,0,.42); }
.section-header .section-eyebrow { margin: 0; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-strong); }
.section-header .section-title { margin: 0; font-weight: 900; letter-spacing: -0.035em; line-height: 0.92; font-size: clamp(2.1rem, 1.45rem + 2.6vw, 4.1rem); color: var(--text-title) !important; text-transform: uppercase; max-width: 12ch; }
.section-header .section-subtitle { margin: 0; font-size: 0.98rem; line-height: 1.4; color: var(--text-body); opacity: .78; max-width: 60ch; }
.section-header .section-subtitle::before,
.section-header .section-subtitle::after { content: none; }
.section-header.section-header--row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.section-header.section-header--row .section-subtitle { max-width: none; white-space: nowrap; opacity: .75; }
.home.dc-motion-ready .dc-reveal-section { --dc-reveal-distance: 38px; }
.home.dc-motion-ready .dc-reveal-item { opacity: 0; filter: blur(8px); transform: translate3d(0, var(--dc-reveal-distance), 0) skewY(1.5deg); transition: opacity .78s cubic-bezier(.2,.8,.2,1), transform .78s cubic-bezier(.2,.8,.2,1), filter .7s ease; transition-delay: var(--reveal-delay, 0s); will-change: transform, opacity, filter; }
.home.dc-motion-ready .dc-reveal-section.is-visible .dc-reveal-item { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) skewY(0); }
.home.dc-motion-ready .dc-reveal-section .section-header::before { transform-origin: top center; transform: scaleY(.12); transition: transform .7s cubic-bezier(.22,.8,.2,1) var(--reveal-delay, 0s); }
.home.dc-motion-ready .dc-reveal-section.is-visible .section-header::before { transform: scaleY(1); }
.home.dc-motion-ready .dc-reveal-section.is-visible .cat-item,
.home.dc-motion-ready .dc-reveal-section.is-visible .bento-item,
.home.dc-motion-ready .dc-reveal-section.is-visible .mini-card,
.home.dc-motion-ready .dc-reveal-section.is-visible .prod-card,
.home.dc-motion-ready .dc-reveal-section.is-visible .review-card { transition-timing-function: cubic-bezier(.18,.85,.2,1); }
@media (max-width: 640px){ .section-header { padding-left: 18px; } .section-header::before { width: 6px; } .section-header.section-header--row { flex-direction: column; align-items: flex-start; } }

/* Explore (Slider) */
.explore-section { padding: var(--section-gap) 0; overflow: visible; }
.explore-header { margin-bottom: 1.9rem; }
.explore-wrapper { position: relative; overflow: visible; -webkit-mask-image: none; mask-image: none; }
.explore-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px; padding: 4px 0 10px; scroll-behavior: smooth; align-items: stretch; }
.explore-slider::-webkit-scrollbar { display: none; }
.cat-item { flex: 0 0 88vw; aspect-ratio: 1 / 1; position: relative; border-radius: 0; overflow: hidden; scroll-snap-align: center; text-decoration: none; transform: none; opacity: 1; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.08); background: #fff; }
.cat-item.active { transform: none; opacity: 1; z-index: 10; box-shadow: var(--shadow) !important; }
.cat-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); transform: scale(1); }
.cat-overlay { position: absolute; inset: auto 0 0 0; min-height: 96px; background: linear-gradient(to top, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.72) 60%, rgba(17,17,17,0) 100%); display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; gap: 10px; padding: 18px 16px; transition: background 0.35s ease; }
.cat-overlay h3 { color: white; margin: 0; font-size: 1.06rem; font-weight: 900; letter-spacing: 0.035em; text-transform: uppercase; line-height: 1; transform: translateY(0); transition: transform 0.35s ease; }
.cat-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.cat-cta::after { content: ">"; font-size: 0.95em; line-height: 1; }
@media (min-width: 1024px) { .explore-slider { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; padding: 4px 0 10px; } .cat-item { flex: none; width: 100%; aspect-ratio: 1 / 1; } .cat-item:hover { transform: translateY(-8px); box-shadow: 0 22px 38px -22px rgba(0,0,0,.38); border-color: rgba(242,194,0,.45); z-index: 5; } .cat-item:hover img { transform: scale(1.08); } .cat-item:hover .cat-overlay { background: linear-gradient(to top, rgba(17,17,17,0.98) 0%, rgba(17,17,17,0.8) 62%, rgba(17,17,17,0.08) 100%); } .cat-item:hover .cat-overlay h3 { transform: translateY(-2px); } }
@media (max-width: 1023px) { .explore-slider { padding-bottom: 4px; } }

/* Bento Grid */
.bento-section { padding: calc(var(--section-gap) + 8px) 0; background: var(--bg); }
.bento-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
.bento-item { position: relative; border-radius: 0; overflow: hidden; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 24px; border: 1px solid rgba(0,0,0,0.08); cursor: pointer; transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1); transform: scale(1); box-shadow: var(--shadow); isolation: isolate; }
.bento-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,17,0.96) 0%, rgba(17,17,17,0.48) 56%, rgba(17,17,17,0.12) 100%); z-index: 1; opacity: 0.9; transition: opacity 0.35s ease; }
.bento-item::after { content: ''; position: absolute; top: 16px; right: 16px; width: 28px; height: 4px; background: var(--accent); z-index: 2; box-shadow: 0 10px 24px -16px rgba(0,0,0,0.45); }
.bento-content { position: relative; z-index: 2; color: var(--white); width: 100%; max-width: 38ch; transform: translateY(0); transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.bento-tag { font-size: 0.62rem; background: var(--accent); color: var(--primary-ink); padding: 6px 10px; border-radius: 0; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; display: inline-block; margin-bottom: 12px; box-shadow: 0 14px 28px -20px rgba(0,0,0,0.45); }
.bento-content h3 { color: var(--white); font-size: 1.3rem; font-weight: 900; margin: 0; line-height: 0.96; text-shadow: 0 2px 10px rgba(0,0,0,0.3); text-transform: uppercase; letter-spacing: -0.03em; max-width: 12ch; }
.bento-content p { font-size: 0.92rem; margin-top: 0; line-height: 1.45; color: rgba(255,255,255,0.86); opacity: 0; height: 0; overflow: hidden; transition: all 0.35s ease; transform: translateY(10px); max-width: 34ch; }
.bento-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 900; margin-top: 10px; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; opacity: 0; transform: translateY(10px); transition: all 0.45s ease 0.08s; padding-top: 10px; border-top: 2px solid rgba(242,194,0,0.35); }
.bento-link::after { content: ">"; margin-left: 8px; }
.bento-item:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 22px 42px -20px rgba(0,0,0,0.38); z-index: 5; border-color: rgba(242,194,0,0.42); }
.bento-item:hover::before { opacity: 0.96; }
.bento-item:hover .bento-content { transform: translateY(-5px); }
.bento-item.item-large:hover p, .bento-item.item-large:hover .bento-link { opacity: 1; height: auto; margin-top: 8px; transform: translateY(0); }
.item-large { grid-column: span 2; grid-row: span 2; }
@media (min-width: 1024px) { .bento-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 320px); gap: 18px; } .item-large { grid-column: span 2; grid-row: span 2; padding: 36px; } .item-large h3 { font-size: clamp(2.6rem, 2.1rem + 1vw, 3.35rem); max-width: 8ch; } .item-large p { display: block; opacity: 0.86; height: auto; margin-top: 14px; transform: translateY(0); max-width: 40ch; } .item-tall { grid-column: span 1; grid-row: span 2; } .bento-item:not(.item-large):not(.item-tall) { grid-column: span 1; grid-row: span 1; } }

/* Shop The Look */
.look-showcase { margin: 0; padding: calc(var(--section-gap) + 6px) 0 calc(var(--section-gap) + 2px); }
.look-showcase .look-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
.look-showcase .look-img { position: relative; width: 100%; min-height: 560px; background: #000; overflow: hidden; border: 1px solid rgba(0,0,0,.08); cursor: crosshair; }
.look-showcase .look-img > div[style*="bottom:20px"][style*="left:20px"] { display: none !important; }
.look-showcase .look-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) brightness(0.88); transition: transform .8s ease, filter .4s ease; }
.look-showcase .look-img:hover img { filter: contrast(1.08) brightness(1); }
.look-showcase .look-badge { position: absolute; left: 22px; bottom: 22px; z-index: 20; display: inline-flex; align-items: center; min-height: 42px; padding: 8px 16px; background: #fff; color: var(--primary); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 18px 30px -22px rgba(0,0,0,.45); }
.look-showcase .look-pin { position: absolute; width: 42px; height: 42px; padding: 0; border: 2px solid var(--accent); background: var(--primary); color: var(--accent); border-radius: 999px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 25 !important; box-shadow: 0 20px 36px -24px rgba(0,0,0,.78); transition: transform .28s ease, background-color .28s ease, color .28s ease, box-shadow .28s ease; }
.look-showcase .look-pin::after { content: ""; position: absolute; inset: -2px; border-radius: inherit; background: rgba(242,194,0,.55); z-index: -1; animation: pinPulse 2s infinite; }
.look-showcase .look-pin i { font-size: 16px; pointer-events: none; }
@keyframes pinPulse { 0% { transform: scale(1); opacity: .72; } 100% { transform: scale(2.4); opacity: 0; } }
.look-showcase .look-pin:hover,
.look-showcase .look-pin.active { background: var(--accent); color: var(--primary); transform: scale(1.2); box-shadow: 0 0 24px rgba(242,194,0,.45); }
.look-showcase .look-products { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.look-showcase .mini-card { position: relative; display: flex; align-items: center; gap: 18px; width: 100%; padding: 16px; background: #fff; border: 2px solid transparent; cursor: pointer; text-align: left; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.look-showcase .mini-card:hover,
.look-showcase .mini-card.highlighted { border-color: var(--primary); transform: translateX(-10px); box-shadow: 15px 15px 30px rgba(0,0,0,.08); }
.look-showcase .mini-card.highlighted::before { content: "SELECCIONADO"; position: absolute; top: -11px; right: 18px; padding: 3px 10px; background: var(--accent); color: var(--primary); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.look-showcase .mini-img { width: 92px; height: 92px; flex: 0 0 92px; display: flex; align-items: center; justify-content: center; background: #f4f4f4; overflow: hidden; }
.look-showcase .mini-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .45s ease; }
.look-showcase .mini-card:hover .mini-img img { transform: scale(1.06); }
.look-showcase .mini-info { width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.look-showcase .product-kicker { display: inline-flex; align-items: center; min-height: 20px; padding: 2px 7px; background: var(--primary); color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.look-showcase .product-name { margin: 0; font-size: 1.02rem; line-height: 1.15; font-weight: 800; color: var(--primary); text-transform: uppercase; }
.look-showcase .product-price { font-size: 1.22rem; font-weight: 900; color: var(--primary); }
.look-showcase .mini-btn { margin-top: 2px; padding: 10px 14px; width: auto; background: var(--primary); color: #fff; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transition: background-color .25s ease, color .25s ease; }
.look-showcase .mini-card:hover .mini-btn,
.look-showcase .mini-card.highlighted .mini-btn { background: var(--accent); color: var(--primary); }
@media (min-width: 1024px) { .look-showcase .look-grid { grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr); gap: 34px; } .look-showcase .look-img { min-height: 860px; } }
@media (max-width: 640px) { .look-showcase .look-img { min-height: 360px; } .look-showcase .mini-card { gap: 14px; padding: 14px; } .look-showcase .mini-img { width: 78px; height: 78px; flex-basis: 78px; } .look-showcase .product-name { font-size: .92rem; } .look-showcase .product-price { font-size: 1.02rem; } .look-showcase .mini-btn { width: 100%; text-align: center; } }

/* =========================================
   6. PRODUCTOS (SLIDER & CARDS)
   ========================================= */
.products-wrap { margin-top: 0; padding: var(--section-gap) 0 32px; width: 100%; overflow: visible; }
.section-header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; padding: 0; }

/* FIX 1: Overflow Hidden para cortar lo que sobresale */
.p-slider-container { 
    width: 100%; 
    overflow: hidden; 
    position: relative;
}

.prod-card { background: var(--white); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.04); height: 100%; position: relative; }
.p-img-box { width: 100%; aspect-ratio: 4 / 5; position: relative; background-color: #f4f4f4; overflow: hidden; }
.p-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); transform-origin: center center; }
.prod-card:hover .p-img-box img { transform: scale(1.08); }

.badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: white; font-size: 0.65rem; font-weight: 800; padding: 5px 10px; border-radius: 4px; z-index: 5; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.btn-wishlist { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; background: rgba(255,255,255,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ccc; z-index: 5; transition: 0.3s; cursor: pointer; }
.btn-wishlist:hover { color: #ff6b6b; transform: scale(1.1); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.p-details { padding: 18px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.p-category { font-size: 0.65rem; color: #999; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; }
.p-name { font-size: 1rem; font-weight: 600; color: var(--text-body); margin: 0 0 8px 0; line-height: 1.3; }
.p-price { font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.p-action-row { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.btn-add-mini { width: 40px; height: 40px; border-radius: 50%; border: none; color: white; background: var(--primary); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
.btn-add-mini:active { transform: scale(0.9); }
a.added_to_cart.wc-forward { display: none !important; }

/* Control Botones Mobile */
@media (max-width: 1023px) {
    .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; row-gap: 25px; padding: 0; }
    a.btn-add, .desktop-only { display: none !important; }
    a.btn-add-mobile-block { display: flex !important; justify-content: center !important; align-items: center !important; width: 100% !important; padding: 12px 0 !important; margin-top: 8px !important; gap: 8px; background-color: var(--primary) !important; color: white !important; border: 1px solid var(--primary) !important; border-radius: 50px !important; font-size: 0.85rem !important; font-weight: 700 !important; text-transform: uppercase; text-decoration: none !important; line-height: 1 !important; transition: all 0.3s ease; }
}

/* Control Desktop */
@media (min-width: 1024px) {
    .p-slider-track { 
        display: flex; 
        gap: 25px; 
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
        padding: 10px 0;
        
        /* FIX 2: Ancho dinámico y prohibido bajar de línea */
        width: max-content;
        flex-wrap: nowrap;
    }
    
    /* Importante: Mantener ancho fijo de la card para que el cálculo matemático no falle */
    .prod-card { 
        flex: 0 0 260px; /* Ancho fijo */
        width: 260px; 
    }
    
    .prod-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: transparent; z-index: 2; }
    .slider-controls { display: flex; gap: 15px; }
    .slider-controls button { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--primary); background: transparent; color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: visible; }
    .p-next { animation: btnPulse 3s infinite; }
    @keyframes btnPulse { 0% { box-shadow: 0 0 0 0 rgba(159, 182, 177, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(159, 182, 177, 0); } 100% { box-shadow: 0 0 0 0 rgba(159, 182, 177, 0); } }
    .slider-controls button:hover { background: var(--primary); color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(159, 182, 177, 0.4); border-color: var(--primary); animation: none; }
    .slider-controls button i { transition: transform 0.2s ease; }
    .p-prev:hover i { transform: translateX(-3px); } .p-next:hover i { transform: translateX(3px); }
    .slider-controls button:active { transform: scale(0.92); box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    a.btn-add-mobile-block, .mobile-only { display: none !important; }
    a.btn-add { width: 100%; padding: 12px; background: var(--bg); color: var(--text-body); border: 1px solid rgba(0,0,0,0.1); border-radius: 10px; font-size: 0.75rem; font-weight: 800; margin-top: 15px; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px; display: flex !important; justify-content: center !important; align-items: center !important; text-align: center !important; }
    a.btn-add:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(159, 182, 177, 0.4); }
    a.btn-add:active { transform: scale(0.98); }
}

a.added-success { background-color: #27ae60 !important; border-color: #27ae60 !important; color: white !important; display: flex !important; justify-content: center !important; align-items: center !important; gap: 8px !important; cursor: default; pointer-events: auto; }
a.added-success:hover { background-color: #219150 !important; opacity: 1 !important; }
.header-right-group { display: flex; align-items: center; gap: 25px; }
.view-all { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-body); text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 2px; transition: all 0.3s ease; white-space: nowrap; line-height: 1; cursor: pointer;}
.view-all:hover { color: var(--accent); border-bottom-color: var(--primary); transform: translateX(3px); }
@media (max-width: 1023px) { .section-header-flex { display: flex !important; flex-direction: row !important;  justify-content: space-between !important; align-items: center !important; gap: 15px;  } .view-all { font-size: 0.7rem;border-bottom-width: 1px; opacity: 0.9;}}

/* Pro Manifesto */
.pro-manifesto { margin: calc(var(--section-gap) + 8px) calc(50% - 50vw) 0; padding: clamp(30px, 4vw, 56px) 0 clamp(40px, 5vw, 68px); background: var(--accent); overflow: visible; }
.pro-manifesto__shell { width: min(calc(100vw - 48px), 1580px); margin: 0 auto; }
.pro-manifesto__media { position: relative; overflow: hidden; background: #111; min-height: 300px; aspect-ratio: 16 / 7.2; box-shadow: 0 24px 40px -28px rgba(0,0,0,.42); }
.pro-manifesto__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pro-manifesto__panel { position: relative; z-index: 2; width: min(92%, 1480px); margin: clamp(-42px, -4vw, -72px) auto 0; background: #fff; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .88fr); gap: clamp(28px, 4vw, 72px); align-items: start; padding: clamp(24px, 3vw, 40px) clamp(24px, 3.4vw, 40px) clamp(26px, 3.2vw, 36px); box-shadow: 0 24px 42px -30px rgba(0,0,0,.38); }
.pro-manifesto__intro,
.pro-manifesto__body { display: flex; flex-direction: column; align-items: flex-start; }
.pro-manifesto__eyebrow { margin: 0 0 12px; font-size: .78rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; color: rgba(17,17,17,.8); }
.pro-manifesto__title { margin: 0; font-size: clamp(2.2rem, 1.4rem + 2.8vw, 4.3rem); line-height: .9; letter-spacing: -.045em; font-weight: 900; text-transform: uppercase; color: var(--text-title); max-width: 9ch; }
.pro-manifesto__copy { margin: 0 0 22px; font-size: clamp(1rem, .92rem + .45vw, 1.22rem); line-height: 1.4; color: var(--text-body); max-width: 38ch; }
.pro-manifesto__cta { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 22px; background: var(--accent); color: var(--primary-ink); text-decoration: none; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 16px 28px -20px rgba(0,0,0,.4); transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; }
.pro-manifesto__cta:hover { transform: translateY(-2px); background: #ffd84d; box-shadow: 0 18px 30px -18px rgba(0,0,0,.48); }
@media (max-width: 1023px) { .pro-manifesto { margin-top: calc(var(--section-gap) - 2px); padding: 20px 0 32px; } .pro-manifesto__shell { width: min(calc(100vw - 24px), 1580px); } .pro-manifesto__media { aspect-ratio: 4 / 3.2; min-height: 240px; } .pro-manifesto__panel { width: calc(100% - 18px); margin-top: -18px; grid-template-columns: 1fr; gap: 20px; padding: 22px 18px 20px; } .pro-manifesto__title { max-width: 10ch; } .pro-manifesto__copy { margin-bottom: 18px; max-width: none; } .pro-manifesto__cta { min-height: 44px; width: auto; } }

/* =========================================
   7. REVIEWS & FOOTER
   ========================================= */
.reviews-grid { display: flex; gap: 15px; overflow-x: auto; padding: 10px 5px 20px 5px; margin-top: var(--section-gap); scrollbar-width: none; }
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 85%; background: #fff; padding: 2rem; border-radius: var(--radius-card); box-shadow: 0 5px 20px rgba(0,0,0,0.03); text-align: center; }
.stars { color: var(--color-star); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-style: italic; color: var(--text-body); font-size: 0.95rem; margin-bottom: 15px; }
.review-author { font-weight: 700; font-size: 0.85rem; color: var(--primary); }
@media(min-width: 1024px) { .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; overflow-x: visible; padding: 0; } .review-card { flex: unset; width: auto; } }

/* Footer Global */
.footer { background: var(--primary); color: var(--white); margin-top: var(--section-gap); border-top: 1px solid rgba(0,0,0,0.05); width: 100%; overflow-x: hidden; }
.social-icons { display: flex; gap: 10px; }
.social-icons.justify-center { justify-content: center; }
.social-icons a { width: 35px; height: 35px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; }
.social-icons a:hover { background: white; color: var(--primary); }
.made-with-love i { color: #ff6b6b; animation: pulse 1.5s infinite; }
.footer-credit { font-size: 0.78rem; opacity: 0.85; }
.footer-credit a { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* Footer Mobile */
.footer-mobile { display: flex; flex-direction: column; gap: 30px; padding: 0 20px; text-align: center; }
.mb-block { display: flex; flex-direction: column; align-items: center; gap: 15px; width: 100%; }
.mb-title { text-transform: uppercase; letter-spacing: 1px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 5px; margin-bottom: 5px; }
.mb-logo { width: 280px !important; max-width: 90%; margin-bottom: 10px; filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2)); }
.mb-copyright { opacity: 0.6; font-size: 0.85rem; margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.footer-mobile .newsletter-pro { width: 100%; text-align: left; }
.footer-mobile .footer-panel__title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 10px; color: white; }
.footer-mobile .footer-panel__text { margin: 0 0 16px; font-size: 0.85rem; color: white; opacity: 0.8; }
.footer-mobile .pro-form { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.footer-mobile .pro-form input { background: #ffffff; border: 2px solid transparent; padding: 12px 15px; border-radius: 0; color: #333; font-size: 0.95rem; outline: none; width: 100%; box-shadow: none; transition: 0.3s; }
.footer-mobile .pro-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,255,255,0.2); }
.footer-mobile .pro-form button { background: var(--accent); color: #FFF; border: none; padding: 12px; border-radius: 0; font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; cursor: pointer; text-transform: uppercase; width: 100%; box-shadow: none; transition: 0.3s; margin-top: 0; }
.footer-mobile .pro-form button:active { transform: scale(0.98); background: white; color: var(--accent); }
.footer-mobile .map-frame { width: 100%; height: 200px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.15); overflow: hidden; border: none; }
.footer-mobile .map-frame iframe { width: 100%; height: 100%; border: 0; }
.footer-mobile .dt-info-grid { width: 100%; text-align: left; }
.footer-mobile .info-cell { margin-bottom: 20px; display: flex; flex-direction: column; align-items: flex-start; }
.footer-mobile .info-cell p, .footer-mobile .info-cell a { color: var(--white) !important; font-size: 0.95rem; justify-content: flex-start; margin-bottom: 8px; text-decoration: none; }
.footer-mobile .btn-regret-simple { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 5px; display: inline-block; }
.footer-mobile .dt-payments-row { justify-content: center; font-size: 2rem; gap: 20px; margin-top: 10px; display: flex; }
@media (max-width: 1023px) { .footer { padding: 1.5rem 0 8rem; } }

/* Footer Desktop */
@media (min-width: 1024px) {
    .footer { padding: 3rem 0 2rem; }
    .footer-desktop { display: block !important; max-width: var(--max-w-content); margin: 0 auto; padding: 0; }
    .dt-layout-grid { display: grid; grid-template-columns: 220px 1fr 320px; gap: 50px; align-items: start; margin-bottom: 3rem; }
    .dt-brand-col { display: flex; flex-direction: column; align-items: flex-start; }
    .footer-logo-dt { width: 200px; display: block; margin-bottom: 1.5rem; }
    .social-icons.justify-center { justify-content: flex-start; width: 100%; gap: 15px; }
    .dt-brand-col .social-icons.justify-center { justify-content: center; width: 200px; }
    .dt-map-col { display: flex; flex-direction: column; gap: 20px; }
    .footer-header { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; opacity: 1; color: white; }
    .footer-header.small { font-size: 0.8rem; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; }
    .map-frame { width: 100%; height: 160px; border-radius: 12px; overflow: hidden; border: 2px solid rgba(255,255,255,0.1); position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
    .map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(100%) opacity(0.9); transition: 0.5s; }
    .map-frame:hover iframe { filter: grayscale(0%) opacity(1); }
    .dt-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 10px; }
    .info-cell { display: flex; flex-direction: column; gap: 8px; }
    .info-label { font-size: 0.7rem; font-weight: 800; color: var(--white); letter-spacing: 0.5px; margin-bottom: 2px; }
    .info-cell p, .info-cell a { font-size: 0.9rem; color: #ffffff !important; margin: 0; line-height: 1.4; text-decoration: none; display: flex; align-items: center; gap: 10px; transition: 0.2s; }
    .info-cell a:hover { transform: translateX(3px); opacity: 0.8; }
    .dt-action-col { display: flex; flex-direction: column; gap: 28px; }
    .footer-panel { margin: 0; padding: 0; }
    .footer-panel__title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 10px; color: white; }
    .footer-panel__text { font-size: 0.85rem; color: white; opacity: 0.8; margin: 0 0 15px; }
    .newsletter-pro p { font-size: 0.85rem; color: white; opacity: 0.8; margin-bottom: 15px; }
    .pro-form { display: flex; flex-direction: column; gap: 12px; }
    .pro-form input { background: #ffffff; border: 2px solid transparent; padding: 12px 15px; border-radius: 0; color: #333; font-size: 0.9rem; outline: none; transition: 0.3s; }
    .pro-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,255,255,0.1); }
    .pro-form button { background: var(--accent); color: #FFF; border: none; padding: 12px; border-radius: 0; font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; cursor: pointer; transition: 0.3s; text-transform: uppercase; box-shadow: none; }
    .pro-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.2); background: white; color:var(--accent); }
    .help-links-row { font-size: 0.85rem; color: white; opacity: 0.9; margin-bottom: 10px; }
    .btn-regret-simple { font-size: 0.7rem; text-transform: uppercase; opacity: 0.7; color: white; text-decoration: none; border-bottom: 1px dotted rgba(255,255,255,0.5); transition: 0.3s; }
    .btn-regret-simple:hover { opacity: 1; border-bottom-color: white; }
    .dt-payments-row { font-size: 1.8rem; color: white; opacity: 0.8; display: flex; gap: 15px; margin-top: 25px; }
    .dt-bottom-row { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: white; opacity: 0.8; }
    .news-msg { font-size: 0.85rem; font-weight: 600; margin-top: 10px; min-height: 20px; transition: all 0.3s ease; opacity: 0; }
    .news-msg.visible { opacity: 1; }
    .news-msg.success { color: #27ae60; }
    .news-msg.error { color: #e74c3c; }
}
/* =========================================
   BARRA DE CONFIANZA MÓVIL (Trust Bar)
   ========================================= */

.mb-trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
    gap: 10px;
    background: #f4f8f7; /* Un fondo 'mint' muy suave o gris claro */
    padding: 20px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px; /* Separación del logo */
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

/* El Ícono */
.trust-item i {
    font-size: 1.4rem;
    color: var(--primary); /* Usa tu color de marca */
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

/* El Texto */
.trust-item span {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Efecto sutil al tocar (Feedback táctil) */
.trust-item:active i {
    transform: scale(0.9);
    color: var(--text-title);
}

/* Separadores verticales sutiles (Opcional, para dar estructura) */
.trust-item:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.03);
}

/* =========================================
   8. MOBILE NAV (FINAL CLEAN)
   ========================================= */
.mobile-nav { position: fixed; bottom: 0; left: 0; width: 100%; height: 70px; background: radial-gradient(circle at 50% 18px, transparent 40px, var(--white) 41px); box-shadow: 0 -4px 12px rgba(0,0,0,0.08); display: flex !important; justify-content: space-around; align-items: center; z-index: 2000; padding-bottom: 0; transition: transform 0.3s ease-in-out; border: none; }
.mobile-nav.hidden { transform: translateY(100%); }
.nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #999; font-size: 0.7rem; font-weight: 500; text-decoration: none; width: 20%; height: 100%; position: relative; gap: 4px; transition: color 0.3s; padding-top: 0; }
.nav-item svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.nav-item.active { color: var(--primary); }
.nav-item.active::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background-color: var(--primary); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.nav-center-wrapper { position: relative; width: 20%; height: 100%; display: flex; justify-content: center; pointer-events: none; }
.nav-center-btn { position: absolute; top: -15px; width: 64px; height: 64px; background-color: var(--color-wa); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; border: none; font-size: 40px; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28); transition: transform 0.2s ease, box-shadow 0.2s ease; pointer-events: auto; z-index: 10; }
.nav-center-btn:active { animation: none; transform: scale(0.95); box-shadow: 0 0 10px rgba(37, 211, 102, 0.8); }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }
.cart-badge { position: absolute; top: -5px; right: -8px; background: var(--accent); color: white; font-size: 0.65rem; font-weight: 800; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform: scale(0); }
.cart-badge.show { transform: scale(1); }
.cart-badge.bump { transform: scale(1.4); }

/* =========================================
   9. ESTILOS PÁGINAS GENERALES
   ========================================= */
.std-page { padding: 60px 0 100px; min-height: 60vh; }
.page-header { margin-bottom: 40px; text-align: center; }
.page-content { max-width: 900px; margin: 0 auto; line-height: 1.8; }
.page-content p { margin-bottom: 20px; }
.page-content h2, .page-content h3 { color: var(--primary); margin-top: 30px; margin-bottom: 15px; }
.blog-list { max-width: 800px; margin: 0 auto; }
.blog-item { margin-bottom: 50px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 30px; }
.blog-item h2 { font-size: 1.5rem; margin-bottom: 15px; }
.blog-item h2 a { text-decoration: none; transition: 0.3s; }
.blog-item h2 a:hover { color: var(--primary); }

.blog-read-more { font-weight: 700; color: var(--primary); text-decoration: underline; font-size: 0.9rem; }
.error-page-wrap { padding: 100px 0; min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.error-icon { font-size: 5rem; color: var(--primary); opacity: 0.3; margin-bottom: 10px; }
.error-content h1 { font-size: 4rem; line-height: 1; margin: 0; color: var(--text-body); }
.error-content h2 { font-size: 1.2rem; color: #999; font-weight: 400; margin: 0; }
.error-404-wrapper { padding-top: clamp(32px, 6vw, 72px); }
.error-404-card { position: relative; overflow: hidden; isolation: isolate; text-align: center; background: radial-gradient(circle at top right, rgba(201, 162, 126, 0.18), transparent 28%), linear-gradient(180deg, #fff 0%, #f8f5f1 100%); }
.watermark-404 { position: absolute; inset: -10px 0 auto 50%; transform: translateX(-50%); font-size: clamp(5rem, 22vw, 12rem); font-weight: 900; line-height: 1; letter-spacing: -0.08em; color: rgba(159, 182, 177, 0.12); z-index: -1; user-select: none; pointer-events: none; }
.content-404 { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.error-404-eyebrow { margin: 0; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.title-oops { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -0.04em; color: var(--text-body); }
.text-404 { margin: 0; max-width: 54ch; font-size: 1rem; line-height: 1.7; color: rgba(74, 74, 74, 0.88); }
.search-404-container { width: min(100%, 620px); margin-top: 8px; }
.search-form-404 { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.input-404 { flex: 1; min-width: 0; border: 0; background: transparent; color: var(--text-body); font-size: 1rem; padding: 10px 16px; outline: none; }
.input-404::placeholder { color: rgba(74, 74, 74, 0.56); }
.btn-search-icon { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: #fff; flex: 0 0 auto; transition: transform 0.2s ease, opacity 0.2s ease; }
.btn-search-icon:hover { opacity: 0.9; transform: translateY(-1px); }
.actions-404 { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.btn-404 { display: inline-flex; align-items: center; justify-content: center; min-width: 190px; padding: 14px 22px; border-radius: 999px; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease; }
.btn-404:hover { transform: translateY(-1px); }
.btn-404.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 12px 24px rgba(159, 182, 177, 0.28); }
.btn-404.btn-outline { background: #fff; color: var(--text-body); border: 1px solid rgba(0,0,0,0.1); }
@media (max-width: 680px) { .error-404-card { padding-top: 40px !important; } .search-form-404 { border-radius: 24px; padding: 8px; } .input-404 { font-size: 0.95rem; padding: 10px 12px; } .btn-search-icon { width: 44px; height: 44px; } .actions-404 { width: 100%; } .btn-404 { width: 100%; min-width: 0; } }

/* Feedback inmediato al hacer click en Agregar */
a.ajax_add_to_cart.loading {
    opacity: 0.8;
    background-color: var(--text-body) !important; /* Se pone gris mientras piensa */
    color: white !important;
    cursor: wait !important;
    pointer-events: none; /* Evita doble click */
    transform: scale(0.95); /* Efecto de "presionado" */
}

/* Opcional: Si querés que gire un iconito de carga nativo de Woo */
a.ajax_add_to_cart.loading::after {
    display: none; /* Ocultamos el spinner feo por defecto de Woo para usar el nuestro si queremos */
}

/* ==========================================================================
   HOJA DE ESTILOS SINGLE PRODUCT - DECOPADO (VERSIÓN LIMPIA)
   ========================================================================== */

/* --- 1. LAYOUT PRINCIPAL & ESTRUCTURA --- */
.product-page {
    padding: 30px 0 60px;
}

.product-columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .product-columns {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 50% - 50% */
        gap: 50px;
        align-items: start;
    }
    /* Contenedores ancho completo en desktop */
    .rich-feature-grid, 
    .woo-tabs-wrapper {
        width: 100%;
        max-width: 100%;
    }
}

/* --- 2. BREADCRUMBS (MIGAS DE PAN) --- */
.woo-breadcrumb-top {
    margin-bottom: 28px;
}

.woocommerce-breadcrumb {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px; 
    font-weight: 600;
}
.woocommerce-breadcrumb a {
    color: #aaa;
    text-decoration: none;
    transition: 0.2s;
}
.woocommerce-breadcrumb a:hover {
    color: var(--primary);
}
.woocommerce-breadcrumb .delimiter {
    margin: 0 8px;
    opacity: 0.5;
}
.woocommerce-breadcrumb span:last-child {
    color: #444;
    cursor: default;
}

/* --- 3. GALERÍA DE IMÁGENES & ZOOM --- */
.woocommerce-product-gallery { position: relative; }

.woocommerce-product-gallery__image {
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    background: #fff;
    margin: 0;
}
.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Zoom Container (Desktop) */
#zoomContainer {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
    display: flex;
    align-items: center;
    justify-content: center;
}
#mainImage {
    transition: transform 0.1s ease-out;
    transform-origin: center center;
    will-change: transform;
    display: block;
    width: 100%;
    height: auto;
}
@media (max-width: 1023px) {
    #zoomContainer { cursor: default; }
    #mainImage { transition: transform 0.3s ease; }
}

/* Thumbnails (Miniaturas) */
.flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    list-style: none;
    overflow-x: auto;
    padding: 0;
}
.flex-control-thumbs li {
    width: 70px; height: 70px;
    flex-shrink: 0;
    cursor: pointer;
}
.flex-control-thumbs img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.6;
    transition: 0.2s;
}
.flex-control-thumbs img.flex-active {
    opacity: 1;
    border: 2px solid var(--accent);
}

/* Badges & Indicadores */
.pro-btn-overlay {
    position: absolute; top: 15px; right: 15px;
    width: 40px; height: 40px;
    background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10; cursor: pointer;
}
.pro-zoom-indicator {
    position: absolute; bottom: 15px; right: 15px;
    background: rgba(0,0,0,0.6); color: white;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
}

/* =========================================
   BADGES / ETIQUETAS (FIX DEFINITIVO)
   ========================================= */

/* Estilo Base (Forma y Posición) */
.pro-badge {
   position: absolute !important;
    top: 20px !important;  /* Un poco más separado del borde */
    left: 20px !important; /* Un poco más separado del borde */
    z-index: 99 !important;
    
    display: inline-block !important;
    
    /* CAMBIOS DE TAMAÑO: */
    padding: 8px 18px !important;  /* Más "aire" alrededor del texto */
    font-size: 0.85rem !important; /* Letra más grande (aprox 14px) */
    border-radius: 8px !important; /* Curva un poco más amplia */
    
    font-family: 'Inter', sans-serif !important;
    font-weight: 900 !important;   /* Negrita extra fuerte */
    text-transform: uppercase !important;
    letter-spacing: 1px !important; /* Letras un poco más separadas */
    line-height: 1 !important;
    
    color: white !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important; /* Sombra más marcada */
    
    /* Reset */
    width: auto !important;
    height: auto !important;
    background-image: none !important;
    border: none !important;
}

/* --- COLORES SEGÚN TIPO --- */

/* 1. Oferta Normal (-20% OFF) */
.pro-badge.badge-sale {
    background: var(--accent) !important; /* Tu color dorado/acento */
}

/* 2. Agotado */
.pro-badge.badge-sold {
    background: #555 !important;
    color: #fff !important;
}

/* 3. Nuevo */
.pro-badge.badge-new {
    background: var(--primary) !important; /* Tu color verde */
}

/* --- PERSONALIZADOS --- */

/* Fuego / Hot */
.pro-badge.badge-hot {
    background: linear-gradient(45deg, #FF512F, #DD2476) !important;
}

/* Exclusivo */
.pro-badge.badge-exclusive {
    background: #000 !important;
    color: #d4af37 !important; /* Texto dorado */
    border: 1px solid #d4af37 !important;
}

/* Último */
.pro-badge.badge-last {
   background: #e55039 !important; /* Un rojo suave, no chillón */
    color: #fff !important;
}

@media (min-width: 1024px) { .pro-zoom-indicator { display: none; } }

/* --- 5. RESUMEN DE PRODUCTO (SUMMARY BOX OPTIMIZADO) --- */
.summary-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    .summary-box { padding: 40px 50px; justify-content: center; }
}

/* Header Info (Categoría / Stock) */
.product-meta-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 15px;
    font-size: 0.75rem; color: #999;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.pro-category { color: var(--accent); letter-spacing: 1px; }
.stock-status { display: flex; align-items: center; gap: 5px; color: #27ae60; }
.stock-dot { width: 8px; height: 8px; background: #27ae60; border-radius: 50%; display: block; }

/* Título */
.product-title {
    font-size: 1.8rem; line-height: 1.2; margin-bottom: 15px;
    font-weight: 800; color: var(--text-title-summary);
    /* Divisor */
    margin: 0 0 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* PRECIO (Con Divisor abajo del bloque de pagos) */
.price-wrap {
    display: flex; align-items: baseline; gap: 12px;
    flex-wrap: wrap; line-height: 1; margin-bottom: 10px;
}
.price-wrap del, .price-wrap del .amount {
    color: #bbb !important; font-size: 0.95rem !important;
    font-weight: 400 !important; text-decoration: line-through;
}
.price-wrap .amount {
    font-size: 1.8rem; font-weight: 800;
    color: var(--primary); letter-spacing: -0.5px;
}
.price-wrap ins { text-decoration: none; background: transparent; }

/* Caja de Cuotas (Cierra el bloque de precio) */
.installments-box {
    margin-top: 10px;
    display: flex; flex-direction: column; gap: 5px;
    
    /* EL DIVISOR QUE SEPARA PRECIO DE DESCRIPCIÓN */
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.inst-main {
    font-size: 0.95rem; color: #555; font-weight: 500;
    display: flex; align-items: center; gap: 8px;
}
.inst-main i { color: var(--accent); font-size: 1.1rem; }
.view-payments-link {
    font-size: 0.8rem; color: #999; text-decoration: none;
    margin-left: 28px; transition: 0.2s; font-weight: 600;
    cursor: pointer; width: fit-content;
}
.view-payments-link:hover {
    color: var(--primary); text-decoration: underline;
}

/* DESCRIPCIÓN CORTA (Con Divisor antes del carrito) */
.product-short-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    
    /* EL DIVISOR FINAL */
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

/* --- 6. ACCIONES DE COMPRA (FORMULARIO, CANTIDAD, BOTONES) --- */
.product-page form.cart {
    display: flex !important; flex-wrap: nowrap !important; align-items: center !important;
    gap: 20px !important; margin-bottom: 30px !important; width: 100% !important;
}

/* Selector Cantidad */
.product-page .quantity {
    display: flex !important; align-items: center !important; justify-content: space-between !important;
    border: 1px solid #e0e0e0 !important; border-radius: 50px !important; background: #fff !important;
    width: 120px !important; height: 52px !important; padding: 0 5px !important;
    flex-shrink: 0 !important; box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important; margin: 0 !important;
}
.product-page .quantity input.qty {
    border: none !important; background: transparent !important; height: 100% !important;
    width: 40px !important; text-align: center !important; font-weight: 700 !important;
    font-size: 1.1rem !important; color: var(--text-body) !important; padding: 0 !important;
    -moz-appearance: textfield !important;
}
.product-page .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-btn {
    width: 35px !important; height: 100% !important; background: transparent !important;
    border: none !important; font-size: 1.3rem !important; color: #999 !important;
    cursor: pointer !important; display: flex !important; align-items: center !important; justify-content: center !important;
}
.qty-btn:hover { color: var(--primary) !important; }

/* Botón Agregar al Carrito */
body .product-page button.single_add_to_cart_button {
    position: relative !important; display: flex !important; align-items: center !important;
    justify-content: center !important; gap: 10px !important; flex-grow: 1 !important;
    width: 100% !important; min-height: 52px !important; margin: 0 !important;
    background-color: var(--primary) !important; color: #fff !important;
    border: 1px solid var(--primary) !important; border-radius: 50px !important;
    font-family: 'Inter', sans-serif !important; font-size: 0.9rem !important;
    font-weight: 800 !important; text-transform: uppercase !important; letter-spacing: 1px !important;
    transition: all 0.3s ease !important; cursor: pointer !important;
    box-shadow: 0 5px 15px rgba(159, 182, 177, 0.4) !important;
}
body .product-page button.single_add_to_cart_button:hover {
    background-color: #fff !important; color: var(--primary) !important;
    transform: translateY(-2px); box-shadow: 0 8px 20px rgba(159, 182, 177, 0.6) !important;
}
/* Estados Loading/Success */
body .product-page button.single_add_to_cart_button.loading {
    background-color: var(--primary) !important; color: transparent !important;
    cursor: wait !important; pointer-events: none !important;
}
body .product-page button.single_add_to_cart_button.loading i.fa-spinner {
    color: #fff !important; font-size: 1.2rem !important; display: block !important;
    position: absolute !important; left: 50% !important; top: 50% !important;
    transform: translate(-50%, -50%) !important;
}
body .product-page button.single_add_to_cart_button.loading::after,
body .product-page button.single_add_to_cart_button.loading::before { display: none !important; }
body .product-page button.single_add_to_cart_button.added-success {
    background-color: #27ae60 !important; border-color: #27ae60 !important;
    color: #fff !important; opacity: 1 !important; pointer-events: none;
}

/* --- 7. EXTRAS & UTILIDADES (Share, Calc, Meta) --- */
/* Share & Wishlist */
.product-extras {
    display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 15px; margin-bottom: 20px; margin-top: 5px;
}
@media (max-width: 400px) {
    .product-extras { flex-direction: column; align-items: flex-start; }
    .pe-share-row { width: 100%; justify-content: space-between; }
}
.wishlist-text-btn {
    background: transparent; border: none; cursor: pointer;
    font-size: 0.85rem; font-weight: 600; color: #666;
    display: flex; align-items: center; gap: 8px; transition: 0.3s; padding: 0;
}
.wishlist-text-btn:hover { color: var(--text-body); }
.wishlist-text-btn:hover i { transform: scale(1.1); }
.wishlist-text-btn.active span { color: var(--accent); }
.wishlist-text-btn.active i { font-weight: 900; color: #ff6b6b; }

.pe-share-row { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #999; }
.share-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-body); background: #f5f5f5; transition: all 0.3s ease;
    text-decoration: none; border: none; cursor: pointer; font-size: 0.9rem;
}
.share-icon:hover { transform: translateY(-2px); color: white; }
.share-icon.wa:hover { background: #25D366; }
.share-icon.fb:hover { background: #1877F2; }
.share-icon.pt:hover { background: #E60023; }
.share-icon.cp:hover { background: #333; }
.share-icon.ig:hover { background: #E1306C; }
.share-icon.rd:hover { background: #FF4500; }

/* Calculadora de Envíos (Minimalista) */
.shipping-calc-wrapper {
    background: #fafafa; padding: 25px; border-radius: 12px;
    margin-bottom: 30px; border: 1px solid rgba(0,0,0,0.03);
}
.sc-title {
    font-size: 0.95rem; font-weight: 700; color: var(--text-body);
    margin: 0 0 15px 0; display: flex; align-items: center; gap: 8px; text-transform: uppercase;
}
.sc-input-group { display: flex; gap: 10px; margin-bottom: 10px; }
.sc-input {
	width: auto !important;
    flex-grow: 1 !important;
    min-width: 0 !important; 
	background: #fff; border: 1px solid #ddd;
    border-radius: 8px; padding: 10px 15px; font-size: 1rem;
    color: var(--text-body); outline: none; transition: 0.3s;
}
.sc-input:focus { border-color: var(--primary); }
.sc-btn {
	width: 110px !important; 
    flex-grow: 0 !important; 
    flex-shrink: 0 !important;
    background: #333; color: #fff; border: none; padding: 0 20px;flex-grow: 1 !important;
    border-radius: 8px; font-weight: 700; font-size: 0.85rem; cursor: pointer; text-transform: uppercase;
}
.sc-btn:hover { background: var(--primary); }
.sc-result {
    margin-top: 15px; padding-top: 15px; border-top: 1px dashed #ddd;
    font-size: 0.95rem; color: #555; line-height: 1.5;
}
.sc-link-help {
    font-size: 0.75rem; color: #999; text-decoration: underline;
    display: block; margin-top: 8px;
}

/* Meta Data (SKU, Categoría) */
.product_meta {
    margin-top: 30px; padding-top: 20px; border-top: 1px solid #f0f0f0;
    font-size: 0.8rem; color: #888;
}
.product_meta > span { display: block; margin-bottom: 5px; letter-spacing: 0.5px; }
.product_meta .sku_wrapper, .product_meta .posted_in, .product_meta .tagged_as { font-weight: 400; text-transform: uppercase; }
.product_meta span span, .product_meta a {
    font-weight: 700; color: #555; text-decoration: none; margin-left: 5px;
}
.product_meta a:hover { color: var(--primary); text-decoration: underline; }

/* Trust Badges */
.trust-badge-wrap {
    display: grid !important; grid-template-columns: 1fr 1fr !important;
    gap: 15px !important; margin-top: 20px !important;
    padding-top: 20px !important; border-top: 1px solid #f0f0f0 !important;
}
.trust-badge-wrap .tb-row { margin-bottom: 0 !important; display: flex !important; align-items: center !important; gap: 10px !important; }
.tb-icon { font-size: 1.4rem !important; color: var(--primary) !important; flex-shrink: 0 !important; }
.tb-text { display: flex !important; flex-direction: column !important; }
.tb-title { font-size: 0.75rem !important; font-weight: 700 !important; line-height: 1.2 !important; color: var(--text-body) !important; }
.tb-note { font-size: 0.65rem !important; color: #999 !important; line-height: 1.2 !important; }

/* --- 8. TABS (PESTAÑAS) & FEATURES --- */
.woo-tabs-wrapper {
    margin-top: 60px; background: white; padding: 0;
    border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden; width: 100%; border: 1px solid rgba(0,0,0,0.02);
}

/* Header de Tabs (Soporta ambas clases por seguridad) */
.tab-headers, .tabs-header {
    display: flex; gap: 0; border-bottom: 1px solid #eee; background: #fafafa;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; -ms-overflow-style: none;
}
.tab-headers::-webkit-scrollbar, .tabs-header::-webkit-scrollbar { display: none; }

.tab-btn {
    padding: 20px 30px; font-weight: 600; color: #999; font-size: 0.9rem;
    cursor: pointer; transition: all 0.3s ease; border-bottom: 3px solid transparent;
    white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px; flex-shrink: 0;
    background: transparent; border: none;
}
.tab-btn:hover { color: var(--primary); background: rgba(0,0,0,0.02); }
.tab-btn.active {
    color: var(--text-body); font-weight: 800;
    border-bottom-color: var(--accent); background: white;
}
.tabs-content { padding: 40px; min-height: 200px; background: #fff; }
.panel-inner p { line-height: 1.8; color: #555; margin-bottom: 20px; font-size: 1rem; }
.tab-panel { display: none; animation: fadeIn 0.4s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .tabs-content { padding: 25px 20px; }
    .tab-btn { padding: 18px 20px; font-size: 0.85rem; }
}

/* Features Grid (Rich Content) */
.rich-feature-grid { display: grid; width: 100%; margin-top: 30px; box-sizing: border-box; }
.feature-item { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; background: #f9f9f9; padding: 15px; border-radius: 12px; }
.feature-icon { width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.feature-title { font-weight: 700; font-size: 0.85rem; color: var(--text-body); }
.feature-desc { font-size: 0.75rem; color: #666; }

@media (max-width: 1023px) {
    .rich-feature-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
}
@media (min-width: 1024px) {
    .rich-feature-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* --- 9. PRODUCTOS RELACIONADOS (SLIDER & TARJETAS) --- */
/* Estructura del Slider */
.products-wrap .grid, .p-slider-track {
    display: flex !important; flex-wrap: nowrap !important;
    overflow-x: auto; scroll-behavior: smooth;
    scrollbar-width: none; -ms-overflow-style: none;
    padding-bottom: 40px !important; /* Espacio para sombra */
}
.products-wrap .grid::-webkit-scrollbar, .p-slider-track::-webkit-scrollbar { display: none; }

/* Diseño Visual de la Tarjeta */
.prod-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    display: flex; flex-direction: column;
}

/* Imagen */
.p-img-box {
    position: relative; width: 100%;
    padding-top: 100%; /* Ratio 1:1 */
    overflow: hidden; background: #f9f9f9;
}
.p-img-box img {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.prod-card:hover .p-img-box img { transform: scale(1.05); }

/* Badges y Botones */
.badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--accent); color: white;
    padding: 4px 10px; border-radius: 4px;
    font-size: 0.7rem; font-weight: 700; z-index: 2;
}
.btn-wishlist {
    position: absolute; top: 10px; right: 10px; width: 44px; height: 44px;
    background: white; border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 2; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: 0.2s; color: #888;
}
.btn-wishlist:hover { color: #ff6b6b; transform: scale(1.1); }

/* Info */
.p-details { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.p-category { font-size: 0.7rem; color: #999; text-transform: uppercase; margin-bottom: 5px; display: block; }
.p-name { margin: 0 0 5px 0; font-size: 0.95rem; line-height: 1.3; font-weight: 600; }
.p-name a { text-decoration: none; color: var(--text-body); }
.p-price { font-size: 1rem; font-weight: 800; color: var(--text-title); display: block; margin-bottom: 10px; }

/* Botones Acción */
.btn-add, .btn-add-mobile-block {
    display: block; width: 100%; text-align: center;
    background: #f5f5f5; color: var(--text-body);
    padding: 10px; border-radius: 6px; text-decoration: none;
    font-size: 0.8rem; font-weight: 700; transition: 0.2s;
    border: none; cursor: pointer;
}
.btn-add:hover { background: var(--primary); color: white; }

/* Móvil: Swipe */
@media (max-width: 1023px) {
    .products-wrap .grid, .p-slider-track {
        gap: 15px; scroll-snap-type: x mandatory;
        padding: 10px 20px 30px 20px !important; margin: 0 -20px;
    }
    .prod-card {
        min-width: 190px; max-width: 214px; scroll-snap-align: center; flex-shrink: 0;
    }
    .desktop-only { display: none !important; }
}
/* Desktop: Flechas & Hover */
@media (min-width: 1024px) {
    .products-wrap .grid, .p-slider-track { gap: 28px; padding: 18px 0 48px; }
    .prod-card {
        flex: 0 0 360px; width: 360px; margin: 0;
    }
    .prod-card:hover {
        transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        z-index: 10; border-color: transparent;
    }
    .mobile-only { display: none !important; }
}

/* --- 10. VALORACIONES (MINIMALISTA) --- */
#reviews {
    background: transparent !important; border: none !important;
    box-shadow: none !important; padding: 0 !important; margin: 30px 0 0 0;
}
#reviews h2.woocommerce-Reviews-title { display: none; }

.commentlist li.review {
    border: none; border-bottom: 1px solid #f5f5f5;
    padding: 20px 0; display: flex; gap: 20px;
}
.commentlist .avatar { width: 45px; height: 45px; border-radius: 50%; background: #f0f0f0; }
.comment-text p.meta { font-size: 0.8rem; color: #aaa; margin-bottom: 5px; }

/* Formulario */
#review_form_wrapper { margin-top: 20px; }
#reply-title {
    font-size: 1.1rem; font-weight: 700; color: var(--text-body);
    margin-bottom: 20px; display: block;
}
.comment-form-rating label, .comment-notes { display: none !important; }

/* Estrellas Amarillas */
p.stars a { color: #e0e0e0; transition: 0.2s; }
p.stars:hover a, p.stars.selected a { color: #FFD700 !important; }

/* Inputs */
#commentform input[type="text"], #commentform input[type="email"], #commentform textarea {
    background: transparent !important; border: none !important;
    border-bottom: 1px solid #ddd !important; border-radius: 0 !important;
    box-shadow: none !important; padding: 10px 0 !important; width: 100%;
    font-size: 1rem; color: var(--text-body); transition: border-color 0.3s ease;
}
#commentform input:focus, #commentform textarea:focus { outline: none; border-bottom-color: var(--primary) !important; }
.comment-form-author label, .comment-form-email label, .comment-form-comment label {
    font-size: 0.7rem; text-transform: uppercase; font-weight: 700; color: #bbb; margin-bottom: 0; display: block;
}
#commentform textarea { height: 60px; min-height: 60px; resize: none; }

/* Botón Publicar */
#review_form #submit {
    background: var(--primary) !important; color: white !important;
    border: none !important; border-radius: 50px !important;
    padding: 12px 35px !important; font-size: 0.85rem !important;
    font-weight: 800 !important; text-transform: uppercase !important;
    letter-spacing: 1px !important; cursor: pointer; transition: all 0.3s ease;
    margin-top: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); width: auto; float: right;
}
#review_form #submit:hover { transform: translateY(-2px); box-shadow: 0 8px 15px rgba(0,0,0,0.15); opacity: 0.9; }
#review_form::after { content: ""; display: block; clear: both; }

@media (max-width: 768px) {
    #review_form #submit { width: 100%; float: none; }
}

/* --- 11. MODAL DE PAGOS --- */
.payment-modal-card {
    background: #ffffff; width: 90%; max-width: 500px;
    border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative; overflow: hidden; transform: scale(0.95);
    transition: transform 0.3s ease; animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.pm-header { padding: 30px 30px 20px 30px; text-align: center; border-bottom: 1px solid #f5f5f5; background: #fff; }
.pm-title { margin: 0; font-size: 1.4rem; font-weight: 800; color: var(--text-body); letter-spacing: -0.5px; }
.pm-subtitle { margin: 5px 0 0 0; font-size: 0.9rem; color: #999; }
.pm-body { padding: 25px 30px; display: flex; flex-direction: column; gap: 20px; max-height: 60vh; overflow-y: auto; }
.pm-card-row {
    display: flex; align-items: center; gap: 15px; padding: 15px;
    border-radius: 16px; background: #f9f9f9; border: 1px solid transparent;
    transition: all 0.3s ease; cursor: default;
}
.pm-card-row:hover { background: #fff; border-color: var(--accent); box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-2px); }
.pm-card-row.highlight { background: rgba(201, 162, 126, 0.08); border-color: rgba(201, 162, 126, 0.2); }
.pm-icon-box {
    width: 45px; height: 45px; background: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--text-body); box-shadow: 0 4px 10px rgba(0,0,0,0.05); flex-shrink: 0;
}
.pm-info { flex-grow: 1; display: flex; flex-direction: column; gap: 2px; }
.pm-name { font-weight: 700; font-size: 0.95rem; color: var(--text-body); }
.pm-desc { font-size: 0.8rem; color: #777; }
.pm-footer { padding: 15px; background: #fdfdfd; border-top: 1px solid #f5f5f5; text-align: center; font-size: 0.75rem; color: #aaa; font-weight: 500; }

/* --- 12. STICKY CART MOBILE (Cápsula Flotante) --- */
.sticky-cart-mobile {
    position: fixed; bottom: -100px; left: 0; width: 100%;
    background: #fff; padding: 10px 15px; z-index: 40 !important;
    display: flex; align-items: center; justify-content: space-between;
    transition: bottom 0.3s ease; border-top: 1px solid #f0f0f0;
}
.sticky-cart-mobile.visible {
    bottom: 100px; /* Sobre el menú inferior */
    width: 90%; left: 5%; /* Centrado */
    border-radius: 15px; border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.scm-info { display: flex; align-items: center; gap: 10px; }
.scm-info img { width: 40px; height: 40px; border-radius: 6px; object-fit: cover; }
.scm-text { display: flex; flex-direction: column; line-height: 1.2; }
.scm-price { font-weight: 800; color: var(--text-title); font-size: 0.9rem; }
.scm-title { font-size: 0.75rem; color: #888; max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scm-btn {
    background: var(--primary); color: white; border: none;
    padding: 10px 20px; border-radius: 50px; font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.5px;
}
@media (min-width: 1024px) { .sticky-cart-mobile { display: none !important; } }
/* TRUCO MODERNO (:has) */
/* "Si el body contiene un lightbox activo, ocultá el sticky cart" */
body:has(.lightbox-overlay.active) .sticky-cart-mobile {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Plan B (por si el navegador es viejo) */
.lightbox-overlay.active ~ .product-page .sticky-cart-mobile,
.lightbox-overlay.active ~ .sticky-cart-mobile {
    display: none !important;
}

/* Clase para ocultar el Sticky Cart después de comprar */
.sticky-cart-mobile.success-hidden {
    display: none !important;
}

/* =========================================
   STICKY CART: MEJORAS UX (AJAX & OVERLAY)
   ========================================= */

/* 1. CLASE PARA ESCONDERLO FUERZOSAMENTE */
.sticky-cart-mobile.hidden-by-overlay {
    bottom: -150px !important; /* Lo mandamos al sótano */
    opacity: 0;
    pointer-events: none;
}

/* 2. ESTADOS DEL BOTÓN (Loading / Success) */

/* Cargando */
.scm-btn.loading {
    background-color: #ccc;
    color: transparent !important; /* Ocultamos texto */
    pointer-events: none;
    position: relative;
}
.scm-btn.loading::after {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 14px; height: 14px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    transform: translate(-50%, -50%);
}

/* Éxito (Agregado) */
.scm-btn.success {
    background-color: #27ae60 !important; /* Verde */
    color: white !important;
}

@keyframes spin { from {transform:translate(-50%, -50%) rotate(0deg);} to {transform:translate(-50%, -50%) rotate(360deg);} }


/* =========================
   SINGLE PRODUCT — Mobile Accordion
   ========================= */

.woo-acc-wrapper{
  margin-top: 18px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}

.woo-acc-item + .woo-acc-item{
  border-top: 1px solid rgba(0,0,0,.08);
}

.woo-acc-btn{
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: #fff;
  border: none;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.woo-acc-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  opacity: .75;
  flex: 0 0 auto;
}

.woo-acc-panel{
  display: none;
  padding: 0 16px 16px;
}

.woo-acc-item.is-open .woo-acc-panel{
  display: block;
}

/* opcional: que el contenido de Woo no quede pegado */
.woo-acc-panel .woocommerce-Tabs-panel,
.woo-acc-panel .woocommerce-product-attributes{
  margin-top: 8px;
}

/* SINGLE PRODUCT: mostrar accordion en <1024 y tabs en >=1024 */
@media (max-width: 1023px){
  .woo-tabs-wrapper{ display: none !important; }
  .woo-acc-wrapper{ display: block !important; }
}

@media (min-width: 1024px){
  .woo-tabs-wrapper{ display: block !important; }
  .woo-acc-wrapper{ display: none !important; }
}





/* =========================================
   ESTILOS PÁGINA WISHLIST
   ========================================= */
.wishlist-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en móvil */
    gap: 15px;
    padding: 20px 0;
}

/* En escritorio, 4 columnas */
@media (min-width: 1024px) {
    .wishlist-grid-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Ajuste del botón en la wishlist */
.wishlist-card .btn-add {
    background: var(--primary);
    color: white;
    border-radius: 50px;
    display: flex !important; /* Forzamos flex para centrar */
}


/* =========================================
   ESTILOS GLOBALES APP (Drawer, Login, Botones)
   Movidos aquí para que funcionen en la Home
   ========================================= */

/* 1. Botones App (Cerrar Sesión, Ingresar, etc.) */
.app-btn-full {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    display: block; /* Asegura que ocupe el ancho */
    text-align: center;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    box-sizing: border-box;
}
.app-btn-full:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
}

/* 2. Inputs App */
.app-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
    box-sizing: border-box;
    color: var(--text-body);
}
.app-input:focus {
    border-color: var(--primary);
    background: #fff;
    outline: none;
}

/* 3. Toggles (Pestañas Ingresar/Crear) */
.login-toggle-btns {
    display: flex;
    background: #f0f0f0;
    padding: 4px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.l-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
}
.l-btn.active {
    background: #fff;
    color: var(--text-body);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* =========================================
   ESTILOS DRAWER CUENTA & FOOTER SANITIZADOS
   ========================================= */

/* Drawer de Cuenta */
.account-drawer {
    background: #fff !important; /* Importante para sobreescribir estilos base si existen */
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f9f9f9;
}

.drawer-title {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-title);
}

.account-drawer-content {
    height: calc(100% - 70px);
    overflow-y: auto;
    padding: 0 5px;
}

.account-profile-summary {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 10px;
}

.account-avatar-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    padding: 2px;
    background: #fff;
}

.avatar-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.account-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-body);
}

.account-role {
    font-size: 0.85rem;
    color: #999;
    font-weight: 600;
}

/* Enlaces del Drawer */
.mobile-links.no-padding {
    padding: 0;
}

.icon-primary {
    margin-right: 10px;
    color: var(--primary);
}

.icon-faded {
    margin-right: 10px;
    opacity: 0.6;
}

.logout-item {
    margin-top: 30px;
}

.btn-logout {
    background: #ff6b6b !important;
    color: white !important;
    width: 100%;
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
}

/* Ajustes generales Footer/Mobile */
.user-avatar-wrapper {
    width: 60px;           /* ANCHO FIJO */
    height: 60px;          /* ALTO FIJO */
    min-width: 60px;       /* Que no se aplaste nunca */
    border-radius: 50%;    /* Redondo */
    
    /* Lo que ya tenías: */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
    margin-right: 15px;    /* Separación con el texto */
    background: #f0f0f0;   /* Color de fondo por si no hay foto */
}

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

.user-welcome {
    font-weight: 800;
    font-size: 1.1rem;
}

.panel-link {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: underline;
}

.submenu-icon {
    transition: 0.3s;
    font-size: 0.8em;
}

.pcm-title {
    margin-bottom: 5px;
}

.pcm-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.full-width {
    width: 100%;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
}

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

.help-links-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
}

.pcm-btn {
    display: block;
    text-align: center;
    background: var(--primary);
}

.btn-wishlist:focus-visible,
.m-link:focus-visible,
.tab-btn:focus-visible,
.slider-controls button:focus-visible,
.close-btn:focus-visible,
.glass-btn-close:focus-visible,
.lightbox-close:focus-visible,
.lb-arrow:focus-visible,
.pcm-btn:focus-visible,
.woocommerce-product-gallery__image[role="button"]:focus-visible,
.help-links-list a:focus-visible {
    outline: 3px solid var(--accent-strong);
    outline-offset: 3px;
}

.map-frame-mobile {
    height: 200px;
}

.align-start {
    align-items: flex-start;
}

.text-left {
    text-align: left;
}

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

.gap-20 {
    gap: 20px;
}

.help-links-mobile {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: white;
}

.link-underline {
    text-decoration: underline;
}

.mt-10 {
    margin-top: 10px;
}

.inline-block {
    display: inline-block;
}

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

.mt-0 {
    margin-top: 0;
}

.nav-icon-wrapper {
    position: relative;
    display: inline-flex;
}

.cart-badge-pos {
    top: -2px;
    right: -5px;
}


/* =========================
   Wishlist (Header Desktop)
   ========================= */
.wishlist-wrapper { position: relative; }

.wishlist-badge{
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
}
.wishlist-badge.show{ display: inline-flex; }

.wishlist-dropdown{
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  padding: 12px;
  z-index: 9999;
  display: none;
}

.wishlist-dropdown::before{
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}


.wishlist-wrapper:hover .wishlist-dropdown,
.wishlist-wrapper:focus-within .wishlist-dropdown{
  display: block;
}

.wishlist-dd-title{
  font-weight: 900;
  font-size: .85rem;
  margin-bottom: 10px;
}

.wishlist-dd-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wishlist-dd-item a{
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.wishlist-dd-thumb{
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background: #f3f3f3;
}

.wishlist-dd-meta{ min-width: 0; }
.wishlist-dd-name{
  font-weight: 800;
  font-size: .88rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.wishlist-dd-price{ font-size: .85rem; opacity: .8; }

.wishlist-dd-empty{
  font-size: .9rem;
  opacity: .8;
  padding: 6px 0 12px;
}

.wishlist-dd-all{
  display: block;
  margin-top: 12px;
  text-align: center;
  font-weight: 900;
  font-size: .85rem;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
}
.wishlist-dd-all:hover{ background: rgba(0,0,0,.10); }

.header-icons .wishlist-wrapper .icon-link{
  color: #111;
}
.header-icons .wishlist-wrapper .icon-link svg{
  display: block;
}

/* --- ESTILOS FAVORITOS PRO --- */
.wishlist-empty-state { 
    text-align: center; 
    padding: 80px 20px; 
    max-width: 600px; 
    margin: 0 auto; 
}

/* Icono: Le damos forma de círculo y mejor color */
.wishlist-empty-state .empty-icon { 
    width: 100px;              /* Ancho del círculo */
    height: 100px;             /* Alto del círculo */
    background-color: #f3f3f3; /* Fondo gris suave */
    border-radius: 50%;        /* Lo hace redondo */
    
    display: flex;             /* Para centrar el corazón adentro */
    align-items: center;
    justify-content: center;
    
    margin: 0 auto 25px auto;  /* Centrado en la pantalla + separación abajo */
    
    font-size: 3rem;           /* Tamaño del corazón */
    color: #999999;            /* Gris medio (ahora sí se ve) */
}
.btn-cta-primary { background: #000; color: #fff; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; margin-top: 20px; }
.wishlist-header { border-bottom: 1px solid #eee; margin-bottom: 30px; padding-bottom: 15px; }
.wl-title-group h1 { margin: 0; font-size: 1.8rem; }
.wl-count { font-size: 1rem; color: #999; font-weight: 400; }
.wishlist-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; }

.wishlist-card .p-img-box{
    aspect-ratio: 1 / 1;
    padding-top: 0;
}

.wishlist-card .p-img-box a{
    display: block;
    width: 100%;
    height: 100%;
}

/* --- BOTONES DE ACCIÓN (STACK VERTICAL) --- */
.wishlist-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.wl-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sombra suave para que flote */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none; /* Para el link <a> */
}

/* Hover: Escala un poquito */
.wl-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Colores específicos al hover */
.btn-delete { color: #555; }
.btn-delete:hover { background: #ff6b6b; color: white; }

.btn-wa { color: #25D366; }
.btn-wa:hover { background: #25D366; color: white; }

.btn-share { color: #555; }
.btn-share:hover { background: #333; color: white; }

/* Botón agregar */
.btn-add-full {
    display: block; width: 100%; text-align: center;
    background: var(--primary, #000); color: white;
    padding: 12px; border-radius: 6px; margin-top: 15px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
}
.btn-add-full:hover { background: #333; color: white; }

/* --- AJUSTE MOBILE: GRILLA DE 2 COLUMNAS --- */
@media (max-width: 768px) {
    .wishlist-page-grid {
        /* Forzamos 2 columnas exactas */
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; /* Reducimos el espacio entre tarjetas */
    }

    /* Ajustes para que los botones no tapen toda la foto en pantallas chicas */
    .wishlist-actions {
        top: 8px;
        right: 8px;
        gap: 6px;
    }
    .wl-btn {
        width: 32px; /* Botones un poco más chicos */
        height: 32px;
        font-size: 0.85rem;
    }

    /* Ajuste de texto para que no se rompa */
    .wishlist-card .p-name {
        font-size: 0.9rem;
    }
    .btn-add-full {
        padding: 10px;
        font-size: 0.75rem; /* Texto del botón "Agregar" más chico */
    }
}

/* =========================================================
   PÁGINA DE CONTACTO PREMIUM (Namespace: cp-)
   ========================================================= */

/* 1. Contenedor Maestro */
.contact-page-wrapper {
    padding: 60px 0 80px 0;
    background: var(--bg); /* Usa tu variable global */
    min-height: 80vh;
}

.cp-content-layout {
    max-width: 900px;
    margin: 0 auto;
}

/* 2. Header con impacto */
.cp-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.cp-tag {
    display: inline-block;
    background: #e0f2f1; /* Verde muy suave */
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.cp-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-title);
    margin: 0 0 15px 0;
    line-height: 1;
    letter-spacing: -1px;
}

.cp-subtitle {
    font-size: 1.15rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* 3. Acciones Rápidas (WhatsApp / Email) */
.cp-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.cp-action-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none !important;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Efecto Hover Premium */
.cp-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    border-color: transparent;
}

.cp-icon-box {
    width: 60px;
    height: 60px;
    background: #f4f8f7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: 0.3s;
    flex-shrink: 0;
}

/* Colores específicos hover */
.cp-whatsapp:hover .cp-icon-box { background: #25D366; color: white; }
.cp-email:hover .cp-icon-box { background: #EA4335; color: white; }

.cp-action-info h3 { margin: 0; font-size: 1.1rem; font-weight: 800; color: var(--text-title); }
.cp-action-info p { margin: 2px 0 0 0; font-size: 0.9rem; color: #999; }

.cp-arrow {
    margin-left: auto; /* Empuja a la derecha */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f9f9f9;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: 0.3s;
}
.cp-action-card:hover .cp-arrow { background: var(--text-title); color: white; }

/* 4. Sección Ubicaciones y Mapas */
.cp-section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-title);
    margin-bottom: 30px;
}

.cp-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.cp-location-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.cp-location-card:hover { transform: translateY(-5px); }

.cp-loc-header {
    background: #f8f9fa;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
}
.cp-loc-header i { font-size: 1.4rem; color: var(--accent); }
.cp-loc-header h3 { margin: 0; font-size: 1.1rem; font-weight: 800; color: var(--text-title); }

/* Contenedor del Mapa Visual (Iframe) */
.cp-map-frame {
    width: 100%;
    height: 180px;
    background: #eee;
    border-bottom: 1px solid #eee;
    position: relative;
}
.cp-map-frame iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none; /* Evita que el usuario quede atrapado scrolleando el mapa */
}

.cp-loc-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cp-address {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 20px;
    line-height: 1.5;
}
.cp-address strong {
    font-size: 1.2rem;
    color: var(--text-title);
    display: block;
    margin-bottom: 5px;
}

.cp-hours {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: #fffcf5; /* Fondo crema muy suave */
    padding: 15px;
    border-radius: 12px;
}
.cp-hours i { color: #f1c40f; margin-top: 3px; }
.cp-hours div { display: flex; flex-direction: column; gap: 5px; }
.cp-hours span { font-size: 0.85rem; color: #666; font-weight: 700; }

/* Botón "Cómo llegar" */
.cp-btn-map {
    margin-top: auto; /* Al fondo */
    background: var(--text-title);
    color: white !important;
    text-decoration: none !important;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}
.cp-btn-map:hover {
    background: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* 5. Footer Social */
.cp-social-footer { text-align: center; border-top: 1px solid #eee; padding-top: 40px; }
.cp-social-footer p { font-weight: 700; color: #aaa; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 20px; }

.cp-social-icons { display: flex; justify-content: center; gap: 15px; }

.cp-social-icons a {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--text-body);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-decoration: none;
}

/* Colores de marca al Hover */
.cp-social-icons a.si-insta:hover { background: #E1306C; color: white; }
.cp-social-icons a.si-tiktok:hover { background: #000000; color: white; }
.cp-social-icons a.si-pinterest:hover { background: #bd081c; color: white; }
.cp-social-icons a.si-face:hover { background: #1877F2; color: white; }

.cp-social-icons a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* 6. Animaciones (Cascada) */
.animate-pop { animation: popIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards; opacity: 0; transform: scale(0.95); }
.animate-delay-1 { animation: slideUpFade 0.6s ease forwards; opacity: 0; animation-delay: 0.1s; }
.animate-delay-2 { animation: slideUpFade 0.6s ease forwards; opacity: 0; animation-delay: 0.2s; }
.animate-delay-3 { animation: slideUpFade 0.6s ease forwards; opacity: 0; animation-delay: 0.3s; }
.animate-delay-4 { animation: slideUpFade 0.6s ease forwards; opacity: 0; animation-delay: 0.4s; }
.animate-delay-5 { animation: slideUpFade 0.6s ease forwards; opacity: 0; animation-delay: 0.6s; }

@keyframes popIn { to { opacity: 1; transform: scale(1); } }
@keyframes slideUpFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }


/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .cp-header { margin-bottom: 30px; }
    .cp-title { font-size: 2.2rem; }
    .cp-subtitle { font-size: 1rem; }
    
    /* Botones de acción apilados para mayor zona táctil */
    .cp-actions-row { grid-template-columns: 1fr; gap: 15px; margin-bottom: 40px; }
    
    /* Ubicaciones apiladas */
    .cp-locations-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .cp-location-card { border-radius: 20px; }
    .cp-map-frame { height: 160px; } /* Mapa un poco más chico en alto para celular */
    .cp-loc-body { padding: 20px; }
}

/* =========================
   GENERAL PAGE (page.php)
   (excluye My Account)
   ========================= */

body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper{
  padding: clamp(24px, 4vw, 56px) 0;
}

body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__container{
  width: 100%;
}

/* Caja principal */
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__box{
  background: var(--paper, #fff);
  border: 1px solid var(--line, rgba(0,0,0,.08));
  border-radius: var(--radius-lg, 18px);
  padding: clamp(18px, 3vw, 32px);
  box-shadow: var(--shadow-1, 0 10px 30px rgba(0,0,0,.06));
}

/* Header */
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__header{
  text-align: center;
  margin-bottom: 18px;
}

body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__title{
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__divider{
  width: 72px;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: currentColor;
  opacity: .18;
}

/* Contenido: en vez de > * (que rompe layouts complejos), apuntamos a texto */
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content{
  font-size: 16px;
  line-height: 1.65;
}

body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content :is(p,h1,h2,h3,h4,h5,h6,ul,ol,blockquote,pre){
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

/* Espaciado entre bloques */
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content > * + *{
  margin-top: 14px;
}

/* Listas */
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content ul,
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content ol{
  padding-left: 1.2em;
}

/* Media */
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content img,
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content video{
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md, 14px);
}

body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content iframe{
  max-width: 100%;
}

/* Blockquote */
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content blockquote{
  margin: 18px auto;
  padding: 14px 16px;
  border-left: 3px solid var(--line, rgba(0,0,0,.14));
  background: rgba(0,0,0,.03);
  border-radius: var(--radius-md, 14px);
}

/* Tablas */
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content table{
  width: 100%;
  border-collapse: collapse;
}

body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content th,
body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__content td{
  border: 1px solid var(--line, rgba(0,0,0,.08));
  padding: 10px 12px;
  text-align: left;
}

/* Mobile */
@media (max-width: 680px){
  body:not(.woocommerce-account):not(.woocommerce-page) .general-page-wrapper__box{
    padding: 18px;
  }
}


/* =========================
   SHOP ARCHIVE (archive-product) — v3 final
   ========================= */

/* Ajuste de sticky por marquesina */
:root{
  --decopado-sticky-offset: 0px;   /* desktop */
  --decopado-sidebar-offset: 86px; /* sidebar sticky (deja lugar toolbar) */
}

/* En mobile: bajá el sticky por la marquesina */
@media (max-width: 860px){
  :root{
    --decopado-sticky-offset: 44px; /* ajustá este número al alto real de tu marquesina */
  }
}

/* Header */
.shop-archive__header{
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding-bottom: 18px;
}

.shop-archive__kicker{
  font-size: .8rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-archive__title{
  margin: 6px 0 0;
}

.shop-archive__desc{
  margin-top: 8px;
  opacity: .9;
}

/* =========================
   Toolbar sticky (DT + MB)
   ========================= */

.shop-archive__toolbar{
  position: sticky;
  top: var(--decopado-sticky-offset);
  z-index: 10;

  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0,0,0,.07);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);

  padding: 14px 16px;
  margin: 18px 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 861px){
  .shop-archive__toolbar--mobile-only{
    display: none;
  }
}

.shop-archive__toolbar-left{
  min-width: 0;
}

.shop-archive__toolbar-left .woocommerce-result-count{
  margin: 0;
  font-weight: 800;
  font-size: .92rem;
  opacity: .85;
}

/* Right side */
.shop-archive__toolbar-right{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Botón filtros (mobile) */
.shop-archive__filters-btn{
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 900;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

/* Ordenar (Woo ordering) */
.shop-archive__ordering{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.shop-archive .woocommerce-ordering{
  margin: 0 !important;
  position: relative;
  min-width: 260px;
}

.shop-archive .woocommerce-ordering select{
  appearance: none;
  -webkit-appearance: none;

  width: 100%;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;

  border-radius: 999px;
  padding: 11px 42px 11px 16px;

  font-weight: 900;
  font-size: .92rem;
  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.shop-archive .woocommerce-ordering::after{
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: .45;
  font-size: .9rem;
}

/* Mobile: barra y ordenamiento */
@media (max-width: 860px){
  .shop-archive__toolbar{
    gap: 10px;
  }

  .shop-archive__toolbar-left{
    flex: 1;
  }

  /* Ordenamiento mobile va debajo del toolbar (tu bloque mobile-only) */
  .shop-archive__main > .shop-archive__ordering{
    margin: 10px 0 14px;
    justify-content: flex-start;
  }

  .shop-archive__main > .shop-archive__ordering .woocommerce-ordering{
    width: 100%;
    min-width: 0;
  }

  .shop-archive__main > .shop-archive__ordering .woocommerce-ordering select{
    width: 100%;
  }
}

/* =========================
   Chips
   ========================= */

.shop-archive__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.shop-archive__chip{
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .8rem;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shop-archive__chip .x{
  opacity: .6;
  font-weight: 900;
}

.shop-archive__chip--clear{
  border-color: rgba(0,0,0,.18);
  opacity: .9;
}

/* =========================
   Layout + grid
   ========================= */

.shop-archive__layout{
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.shop-archive__sidebar{
  position: sticky;
  top: var(--decopado-sidebar-offset);
}

.shop-archive__main{
  min-width: 0;
}

/* Grid: cards grandes y fluidas */
.shop-archive__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

/* Card: evitar restricciones globales */
.shop-archive__card.prod-card{
  width: 100%;
  max-width: none;
}

/* Acción: precio arriba, botón abajo */
.shop-archive__card .p-action-row{
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

/* Precio */
.shop-archive__price{
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-title);
}

/* Botones full width */
.shop-archive__card .btn-add,
.shop-archive__card .btn-add-mobile-block{
  width: 100%;
  display: block;
  text-align: center;
}

/* Paginación */
.shop-archive__pagination{
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

/* Empty */
.shop-archive__empty{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(250,250,250,.94) 100%);
  box-shadow: 0 18px 38px rgba(0,0,0,.04);
  text-align: center;
}

.shop-archive__empty-inner{
  max-width: 640px;
  margin: 0 auto;
}

.shop-archive__empty-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(159,182,177,.12);
  color: var(--text-title);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shop-archive__empty h3{
  margin: 0;
  font-size: clamp(1.2rem, 1rem + .7vw, 1.7rem);
  color: var(--text-title-summary);
}

.shop-archive__empty p{
  margin: 10px auto 0;
  max-width: 52ch;
  color: var(--text-body);
  opacity: .88;
  line-height: 1.55;
}

.shop-archive__empty-actions{
  margin-top: 18px;
}

.shop-archive__empty-btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text-title);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

/* =========================
   Filters box (desktop)
   ========================= */

.shop-filters{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.shop-filters__head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.shop-filters__title{
  font-weight: 900;
}

.shop-filters__clear{
  font-weight: 900;
  opacity: .75;
  text-decoration: none;
  color: inherit;
}

.shop-filters__block{ margin-top: 14px; }
.shop-filters__label{ font-weight: 900; font-size: .85rem; margin-bottom: 8px; display:block; }

.shop-filters__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.shop-filters__input,
.shop-filters__select{
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

.shop-filters__check{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  margin-top: 10px;
}

.shop-filters__links{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top: 8px;
}

.shop-filters__link{
  text-decoration:none;
  color:inherit;
  font-weight: 800;
  opacity:.9;
}

.shop-filters__apply{
  margin-top: 16px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 900;
  color: #fff;
  background: var(--text-title);
}

/* =========================
   Drawer mobile (SHOP FILTERS) — alineado a tus otros drawers
   ========================= */

.shop-filters-drawer{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.shop-filters-drawer.is-open{ display:block; }

/* Overlay tipo tus drawers (blur + claro) */
.shop-filters-drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Panel */
.shop-filters-drawer__panel{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(440px, 92vw);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid rgba(0,0,0,.08);
  box-shadow: -18px 0 60px rgba(0,0,0,.14);
  display: flex;
  flex-direction: column;

  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.shop-filters-drawer.is-open .shop-filters-drawer__panel{
  transform: translateX(0);
}

/* Head estilo “drawer header” */
.shop-filters-drawer__head{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.shop-filters-drawer__title{
  font-weight: 900;
  letter-spacing: -.02em;
}

/* Botón cerrar tipo tus otros drawers */
.shop-filters-drawer__close{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
}

.shop-filters-drawer__close:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

/* Body */
.shop-filters-drawer__body{
  padding: 16px;
  overflow: auto;
  flex: 1;
}

/* Acciones abajo */
.shop-filters-drawer__actions{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px 16px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.75);
}

/* Botón “Limpiar” coherente */
.shop-filters__clear-btn{
  flex: 1;
  text-align:center;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 900;
  text-decoration:none;
  color: inherit;
  background: rgba(255,255,255,.9);
}

/* (opcional) si tenés botón primario al lado, queda parejito */
.shop-filters-drawer__actions .btn,
.shop-filters-drawer__actions button[type="submit"]{
  flex: 1;
  border-radius: 999px;
  font-weight: 900;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1200px){
  .shop-archive__grid{
    grid-template-columns: repeat(2, minmax(320px, 1fr));
  }
}

@media (max-width: 860px){
  .shop-archive__layout{
    grid-template-columns: 1fr;
  }

  .shop-archive__sidebar{
    display:none;
  }

  .shop-archive__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 520px){
  .shop-archive__grid{
    grid-template-columns: 1fr;
  }
}


/* =========================
   Archive extras: subcats + filter count + empty suggest
   ========================= */

/* Badge contador de filtros */
.shop-archive__filters-count{
  margin-left: 8px;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .78rem;
  color: #fff;
  background: var(--accent);
  line-height: 1;
}

/* Subcategorías */
.shop-archive__subcats{
  margin: 8px 0 18px;
}

.shop-archive__subcats-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.shop-archive__subcats-title{
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  opacity: .9;
}

.shop-archive__subcats-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

/* Card de subcategoría */
.shop-subcat-card{
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}

.shop-subcat-card__img{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(0,0,0,.03);
}

.shop-subcat-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.shop-subcat-card__meta{
  min-width: 0;
}

.shop-subcat-card__name{
  font-weight: 900;
  line-height: 1.15;
}

.shop-subcat-card__count{
  margin-top: 4px;
  font-size: .82rem;
  opacity: .72;
  font-weight: 700;
}

/* Empty suggest */
.shop-archive__empty-suggest{
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
  text-align: left;
}

.shop-archive__empty-suggest-title{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: .95rem;
  opacity: .9;
}

.shop-archive__subcats-grid--empty{
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
}

/* Responsive subcats */
@media (max-width: 1200px){
  .shop-archive__subcats-grid{
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 860px){
  .shop-archive__subcats-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-subcat-card{
    padding: 10px;
  }
  .shop-subcat-card__img{
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 520px){
  .shop-archive__subcats-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================================
   20. INDUSTRIAL SYSTEM PASS
   Rectifica radios, sombras y botones para
   completar la portacion visual.
   ========================================= */
.promo-card-mobile,
.toast-card,
.ajax-results,
.cat-item,
.bento-item,
.look-img,
.mini-card,
.prod-card,
.review-card,
.shop-archive__card.prod-card,
.shop-subcat-card {
  border-radius: var(--radius-card) !important;
  box-shadow: var(--shadow);
}

.mini-card:hover,
.mini-card.highlighted,
.prod-card:hover,
.bento-item:hover,
.shop-archive__card.prod-card:hover {
  box-shadow: 0 22px 40px -26px rgba(0,0,0,.42) !important;
}

.btn-cta,
.checkout-btn,
.pcm-btn,
.mini-btn,
.footer-mobile .pro-form button,
.pro-form button,
.btn-404,
.btn-cta-primary,
.app-btn-full,
.btn-add-full,
.cp-btn-map,
a.btn-add,
a.btn-add-mobile-block {
  border-radius: var(--radius-btn) !important;
  box-shadow: 0 16px 28px -20px rgba(0,0,0,.42) !important;
}

.checkout-btn,
.pcm-btn,
.btn-search-icon,
.btn-404.btn-primary,
.btn-cta-primary,
.app-btn-full,
.btn-add-full,
.cp-btn-map {
  background: var(--primary) !important;
  color: #fff !important;
}

.mini-btn,
.footer-mobile .pro-form button,
.pro-form button {
  background: var(--accent) !important;
  color: var(--primary-ink) !important;
}

.btn-cta:hover,
.checkout-btn:hover,
.pcm-btn:hover,
.mini-btn:hover,
.footer-mobile .pro-form button:hover,
.pro-form button:hover,
.btn-404:hover,
.btn-cta-primary:hover,
.app-btn-full:hover,
.btn-add-full:hover,
.cp-btn-map:hover,
a.btn-add:hover,
a.btn-add-mobile-block:hover {
  box-shadow: 0 18px 30px -18px rgba(0,0,0,.5) !important;
}

.prod-card,
.mini-card,
.review-card,
.promo-card-mobile,
.shop-subcat-card {
  border: 1px solid rgba(0,0,0,.08);
}

.btn-add-mini,
.slider-controls button {
  border-radius: var(--radius-btn) !important;
}

.slider-controls button {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.slider-controls button:hover {
  background: var(--primary) !important;
  color: var(--accent) !important;
  box-shadow: 0 16px 28px -20px rgba(0,0,0,.46) !important;
}

.view-all {
  border-bottom-width: 3px;
}

/* =========================================
   21. HOME PRODUCTS & REVIEWS POLISH
   Cierra la portada en una direccion
   mas tecnica y consistente.
   ========================================= */
.products-wrap {
  padding-top: calc(var(--section-gap) + 10px);
  padding-bottom: calc(var(--section-gap) + 4px);
}

.products-wrap .section-header .section-title {
  max-width: 10ch;
}

.section-header-flex {
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 2rem;
}

.header-right-group {
  gap: 18px;
}

.p-slider-container {
  overflow: hidden;
  padding-bottom: 6px;
}

.p-slider-track {
  align-items: stretch;
}

.prod-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  background: #fff;
}

.p-img-box {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f6f3eb 0%, #eeeadf 100%);
}

.badge {
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 0;
  color: var(--primary-ink);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 26px -20px rgba(0,0,0,.4);
}

.btn-wishlist {
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 0 !important;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.96);
  color: rgba(17,17,17,.42);
  box-shadow: 0 16px 24px -20px rgba(0,0,0,.42);
}

.btn-wishlist:hover {
  color: var(--accent);
  background: var(--primary);
  box-shadow: 0 18px 28px -18px rgba(0,0,0,.45);
}

.p-details {
  padding: 20px 20px 18px;
  gap: 18px;
}

.p-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-category {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  color: rgba(17,17,17,.48);
}

.p-name {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-title);
}

.p-name a {
  color: inherit;
}

.p-action-row {
  display: block;
  margin-top: auto;
}

.p-price-wrap {
  margin-bottom: 10px;
}

.p-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1.34rem;
  font-weight: 900;
  color: var(--text-title);
}

.p-price del,
.p-price ins {
  text-decoration: none;
}

a.btn-add,
a.btn-add-mobile-block {
  min-height: 46px;
  padding: 0 18px !important;
  border-radius: 0 !important;
  font-size: 0.74rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
}

a.btn-add {
  background: var(--accent) !important;
  color: var(--primary-ink) !important;
  border-color: transparent !important;
}

a.btn-add:hover,
a.btn-add-mobile-block:hover {
  background: var(--primary) !important;
  color: var(--accent) !important;
}

.slider-controls {
  gap: 12px;
}

.slider-controls button {
  width: 46px;
  height: 46px;
  border-width: 1px !important;
  background: #fff !important;
}

.view-all {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 2px 0 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-title);
}

.reviews-section {
  padding: calc(var(--section-gap) + 12px) 0 calc(var(--section-gap) - 4px);
}

.reviews-section .section-header .section-title {
  max-width: 11ch;
}

.reviews-grid {
  gap: 18px;
  margin-top: 0;
  padding: 8px 0 8px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  padding: 24px 24px 22px;
  background: linear-gradient(180deg, #fff 0%, #f6f3eb 100%);
  border: 1px solid rgba(0,0,0,.08);
}

.review-card::before {
  content: "";
  width: 34px;
  height: 4px;
  background: var(--accent);
  box-shadow: 0 12px 24px -16px rgba(0,0,0,.4);
}

.review-kicker {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17,17,17,.52);
}

.stars {
  font-size: 1rem;
  letter-spacing: 3px;
  margin: 0;
}

.review-text {
  margin: 0;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-body);
}

.review-author {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
  width: 100%;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-title);
}

@media (max-width: 1023px) {
  .products-wrap {
    padding-top: calc(var(--section-gap) - 2px);
    padding-bottom: 30px;
  }

  .section-header-flex {
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .prod-card {
    min-width: 214px;
    max-width: 214px;
  }

  .p-details {
    padding: 18px 16px 16px;
    gap: 14px;
  }

  .p-name {
    font-size: 0.95rem;
  }

  .p-price {
    font-size: 1.18rem;
  }

  .reviews-section {
    padding: calc(var(--section-gap) - 2px) 0 24px;
  }

  .review-card {
    flex: 0 0 88%;
    padding: 20px 18px 18px;
  }
}

@media (min-width: 1024px) {
  .p-slider-track {
    gap: 28px !important;
    padding: 10px 0 18px !important;
  }

  .prod-card {
    flex: 0 0 380px !important;
    width: 380px !important;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 4px 0 6px;
  }
}
