/* ==========================================================================
   KICK HOUSE S.A.S. - SISTEMA DE DISEÑO Y PALETA DE COLORES OFICIAL
   ========================================================================== */

/* --- Variables de Diseño (Basadas en el Logo Oficial de KICK HOUSE) --- */
:root {
    /* Paleta de Colores KICK HOUSE (Dark Mode - Por Defecto) */
    --bg-primary: #070707;
    --bg-secondary: #0F0F0F;
    --bg-card: rgba(22, 22, 22, 0.85);
    --bg-card-hover: rgba(32, 32, 32, 0.95);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(229, 169, 44, 0.5);

    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #707070;

    /* Color Dorado / Oro Oficial del Logo */
    --accent-primary: #E5A92C;
    --accent-primary-hover: #F5BA39;
    --accent-secondary: #D49015;
    --accent-gradient: linear-gradient(135deg, #E5A92C 0%, #F5C542 50%, #D49015 100%);
    --accent-gold-glow: rgba(229, 169, 44, 0.35);

    --status-success: #10B981;
    --status-danger: #EF4444;
    --whatsapp-color: #25D366;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 8px 10px -6px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(229, 169, 44, 0.3);

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

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Tema Claro (Light Mode Adaptado a KICK HOUSE) */
[data-theme="light"] {
    --bg-primary: #F4F4F6;
    --bg-secondary: #FFFFFF;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: #EFEFEF;
    --border-color: rgba(0, 0, 0, 0.1);
    --border-highlight: rgba(229, 169, 44, 0.6);

    --text-primary: #0A0A0A;
    --text-secondary: #4A4A4A;
    --text-muted: #888888;

    --accent-primary: #C58B1B;
    --accent-primary-hover: #A8730F;
    --shadow-glow: 0 0 20px rgba(197, 139, 27, 0.2);
}

/* Reset Global */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

button, input, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Componentes de Utilidad & Tipografía --- */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-success { color: var(--status-success); }
.text-highlight { color: var(--accent-primary); font-weight: 700; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Botones con los colores oficiales */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--accent-gradient);
    color: #070707;
    box-shadow: 0 4px 15px rgba(229, 169, 44, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 169, 44, 0.55);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

.btn-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #070707;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform var(--transition-bounce);
}

.btn-circle:hover {
    transform: scale(1.15) rotate(90deg);
}

/* Floating WhatsApp Button (Costado Derecho - Solo Ícono) */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    left: auto;
    z-index: 150;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all var(--transition-normal);
    animation: pulseWhatsApp 2.5s infinite;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 2.2rem;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.75);
    color: #FFFFFF;
}

@keyframes pulseWhatsApp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Layout Principal --- */

/* Barra de Anuncio */
.announcement-bar {
    background: var(--accent-gradient);
    color: #070707;
    text-align: center;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.code-badge {
    background: rgba(0, 0, 0, 0.25);
    color: #FFF;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 7, 7, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-normal);
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.92);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

/* Logo Oficial KICK HOUSE S.A.S. - Máximo Impacto & Resplandor */
.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(229, 169, 44, 0.12);
    border: 1.5px solid var(--accent-primary);
    box-shadow: 0 0 22px rgba(229, 169, 44, 0.4), inset 0 0 12px rgba(229, 169, 44, 0.2);
    transition: all var(--transition-normal);
}

.logo:hover {
    background: rgba(229, 169, 44, 0.22);
    border-color: #F5BA39;
    box-shadow: 0 0 38px rgba(229, 169, 44, 0.75), inset 0 0 20px rgba(229, 169, 44, 0.35);
    transform: translateY(-2px) scale(1.04);
}

.brand-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 14px rgba(229, 169, 44, 0.85));
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo-img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1)) drop-shadow(0 0 22px rgba(229, 169, 44, 1));
}

[data-theme="light"] .logo {
    background: rgba(229, 169, 44, 0.15);
    border-color: var(--accent-primary);
}

/* Menú de Navegación */
.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
}

/* Acciones del Header */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.icon-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-primary);
    color: #070707;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn-trigger {
    width: auto;
    padding: 0 1rem;
    gap: 0.5rem;
}

.cart-total-text {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.theme-toggle .light-icon { display: none; }
.theme-toggle .dark-icon { display: block; }
[data-theme="light"] .theme-toggle .light-icon { display: block; }
[data-theme="light"] .theme-toggle .dark-icon { display: none; }

/* --- Hero Section KICK HOUSE --- */
.hero {
    padding: 4.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(229, 169, 44, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* --- Hero Stats & Trust Badges Mejorados --- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0.3rem;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-color);
}

.stat-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(229, 169, 44, 0.15);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--accent-gradient);
    filter: blur(90px);
    opacity: 0.25;
    border-radius: 50%;
}

.hero-shoe-wrapper {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.hero-shoe-img {
    width: 100%;
    max-width: 440px;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.7));
    animation: floatSneaker 4s ease-in-out infinite;
}

@keyframes floatSneaker {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

.floating-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-primary);
    color: #070707;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
}

.floating-price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    background: rgba(7, 7, 7, 0.9);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
}

.price-info .model-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.price-info .model-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.price-info small {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-left: 0.3rem;
}

/* --- Section Title & Search --- */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 2rem;
}

.section-header.text-center {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
}

.catalog-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.search-input {
    width: 100%;
    padding: 0.85rem 2.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.search-input:focus {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.clear-search {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- Barra de Filtros --- */
.catalog-section {
    padding: 5rem 0;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    flex-wrap: nowrap;
    overflow-x: auto;
}

.category-pills {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.filter-pill {
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.filter-pill:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-highlight);
}

.filter-pill.active {
    background: var(--accent-gradient);
    color: #070707;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(229, 169, 44, 0.45);
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.select-input {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.select-input:focus {
    border-color: var(--accent-primary);
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    position: relative;
    height: 250px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform var(--transition-normal);
}

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

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tag-new { background: var(--accent-primary); color: #070707; }
.tag-sale { background: #E53935; color: white; }

.fav-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(7, 7, 7, 0.7);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.fav-btn.active, .fav-btn:hover {
    background: var(--status-danger);
    color: white;
}

.quick-view-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 0.5rem 1rem;
    background: rgba(7, 7, 7, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    transition: bottom var(--transition-normal);
}

.product-card:hover .quick-view-overlay {
    bottom: 0;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 0.2rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-price-wrapper {
    display: flex;
    flex-direction: column;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.old-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
}

.no-results-icon {
    font-size: 3.5rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* --- Section Beneficios con Tarjetas de Imagen --- */
.benefits-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-y: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 30px rgba(229, 169, 44, 0.25);
}

.benefit-img-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(229, 169, 44, 0.5);
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
}

.benefit-card:hover .benefit-img-wrapper {
    transform: scale(1.12) rotate(4deg);
    box-shadow: 0 0 30px rgba(229, 169, 44, 0.8);
}

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

.benefit-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.4rem;
    background: rgba(229, 169, 44, 0.08);
    color: var(--accent-primary);
    border-radius: 50%;
    border: 1.5px solid var(--accent-primary);
    box-shadow: 0 0 22px rgba(229, 169, 44, 0.35), inset 0 0 10px rgba(229, 169, 44, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: all var(--transition-bounce);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.12);
    background: rgba(229, 169, 44, 0.18);
    box-shadow: 0 0 32px rgba(229, 169, 44, 0.65), inset 0 0 15px rgba(229, 169, 44, 0.25);
    border-color: #F5BA39;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Testimonios --- */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rating-stars {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #070707;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.verified-badge {
    font-size: 0.75rem;
    color: var(--status-success);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

/* --- Newsletter --- */
.newsletter-section {
    padding: 3rem 0 6rem;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(7, 7, 7, 0.98) 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-glow);
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin: 0.8rem 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input-wrapper {
    position: relative;
}

.form-input-wrapper i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.form-input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

.form-input-wrapper input:focus {
    border-color: var(--accent-primary);
}

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr 1.2fr 1.4fr;
    gap: 2.5rem;
    padding-bottom: 4rem;
}

.footer-desc {
    color: var(--text-secondary);
    margin: 1.2rem 0;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent-primary);
    color: #070707;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.3rem;
    white-space: nowrap;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 0.7rem;
    white-space: nowrap;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.pay-info-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.7rem;
}

.footer-col ul a:hover {
    color: var(--accent-primary);
}

.payment-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pay-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- SIDE DRAWER: CARRITO DE COMPRAS --- */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.close-btn {
    background: transparent;
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color var(--transition-fast);
}

.close-btn:hover {
    color: var(--accent-primary);
}

.cart-body {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cart-empty {
    text-align: center;
    margin: auto 0;
    color: var(--text-muted);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    position: relative;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.cart-item-size {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: 800;
    color: var(--accent-primary);
    font-size: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.qty-btn:hover {
    background: var(--accent-primary);
    color: #070707;
}

.qty-val {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0 0.4rem;
}

.remove-item-btn {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.remove-item-btn:hover {
    color: var(--status-danger);
}

/* Cart Footer */
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.coupon-section {
    margin-bottom: 1.2rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.input-group input {
    flex-grow: 1;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.total-row {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    padding-top: 0.6rem;
    border-top: 1px dashed var(--border-color);
}

/* --- MODAL DE PRODUCTO / CHECKOUT --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    z-index: 301;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 10;
}

/* Modal Body Layout */
.modal-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
}

.modal-img-wrapper {
    height: 320px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-product-details h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modal-price-tag {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.size-selector-label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    display: block;
}

.sizes-grid {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.size-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 700;
    transition: all var(--transition-fast);
}

.size-btn:hover {
    border-color: var(--accent-primary);
}

.size-btn.active {
    background: var(--accent-gradient);
    color: #070707;
    border-color: transparent;
}

/* Modal Checkout */
.checkout-modal-content {
    padding: 2.5rem;
}

.checkout-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.checkout-form {
    margin-top: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

.checkout-summary-box {
    background: var(--bg-card);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
}

.chk-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.checkout-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    color: var(--status-success);
    margin-bottom: 1rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 400;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.toast {
    background: var(--bg-secondary);
    border: 1px solid var(--accent-primary);
    color: var(--text-primary);
    padding: 0.9rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: slideInRight 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-item:not(:last-child)::after { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .newsletter-card { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-title { font-size: 2.8rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .catalog-search-wrapper { max-width: 100%; }
    .modal-product-layout { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .whatsapp-float { bottom: 1.5rem; right: 1.5rem; left: auto; width: 52px; height: 52px; }
    .whatsapp-float i { font-size: 1.8rem; }
    .page-hero-content { flex-direction: column; gap: 1.5rem; }
    .quick-cats-grid { grid-template-columns: 1fr 1fr; }
    .contacto-canales-grid { grid-template-columns: 1fr; }
    .pagos-grid { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────
   PAGE HERO — Banner de cada landing
───────────────────────────────────────────── */
.page-hero {
    padding: 5rem 0 4rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(229,169,44,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.page-hero-text {
    flex: 1;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
}

.page-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.mini-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 110px;
    backdrop-filter: blur(10px);
}

.mini-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-primary);
}

.mini-stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

.mini-stat-fire .mini-stat-num {
    color: #ff5e3a;
}

/* Catálogo Hero */
.catalog-hero {
    background: linear-gradient(135deg, var(--bg-secondary) 60%, rgba(229,169,44,0.05) 100%);
}

.catalog-search-bar {
    margin-bottom: 1.5rem;
}

.catalog-search-bar .catalog-search-wrapper {
    max-width: 100%;
}

/* ─────────────────────────────────────────────
   INICIO — Categorías Rápidas
───────────────────────────────────────────── */
.quick-categories-section {
    padding: 4rem 0;
}

.quick-cats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quick-cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-primary);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.quick-cat-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(229,169,44,0.2);
}

.quick-cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(229,169,44,0.1);
    border: 1.5px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    box-shadow: 0 0 16px rgba(229,169,44,0.15);
}

.quick-cat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
}

.quick-cat-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.quick-cat-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.quick-cat-sale {
    border-color: rgba(255,94,58,0.3);
}

.quick-cat-sale:hover {
    border-color: #ff5e3a;
    box-shadow: 0 16px 40px rgba(255,94,58,0.15);
}

.quick-cat-sale .quick-cat-icon {
    background: rgba(255,94,58,0.1);
    border-color: #ff5e3a;
    color: #ff5e3a;
    box-shadow: 0 0 16px rgba(255,94,58,0.15);
}

.quick-cat-sale .quick-cat-cta {
    color: #ff5e3a;
}

/* ─────────────────────────────────────────────
   INICIO — CTA Final
───────────────────────────────────────────── */
.home-cta-section {
    padding: 4rem 0;
}

.home-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.home-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(229,169,44,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.home-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.home-cta-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.home-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-cta-visual {
    width: 220px;
    height: 220px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

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

/* ─────────────────────────────────────────────
   OFERTAS — Estilos Específicos
───────────────────────────────────────────── */
.ofertas-hero {
    background: linear-gradient(135deg, var(--bg-secondary) 55%, rgba(255,94,58,0.05) 100%);
}

.ofertas-subtitle {
    color: #ff5e3a !important;
}

.oferta-countdown {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,94,58,0.1);
    border: 1px solid rgba(255,94,58,0.3);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: #ff7a5c;
    font-weight: 600;
}

.coupon-highlight {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.code-badge-lg {
    background: var(--accent-gradient);
    color: #070707;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.9rem;
}

.ofertas-cta-bottom {
    text-align: center;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}

.ofertas-cta-bottom p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

/* ─────────────────────────────────────────────
   CONTACTO — Canales de Atención
───────────────────────────────────────────── */
.contacto-hero {
    background: linear-gradient(135deg, var(--bg-secondary) 55%, rgba(37,211,102,0.05) 100%);
}

.contacto-canales-section {
    padding: 4rem 0;
}

.contacto-canales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.canal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.canal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.canal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.whatsapp-icon { background: rgba(37,211,102,0.1); border: 1.5px solid #25D366; color: #25D366; }
.instagram-icon { background: rgba(225,48,108,0.1); border: 1.5px solid #E1306C; color: #E1306C; }
.truck-icon { background: rgba(229,169,44,0.1); border: 1.5px solid var(--accent-primary); color: var(--accent-primary); }

.canal-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.canal-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

/* ─────────────────────────────────────────────
   CONTACTO — Métodos de Pago
───────────────────────────────────────────── */
.pagos-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pagos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pago-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.pago-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.pago-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(229,169,44,0.1);
    border: 1.5px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-primary);
    box-shadow: 0 0 14px rgba(229,169,44,0.12);
    margin-bottom: 0.4rem;
}

.pago-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
}

.pago-card p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pagos-nota {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    background: rgba(229,169,44,0.06);
    border: 1px solid rgba(229,169,44,0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.pagos-nota i {
    color: var(--accent-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE MULTI-PÁGINA
───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .quick-cats-grid { grid-template-columns: repeat(2, 1fr); }
    .pagos-grid { grid-template-columns: repeat(2, 1fr); }
    .home-cta-card { grid-template-columns: 1fr; }
    .home-cta-visual { width: 100%; height: 220px; }
}

@media (max-width: 768px) {
    .page-hero-title { font-size: 2.2rem; }
    .page-hero-content { flex-direction: column; }
    .page-hero-stats { flex-direction: row; align-items: flex-start; width: 100%; }
    .mini-stat { flex: 1; }
    .quick-cats-grid { grid-template-columns: 1fr 1fr; }
    .contacto-canales-grid { grid-template-columns: 1fr; }
    .pagos-grid { grid-template-columns: 1fr 1fr; }
    .oferta-countdown { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}

@media (max-width: 480px) {
    .quick-cats-grid { grid-template-columns: 1fr; }
    .pagos-grid { grid-template-columns: 1fr; }
    .page-hero-stats { flex-direction: row; flex-wrap: wrap; }
    .mini-stat { min-width: 90px; }
}


/* ─────────────────────────────────────────────
   WOMPI CHECKOUT MODAL
───────────────────────────────────────────── */
.wompi-checkout-wrapper {
    padding: 0.5rem 0;
    max-height: 82vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wompi-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.wompi-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229,169,44,0.1);
    border: 1px solid rgba(229,169,44,0.3);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.wompi-logo-badge i { font-size: 1rem; }

.wompi-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.wompi-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* Items del Carrito en el Modal */
.wompi-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 0.3rem;
}

.wompi-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition-fast);
}

.wompi-item-row:hover {
    border-color: var(--accent-primary);
}

.wompi-item-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.wompi-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.wompi-item-title {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.wompi-item-meta {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.wompi-item-price {
    font-weight: 700;
    color: var(--accent-primary);
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Totales */
.wompi-totals {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wompi-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.wompi-total-row i {
    margin-right: 0.3rem;
    color: var(--accent-primary);
}

.wompi-discount-row { color: var(--status-success); }

.wompi-grand-total {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 0.6rem;
    margin-top: 0.2rem;
}

.wompi-grand-total span:last-child {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

/* Métodos de Pago */
.wompi-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.wompi-methods-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wompi-methods-label i { color: var(--accent-primary); }

.wompi-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wompi-method-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.wompi-method-badge:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Botón de Pago Principal */
.wompi-pay-btn {
    font-size: 1.05rem !important;
    padding: 1rem 2rem !important;
    position: relative;
    overflow: hidden;
    animation: wompiPulse 2.5s infinite;
}

.wompi-pay-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    animation: wompiShimmer 2.5s infinite;
}

@keyframes wompiPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229,169,44,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(229,169,44,0); }
}

@keyframes wompiShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Nota de Seguridad */
.wompi-security-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
    justify-content: center;
    padding: 0 0.5rem;
}

.wompi-security-note i {
    color: var(--status-success);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

@media (max-width: 768px) {
    .wompi-checkout-wrapper { max-height: 90vh; }
    .wompi-items-list { max-height: 160px; }
}

/* ─────────────────────────────────────────────
   MARCA DE AGUA (LOGO WATERMARK BACKGROUND)
───────────────────────────────────────────── */
.global-watermark-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    width: 90vw;
    max-width: 1100px;
    height: auto;
    aspect-ratio: 4/1;
    background-image: url('assets/logo_kickhouse_watermark_clean.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.045;
    pointer-events: none;
    z-index: 0;
    filter: invert(1) brightness(2) drop-shadow(0 0 20px rgba(229,169,44,0.3));
    transition: opacity var(--transition-normal);
}

[data-theme="light"] .global-watermark-overlay {
    opacity: 0.055;
    filter: brightness(0.2) drop-shadow(0 0 10px rgba(0,0,0,0.1));
}

/* Marca de Agua Animada en Heroes */
.hero, .page-hero {
    position: relative;
    overflow: hidden;
}

.hero::after, .page-hero::after {
    content: '';
    position: absolute;
    right: -5%;
    bottom: -15%;
    width: 650px;
    height: 200px;
    background-image: url('assets/logo_kickhouse_watermark_clean.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-8deg);
    filter: invert(1) brightness(2);
    animation: watermarkFloat 12s ease-in-out infinite alternate;
}

[data-theme="light"] .hero::after, [data-theme="light"] .page-hero::after {
    opacity: 0.06;
    filter: brightness(0.1);
}

@keyframes watermarkFloat {
    0% { transform: rotate(-8deg) translateY(0px) scale(1); }
    50% { transform: rotate(-6deg) translateY(-12px) scale(1.03); }
    100% { transform: rotate(-10deg) translateY(8px) scale(0.98); }
}

/* Marca de agua sutil en Tarjetas de Producto */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 120px;
    height: 35px;
    background-image: url('assets/logo_kickhouse_watermark_clean.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    filter: invert(1) brightness(1.8);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.product-card:hover::after {
    opacity: 0.12;
    transform: scale(1.08);
}

[data-theme="light"] .product-card::after {
    filter: brightness(0.2);
    opacity: 0.05;
}

[data-theme="light"] .product-card:hover::after {
    opacity: 0.14;
}

/* Marca de Agua en Footer */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 250px;
    background-image: url('assets/logo_kickhouse_watermark_clean.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
    filter: invert(1) brightness(2);
}

/* ─────────────────────────────────────────────
   CAJA DE VALOR COPIABLE WOMPI
───────────────────────────────────────────── */
.wompi-amount-copy-box {
    background: linear-gradient(135deg, rgba(229,169,44,0.12) 0%, rgba(229,169,44,0.04) 100%);
    border: 1px dashed var(--accent-primary);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.amount-copy-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.amount-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.amount-label i { color: var(--accent-primary); }

.amount-display {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-primary);
}

.copy-amount-btn {
    white-space: nowrap;
    border-color: var(--accent-primary) !important;
    color: var(--accent-primary) !important;
    font-weight: 700 !important;
}

.copy-amount-btn:hover {
    background: var(--accent-primary) !important;
    color: #070707 !important;
}


