/**
 * KEYDAN SAC - SISTEMA DE DISEÑO PROFESIONAL
 * Theme CSS con Modo Día/Noche + Mobile App Experience
 * Diseño: Glassmorphism, Gradientes Modernos, Animaciones Fluidas
 */

/* ============================================
   VARIABLES CSS - TEMA CLARO Y OSCURO
   ============================================ */
:root {
    /* Colores Principales - Modo Claro */
    --primary-gradient: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
    --secondary-gradient: linear-gradient(135deg, #2E7D32 0%, #43A047 100%);
    --accent-gradient: linear-gradient(135deg, #F57C00 0%, #FB8C00 100%);

    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F8FA;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.7);

    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-muted: #999999;

    --border-color: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);

    /* Colores de Acento */
    --blue-primary: #0D47A1;
    --blue-light: #1976D2;
    --green-primary: #2E7D32;
    --orange-primary: #F57C00;

    /* Glassmorphism */
    --glass-blur: blur(20px);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Transiciones */
    --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-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Bordes Redondeados */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Z-Index */
    --z-navbar: 1000;
    --z-mobile-nav: 1100;
    --z-modal: 1200;
    --z-toast: 1300;
}

/* Modo Oscuro */
[data-theme="dark"] {
    --bg-primary: #0F0F0F;
    --bg-secondary: #1A1A1A;
    --bg-card: rgba(26, 26, 26, 0.95);
    --bg-glass: rgba(26, 26, 26, 0.7);

    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #666666;

    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);

    --glass-border: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESET Y BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    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);
}

/* ============================================
   NAVEGACIÓN - DESKTOP
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-navbar);
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: var(--bg-card);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform var(--transition-fast);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo img {
    height: 40px;
    width: auto;
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navbar-link {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-normal);
}

.navbar-link:hover {
    color: var(--blue-light);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Botón Toggle Tema */
.theme-toggle {
    position: relative;
    width: 56px;
    height: 28px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.theme-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    transition: transform var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

[data-theme="dark"] .theme-toggle-slider {
    transform: translateX(28px);
}

/* Botón Hamburguesa - Mobile */
.navbar-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.navbar-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.navbar-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ============================================
   NAVEGACIÓN MÓVIL - ESTILO APP
   ============================================ */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-mobile-nav);
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    position: relative;
}

.mobile-nav-item.active {
    color: var(--blue-primary);
}

.mobile-nav-item i {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

.mobile-nav-item.active i {
    transform: scale(1.1);
}

/* Indicador de item activo */
.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 4px;
    height: 4px;
    background: var(--blue-primary);
    border-radius: 50%;
    transition: transform var(--transition-fast);
}

.mobile-nav-item.active::before {
    transform: translateX(-50%) scale(1);
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: white;
}

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

.btn-outline:hover {
    background: var(--blue-primary);
    color: white;
}

/* Botón WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: var(--z-modal);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ============================================
   SECCIONES
   ============================================ */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {

    /* Ocultar navegación desktop */
    .navbar-menu {
        display: none;
    }

    .navbar-hamburger {
        display: flex;
    }

    /* Ocultar navegación móvil vieja (reemplazada por mobile-bottom-nav en header.php) */
    .mobile-nav {
        display: none !important;
    }

    /* Ajustar padding del body para navegación inferior */
    body {
        padding-bottom: 70px;
    }

    /* Ajustar botón WhatsApp en móvil */
    .whatsapp-float {
        bottom: 90px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    /* Secciones más compactas en móvil */
    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-container {
        padding: 1rem 1.5rem;
    }

    /* Cards en móvil */
    .glass-card {
        padding: var(--spacing-md);
    }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar-menu {
        gap: 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }
}

/* Desktop grande */
@media (min-width: 1400px) {
    .navbar-container {
        padding: 1.5rem 3rem;
    }

    .section {
        padding: 6rem 3rem;
    }
}

/* ============================================
   ANIMACIONES Y EFECTOS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll personalizado */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glow {
    box-shadow: 0 0 40px rgba(13, 71, 161, 0.3);
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */
:focus-visible {
    outline: 2px solid var(--blue-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Modo de alto contraste */
@media (prefers-contrast: high) {
    :root {
        --border-color: rgba(0, 0, 0, 0.3);
    }

    [data-theme="dark"] {
        --border-color: rgba(255, 255, 255, 0.3);
    }
}

/* ============================================
   NUEVO HERO SECTION (PREMIUM)
   ============================================ */
.hero-section {
    position: relative;
    /* Usar aspect-ratio o altura fija moderada para evitar que sea muy alto */
    width: 100%;
    /* Altura basada en la imagen (aprox 3:1) pero con límites */
    height: auto;
    aspect-ratio: 16/9;
    max-height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    /* Fallback color */
}

@media (min-width: 1200px) {
    .hero-section {
        aspect-ratio: 2.5/1;
        /* Más panorámico en pantallas grandes */
        max-height: 700px;
    }
}

.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    /* Mantener cover para llenar, pero con el contenedor limitado */
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .slide.active {
    opacity: 1;
}

/* Filtro oscuro sobre las imágenes para legibilidad */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    margin-top: 60px;
    /* Offset del navbar */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
    /* Forzar blanco sobre imagen */
}

.hero-title span {
    background: linear-gradient(135deg, #4FC3F7 0%, #E1F5FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: var(--blue-primary);
    font-weight: 700;
    padding: 1rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        height: auto;
        min-height: 75vh;
        padding-bottom: 80px;
        /* Espacio para nav movil. Reducido de 100vh para que el usuario vea
           contenido (Nosotros, Productos) sin scrollear pantalla completa. */
    }
}

/* ============================================
   HERO: EYEBROW + CHIPS DE CONFIANZA
   ============================================ */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-eyebrow i {
    color: #4FC3F7;
}

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 0;
    padding: 0;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-trust i {
    color: #43A047;
}

/* ============================================
   HERO: BARRA DE ESTADÍSTICAS (datos reales)
   ============================================ */
.hero-stats-bar {
    background: var(--primary-gradient);
    padding: 2rem 0;
    position: relative;
    z-index: 4;
    box-shadow: var(--shadow-md);
}

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

.hero-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    color: #fff;
}

.hero-stat:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat-icon {
    font-size: 1.75rem;
    opacity: 0.85;
}

.hero-stat-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.hero-stat-num {
    font-size: 1.85rem;
    font-weight: 800;
}

.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.5rem;
    }

    .hero-stat {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }

    .hero-stat:nth-child(odd) {
        border-left: none;
    }

    .hero-stat-text {
        align-items: center;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    .hero-trust {
        gap: 1rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
    }
}

/* ============================================
   HERO BLOCK (bloque de texto, fondo limpio)
   ============================================ */
.hero-block {
    background: var(--bg-secondary);
    padding: 7rem 0 3.5rem;
    text-align: center;
    position: relative;
}

.hero-block-inner {
    max-width: 820px;
}

/* Eyebrow adaptado a fondo claro */
.hero-block .hero-eyebrow {
    background: rgba(13, 71, 161, 0.08);
    border-color: rgba(13, 71, 161, 0.2);
    color: var(--blue-primary);
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-block .hero-eyebrow i {
    color: var(--blue-light);
}

[data-theme="dark"] .hero-block .hero-eyebrow {
    background: rgba(79, 195, 247, 0.12);
    border-color: rgba(79, 195, 247, 0.3);
    color: #4FC3F7;
}

/* Titulo y subtitulo sobre fondo claro */
.hero-block .hero-title {
    color: var(--text-primary);
    text-shadow: none;
    margin-bottom: 1.25rem;
}

.hero-block .hero-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-block .hero-subtitle {
    color: var(--text-secondary);
    text-shadow: none;
    opacity: 1;
    margin-bottom: 2rem;
}

.hero-block .hero-trust li {
    color: var(--text-secondary);
    text-shadow: none;
}

/* Botones sobre fondo claro */
.hero-block .btn-hero-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.25);
}

.hero-block .btn-hero-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-3px) scale(1.02);
}

.hero-block .btn-hero-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-block .btn-hero-secondary:hover {
    background: var(--bg-primary);
    transform: translateY(-3px);
}

/* ============================================
   HERO CAROUSEL (banda de fotos separada)
   ============================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    /* Misma proporcion que las imagenes (2001x668 = 3:1) para mostrarlas completas */
    aspect-ratio: 3 / 1;
    max-height: 560px;
    overflow: hidden;
    /* Fondo blanco: los banners tienen fondo blanco, asi cualquier franja se funde */
    background: #ffffff;
}

.hero-carousel .hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Mostrar la imagen COMPLETA (sin recorte), aunque deje franjas que se fusionan con el blanco */
.hero-carousel .slide {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
}

.carousel-arrow.prev {
    left: 1.25rem;
}

.carousel-arrow.next {
    right: 1.25rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dots .dot.active {
    background: var(--blue-primary);
    width: 26px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hero-block {
        padding: 6rem 0 2.5rem;
    }

    .hero-carousel {
        /* Mantener 3:1 para que el banner se vea completo tambien en movil */
        aspect-ratio: 3 / 1;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .carousel-arrow.prev {
        left: 0.5rem;
    }

    .carousel-arrow.next {
        right: 0.5rem;
    }
}

/* ============================================
   TIPOS DE BOLSA QUE FABRICAMOS (grid a pedido)
   ============================================ */
.tipos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tipo-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.tipo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tipo-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
    transition: transform var(--transition-normal);
}

.tipo-card:hover .tipo-icon {
    transform: scale(1.08);
}

.tipo-nombre {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.tipo-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.tipo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-top: auto;
    transition: gap var(--transition-fast);
}

.tipo-cta i {
    color: #25D366; /* verde WhatsApp */
}

.tipo-card:hover .tipo-cta {
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .tipos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .tipo-card {
        padding: 1.25rem;
    }

    .tipo-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }
}

/* ============================================
   MODAL DE TIPO DE BOLSA
   ============================================ */
.tipo-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.tipo-modal[hidden] {
    display: none;
}

.tipo-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.tipo-modal-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    animation: tipoModalIn 0.25s ease;
}

@keyframes tipoModalIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.tipo-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.9rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.tipo-modal-close:hover {
    color: var(--text-primary);
}

.tipo-modal-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.tipo-modal-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.tipo-modal-head h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.tipo-modal-resumen {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.tipo-modal-subt {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 0 0.6rem;
}

.tipo-modal-tips {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tipo-modal-tips li {
    position: relative;
    padding-left: 1.6rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.tipo-modal-tips li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--green-primary);
}

.tipo-modal-rel-wrap {
    margin-bottom: 1.5rem;
}

.tipo-modal-rel {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tipo-rel-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.tipo-rel-chip:hover {
    border-color: var(--blue-light);
    transform: translateY(-1px);
}

.tipo-modal-cta {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVBAR & MOBILE STYLES (MIGRADO DE HEADER.PHP)
   ============================================ */
/* Estilos del navbar moderno */
.navbar-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

[data-theme="dark"] .navbar-new {
    background: rgba(18, 18, 18, 0.95);
}

.navbar-new-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-new-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    height: 54px;
    padding: 4px 8px;
    border-radius: 10px;
    transition: transform var(--transition-fast);
}

.navbar-new-logo:hover {
    transform: scale(1.03);
}

.navbar-new-logo img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

[data-theme="dark"] .navbar-new-logo {
    background: white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}

.navbar-new-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-new-menu>li {
    position: relative;
}

.navbar-new-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-new-link:hover {
    background: var(--blue-light);
    color: white;
    /* Improved contrast on hover */
}

.navbar-new-link:hover i {
    color: white;
}

.navbar-new-link i {
    font-size: 1rem;
    color: var(--blue-primary);
}

/* Dropdown */
.navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    /* Added border */
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem;
    z-index: 100;
}

.navbar-new-menu>li:hover .navbar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.navbar-dropdown a:hover {
    background: var(--blue-light);
    color: white;
}

.navbar-dropdown a:hover i {
    color: white;
}

.navbar-dropdown a i {
    width: 20px;
    text-align: center;
    color: var(--blue-primary);
}

/* Acciones derecha */
.navbar-new-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--bg-secondary);
    border: none;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-cart-btn:hover {
    background: var(--blue-light);
    color: white;
}

.navbar-cart-btn i {
    font-size: 1.1rem;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e53935;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.navbar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hamburguesa */
.navbar-new-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-new-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Navbar */
@media (max-width: 1024px) {
    .navbar-new-menu {
        display: none;
    }

    .navbar-cta-btn span {
        display: none;
    }

    .navbar-cta-btn {
        padding: 0.7rem;
        border-radius: 50%;
    }

    .navbar-new-hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar-new-container {
        padding: 0.75rem 1rem;
    }

    .navbar-new-logo img {
        height: 38px;
    }
}

/* Mobile App Styles (Bottom Nav) */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1100;
        background: var(--bg-card);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .mobile-nav-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 8px 12px;
        background: none;
        border: none;
        text-decoration: none;
        color: var(--text-secondary);
        font-size: 0.65rem;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-btn i {
        font-size: 1.3rem;
        transition: all 0.2s ease;
    }

    .mobile-nav-btn.active {
        color: var(--blue-primary);
    }

    .mobile-nav-btn.active i {
        transform: scale(1.15);
    }

    .mobile-nav-btn.active::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: var(--blue-primary);
        border-radius: 0 0 3px 3px;
    }

    .mobile-nav-btn .nav-badge {
        position: absolute;
        top: 2px;
        right: 8px;
        background: #e53935;
        color: white;
        font-size: 0.6rem;
        font-weight: 700;
        min-width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================
   MOBILE MENU PANEL (SIDEBAR)
   ============================================ */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: var(--bg-primary);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 1.5rem;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header img {
    height: 48px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.mobile-menu-header-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0px;
}

.mobile-menu-header-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mobile-menu-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-primary);
}

.mobile-menu-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.mobile-menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mobile-menu-item i {
    color: var(--blue-primary);
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.mobile-menu-item .arrow {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mobile-menu-cta {
    padding: 1.5rem;
    margin-top: auto;
}

.mobile-menu-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Ensure mobile menu panel is hidden on large screens if for some reason active class persists */
@media (min-width: 1025px) {

    .mobile-menu-panel,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* ============================================
   SCROLL ANIMATIONS (REVEAL)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.reveal-left {
    transform: translateX(-50px);
}

.reveal.reveal-right {
    transform: translateX(50px);
}

.reveal.reveal-left.active,
.reveal.reveal-right.active {
    transform: translateX(0);
}

/* Staggered delay helpers */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* ============================================
   GRID SYSTEMS (DESKTOP)
   ============================================ */
/* ============================================
   GRID SYSTEMS (DESKTOP)
   ============================================ */
.products-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-grid {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FORM STYLES (GLOBAL)
   ============================================ */
.mobile-form input,
.mobile-form textarea {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.mobile-form input:focus,
.mobile-form textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.1);
}

.mobile-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: 10px;
}

/* ============================================
   MOBILE RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {

    /* Products Horizontal Scroll (Mobile) */
    .products-scroll-container {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0 20px;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .products-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .products-scroll-container .product-card-wrapper {
        flex: 0 0 75%;
        max-width: 280px;
        scroll-snap-align: start;
        height: 100%;
    }

    .products-scroll-container .glass-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
}

/* Hide scrollbar globally for clean UI */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* ============================================
   FOOTER STYLES (MIGRADO DE FOOTER.PHP)
   ============================================ */
.footer {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--blue-primary);
    transform: translateX(5px);
}

.footer-schedule {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-schedule li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-schedule i {
    color: var(--blue-primary);
    margin-top: 0.25rem;
}

.footer-schedule strong {
    color: var(--text-primary);
    display: block;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-contact i {
    color: var(--blue-primary);
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact a,
.footer-contact span {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer-contact a:hover {
    color: var(--blue-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--blue-primary);
}

.separator {
    color: var(--border-color);
}

/* Decoración de fondo */
.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.footer-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    top: -200px;
    right: -100px;
}

.footer-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-gradient);
    bottom: -150px;
    left: -100px;
}

/* ============================================
   PRODUCT CARD STYLES (FROM CATALOGO)
   ============================================ */
.products-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-grid-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    /* In case it's a link wrapper */
}

/* Borde semántico sutil en la parte superior */
.product-grid-card.stock-high {
    border-top: 3px solid #22c55e;
}

.product-grid-card.stock-medium {
    border-top: 3px solid #f59e0b;
}

.product-grid-card.stock-low {
    border-top: 3px solid #ef4444;
}

.product-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-grid-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.5rem;
}

.product-grid-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.product-grid-card:hover .product-grid-image img {
    transform: scale(1.1);
}

/* Badges flotantes */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.badge-ref {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stock-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 2px white;
}

.stock-indicator.high {
    background: #22c55e;
}

.stock-indicator.medium {
    background: #f59e0b;
}

.stock-indicator.low {
    background: #ef4444;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.product-grid-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-grid-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.product-dims {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.color-dot-mini {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stock-text {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.stock-text.high {
    color: #15803d;
}

.stock-text.medium {
    color: #a16207;
}

.stock-text.low {
    color: #b91c1c;
}

.btn-card-action {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-card-action:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

@media (max-width: 768px) {
    .products-grid-view {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-grid-body {
        padding: 1rem;
    }
}/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       C A T A L O G O   S T Y L E S   ( M i g r a t e d   f r o m   c a t a l o g o . p h p )  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
  
 . c a t a l o g - h e a d e r   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 D 4 7 A 1   0 % ,   # 1 9 7 6 D 2   1 0 0 % ) ;  
         p a d d i n g :   4 r e m   2 r e m   1 . 5 r e m ;  
         c o l o r :   w h i t e ;  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . c a t a l o g - s t a t s   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   3 r e m ;  
         m a r g i n - t o p :   2 r e m ;  
         f l e x - w r a p :   w r a p ;  
 }  
  
 . c a t a l o g - s t a t   {  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . c a t a l o g - s t a t - n u m b e r   {  
         f o n t - s i z e :   2 . 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         d i s p l a y :   b l o c k ;  
 }  
  
 . c a t a l o g - s t a t - l a b e l   {  
         f o n t - s i z e :   0 . 9 r e m ;  
         o p a c i t y :   0 . 9 ;  
 }  
  
 . c a t a l o g - f i l t e r s   {  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
         p a d d i n g :   1 . 5 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         h e i g h t :   f i t - c o n t e n t ;  
 }  
  
 / *   N u e v o   L a y o u t   c o n   G r i d   * /  
 . c a t a l o g - l a y o u t   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   2 8 0 p x   1 f r ;  
         g a p :   2 r e m ;  
         m a x - w i d t h :   1 4 0 0 p x ;  
         m a r g i n :   2 r e m   a u t o ;  
         p a d d i n g :   0   1 r e m ;  
         a l i g n - i t e m s :   s t a r t ;  
 }  
  
 . c a t a l o g - s i d e b a r   {  
         p o s i t i o n :   s t i c k y ;  
         t o p :   2 r e m ;  
 }  
  
 . c a t a l o g - c o n t e n t   {  
         m i n - w i d t h :   0 ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   {  
         . c a t a l o g - l a y o u t   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   1 . 5 r e m ;  
         }  
  
         . c a t a l o g - s i d e b a r   {  
                 p o s i t i o n :   s t a t i c ;  
         }  
 }  
  
 . f i l t e r s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 0 0 p x ,   1 f r ) ) ;  
         g a p :   1 r e m ;  
 }  
  
 . f i l t e r - g r o u p   l a b e l   {  
         d i s p l a y :   b l o c k ;  
         f o n t - w e i g h t :   6 0 0 ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . f i l t e r - g r o u p   s e l e c t ,  
 . f i l t e r - g r o u p   i n p u t   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   0 . 7 5 r e m ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - s m ) ;  
         b a c k g r o u n d :   v a r ( - - b g - p r i m a r y ) ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         f o n t - f a m i l y :   ' P o p p i n s ' ,   s a n s - s e r i f ;  
 }  
  
 . p r o d u c t s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ;  
         g a p :   2 r e m ;  
         m a r g i n - t o p :   2 r e m ;  
 }  
  
 . p r o d u c t - c a r d   {  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         o v e r f l o w :   h i d d e n ;  
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - n o r m a l ) ;  
         c u r s o r :   p o i n t e r ;  
 }  
  
 . p r o d u c t - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 4 p x ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - x l ) ;  
 }  
  
 . p r o d u c t - i m a g e   {  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   2 0 0 p x ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # E 3 F 2 F D   0 % ,   # B B D E F B   1 0 0 % ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         f o n t - s i z e :   4 r e m ;  
         c o l o r :   v a r ( - - b l u e - p r i m a r y ) ;  
 }  
  
 . p r o d u c t - b o d y   {  
         p a d d i n g :   1 . 5 r e m ;  
 }  
  
 . p r o d u c t - t i t l e   {  
         f o n t - s i z e :   1 . 1 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         m a r g i n - b o t t o m :   0 . 7 5 r e m ;  
 }  
  
 . p r o d u c t - s p e c s   {  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   0 . 5 r e m ;  
         m a r g i n - b o t t o m :   1 r e m ;  
 }  
  
 . p r o d u c t - s p e c   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
 }  
  
 . p r o d u c t - s p e c   i   {  
         c o l o r :   v a r ( - - b l u e - p r i m a r y ) ;  
         w i d t h :   2 0 p x ;  
 }  
  
 . p r o d u c t - b a d g e   {  
         d i s p l a y :   i n l i n e - b l o c k ;  
         p a d d i n g :   0 . 2 5 r e m   0 . 7 5 r e m ;  
         b a c k g r o u n d :   v a r ( - - s e c o n d a r y - g r a d i e n t ) ;  
         c o l o r :   w h i t e ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - f u l l ) ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         m a r g i n - t o p :   0 . 5 r e m ;  
 }  
  
 . p r o d u c t - a c t i o n s   {  
         d i s p l a y :   f l e x ;  
         g a p :   0 . 7 5 r e m ;  
         m a r g i n - t o p :   1 r e m ;  
 }  
  
 . b t n - a d d - c a r t   {  
         f l e x :   1 ;  
         b a c k g r o u n d :   v a r ( - - p r i m a r y - g r a d i e n t ) ;  
         c o l o r :   w h i t e ;  
         b o r d e r :   n o n e ;  
         p a d d i n g :   0 . 7 5 r e m   1 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - n o r m a l ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . b t n - a d d - c a r t : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ;  
 }  
  
 . b t n - a d d - c a r t : d i s a b l e d   {  
         o p a c i t y :   0 . 5 ;  
         c u r s o r :   n o t - a l l o w e d ;  
 }  
  
 . b t n - v i e w - d e t a i l s   {  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         p a d d i n g :   0 . 7 5 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - f a s t ) ;  
 }  
  
 . b t n - v i e w - d e t a i l s : h o v e r   {  
         b a c k g r o u n d :   v a r ( - - b g - p r i m a r y ) ;  
         b o r d e r - c o l o r :   v a r ( - - b l u e - p r i m a r y ) ;  
 }  
  
 / *   = = = = = = = = = =   T A B L A   D E   S T O C K   = = = = = = = = = =   * /  
 . s t o c k - t a b l e - c o n t a i n e r   {  
         o v e r f l o w - x :   a u t o ;  
         m a r g i n - t o p :   1 . 5 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ;  
 }  
  
 . s t o c k - t a b l e   {  
         w i d t h :   1 0 0 % ;  
         b o r d e r - c o l l a p s e :   c o l l a p s e ;  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         f o n t - s i z e :   0 . 9 5 r e m ;  
 }  
  
 . s t o c k - t a b l e   t h e a d   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 5 6 5 C 0 ,   # 0 D 4 7 A 1 ) ;  
 }  
  
 . s t o c k - t a b l e   t h   {  
         p a d d i n g :   1 r e m   1 . 2 5 r e m ;  
         t e x t - a l i g n :   l e f t ;  
         f o n t - w e i g h t :   6 0 0 ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         l e t t e r - s p a c i n g :   0 . 5 p x ;  
         c o l o r :   # f f f f f f   ! i m p o r t a n t ;  
 }  
  
 . s t o c k - t a b l e   t b o d y   t r   {  
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
 }  
  
 . s t o c k - t a b l e   t b o d y   t r : h o v e r   {  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
 }  
  
 . s t o c k - t a b l e   t d   {  
         p a d d i n g :   1 r e m   1 . 2 5 r e m ;  
         v e r t i c a l - a l i g n :   m i d d l e ;  
 }  
  
 . c o l o r - i n d i c a t o r   {  
         d i s p l a y :   i n l i n e - f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . c o l o r - d o t   {  
         w i d t h :   2 4 p x ;  
         h e i g h t :   2 4 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b o r d e r :   2 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . s t o c k - b a d g e   {  
         d i s p l a y :   i n l i n e - f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 3 5 r e m ;  
         p a d d i n g :   0 . 3 5 r e m   0 . 7 5 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - f u l l ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
         f o n t - s i z e :   0 . 8 5 r e m ;  
 }  
  
 . s t o c k - b a d g e . h i g h   {  
         b a c k g r o u n d :   # d c f c e 7 ;  
         c o l o r :   # 1 6 6 5 3 4 ;  
 }  
  
 . s t o c k - b a d g e . m e d i u m   {  
         b a c k g r o u n d :   # f e f 9 c 3 ;  
         c o l o r :   # 8 5 4 d 0 e ;  
 }  
  
 . s t o c k - b a d g e . l o w   {  
         b a c k g r o u n d :   # f e e 2 e 2 ;  
         c o l o r :   # 9 9 1 b 1 b ;  
 }  
  
 . b t n - v e r - p r o d u c t o   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y - g r a d i e n t ) ;  
         c o l o r :   w h i t e ;  
         b o r d e r :   n o n e ;  
         p a d d i n g :   0 . 5 r e m   1 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
         d i s p l a y :   i n l i n e - f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 4 r e m ;  
         f o n t - s i z e :   0 . 8 5 r e m ;  
 }  
  
 . b t n - v e r - p r o d u c t o : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ;  
 }  
  
 / *   = = = = = = = = = =   T O G G L E   V I S T A   L I S T A / C U A D R %� C U L A   = = = = = = = = = =   * /  
 . v i e w - t o g g l e - c o n t a i n e r   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         a l i g n - i t e m s :   c e n t e r ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
         p a d d i n g :   1 r e m ;  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
 }  
  
 . v i e w - t o g g l e - i n f o   {  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
 }  
  
 . v i e w - t o g g l e - i n f o   s t r o n g   {  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . v i e w - t o g g l e - b u t t o n s   {  
         d i s p l a y :   f l e x ;  
         g a p :   0 . 5 r e m ;  
         b a c k g r o u n d :   v a r ( - - b g - p r i m a r y ) ;  
         p a d d i n g :   0 . 2 5 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
 }  
  
 . v i e w - t o g g l e - b t n   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         p a d d i n g :   0 . 6 r e m   1 r e m ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         f o n t - w e i g h t :   5 0 0 ;  
         c u r s o r :   p o i n t e r ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - s m ) ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
 }  
  
 . v i e w - t o g g l e - b t n : h o v e r   {  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
 }  
  
 . v i e w - t o g g l e - b t n . a c t i v e   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y - g r a d i e n t ) ;  
         c o l o r :   w h i t e ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - s m ) ;  
 }  
  
 . v i e w - t o g g l e - b t n   i   {  
         f o n t - s i z e :   1 r e m ;  
 }  
  
 / *   = = = = = = = = = =   V I S T A   C U A D R %� C U L A   -   P R O D U C T O S   ( N U E V O   D I S E %� O )   = = = = = = = = = =   * /  
 . p r o d u c t s - g r i d - v i e w   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 2 6 0 p x ,   1 f r ) ) ;  
         g a p :   1 . 5 r e m ;  
 }  
  
 . p r o d u c t - g r i d - c a r d   {  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         o v e r f l o w :   h i d d e n ;  
         t r a n s i t i o n :   a l l   0 . 3 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ;  
         b o x - s h a d o w :   0   2 p x   1 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         p o s i t i o n :   r e l a t i v e ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
 }  
  
 . p r o d u c t - g r i d - c a r d . s t o c k - h i g h   {  
         b o r d e r - t o p :   3 p x   s o l i d   # 2 2 c 5 5 e ;  
 }  
  
 . p r o d u c t - g r i d - c a r d . s t o c k - m e d i u m   {  
         b o r d e r - t o p :   3 p x   s o l i d   # f 5 9 e 0 b ;  
 }  
  
 . p r o d u c t - g r i d - c a r d . s t o c k - l o w   {  
         b o r d e r - t o p :   3 p x   s o l i d   # e f 4 4 4 4 ;  
 }  
  
 . p r o d u c t - g r i d - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         b o x - s h a d o w :   0   1 5 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
 }  
  
 . p r o d u c t - g r i d - i m a g e   {  
         p o s i t i o n :   r e l a t i v e ;  
         w i d t h :   1 0 0 % ;  
         h e i g h t :   2 0 0 p x ;  
         b a c k g r o u n d :   # f 8 f a f c ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         o v e r f l o w :   h i d d e n ;  
         p a d d i n g :   1 . 5 r e m ;  
 }  
  
 . p r o d u c t - g r i d - i m a g e   i m g   {  
         m a x - w i d t h :   1 0 0 % ;  
         m a x - h e i g h t :   1 0 0 % ;  
         o b j e c t - f i t :   c o n t a i n ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 5 s   e a s e ;  
         f i l t e r :   d r o p - s h a d o w ( 0   4 p x   6 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ) ;  
 }  
  
 . p r o d u c t - g r i d - c a r d : h o v e r   . p r o d u c t - g r i d - i m a g e   i m g   {  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
 }  
  
 . p r o d u c t - b a d g e s   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   1 0 p x ;  
         l e f t :   1 0 p x ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         g a p :   0 . 5 r e m ;  
         z - i n d e x :   2 ;  
 }  
  
 . b a d g e - r e f   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 4 p x ) ;  
         p a d d i n g :   0 . 2 5 r e m   0 . 6 r e m ;  
         b o r d e r - r a d i u s :   6 p x ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
 }  
  
 . s t o c k - i n d i c a t o r   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   1 0 p x ;  
         r i g h t :   1 0 p x ;  
         w i d t h :   1 2 p x ;  
         h e i g h t :   1 2 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         z - i n d e x :   2 ;  
         b o x - s h a d o w :   0   0   0   2 p x   w h i t e ;  
 }  
  
 . s t o c k - i n d i c a t o r . h i g h   {  
         b a c k g r o u n d :   # 2 2 c 5 5 e ;  
 }  
  
 . s t o c k - i n d i c a t o r . m e d i u m   {  
         b a c k g r o u n d :   # f 5 9 e 0 b ;  
 }  
  
 . s t o c k - i n d i c a t o r . l o w   {  
         b a c k g r o u n d :   # e f 4 4 4 4 ;  
         a n i m a t i o n :   p u l s e - r e d   2 s   i n f i n i t e ;  
 }  
  
 @ k e y f r a m e s   p u l s e - r e d   {  
         0 %   {  
                 b o x - s h a d o w :   0   0   0   0   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 . 7 ) ;  
         }  
  
         7 0 %   {  
                 b o x - s h a d o w :   0   0   0   6 p x   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 ) ;  
         }  
  
         1 0 0 %   {  
                 b o x - s h a d o w :   0   0   0   0   r g b a ( 2 3 9 ,   6 8 ,   6 8 ,   0 ) ;  
         }  
 }  
  
 . p r o d u c t - g r i d - b o d y   {  
         p a d d i n g :   1 . 2 5 r e m ;  
         f l e x - g r o w :   1 ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
 }  
  
 . p r o d u c t - g r i d - t i t l e   {  
         f o n t - s i z e :   1 . 1 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         m a r g i n :   0   0   0 . 2 5 r e m   0 ;  
         l i n e - h e i g h t :   1 . 3 ;  
 }  
  
 . p r o d u c t - d i m s   {  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         m a r g i n - b o t t o m :   0 . 7 5 r e m ;  
 }  
  
 . p r o d u c t - m e t a   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 7 5 r e m ;  
         m a r g i n - b o t t o m :   1 r e m ;  
         f l e x - w r a p :   w r a p ;  
 }  
  
 . m e t a - i t e m   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 4 r e m ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
         p a d d i n g :   0 . 2 5 r e m   0 . 6 r e m ;  
         b o r d e r - r a d i u s :   4 p x ;  
 }  
  
 . c o l o r - d o t - m i n i   {  
         w i d t h :   1 0 p x ;  
         h e i g h t :   1 0 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
 }  
  
 . s t o c k - t e x t   {  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         m a r g i n - t o p :   a u t o ;  
         p a d d i n g - t o p :   1 r e m ;  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         a l i g n - i t e m s :   c e n t e r ;  
         b o r d e r - t o p :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
 }  
  
 . s t o c k - t e x t . h i g h   {  
         c o l o r :   # 1 5 8 0 3 d ;  
 }  
  
 . s t o c k - t e x t . m e d i u m   {  
         c o l o r :   # a 1 6 2 0 7 ;  
 }  
  
 . s t o c k - t e x t . l o w   {  
         c o l o r :   # b 9 1 c 1 c ;  
 }  
  
 . b t n - c a r d - a c t i o n   {  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         p a d d i n g :   0 . 4 r e m   0 . 8 r e m ;  
         b o r d e r - r a d i u s :   6 p x ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
 }  
  
 . b t n - c a r d - a c t i o n : h o v e r   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y - g r a d i e n t ) ;  
         c o l o r :   w h i t e ;  
         b o r d e r - c o l o r :   t r a n s p a r e n t ;  
 }  
  
 . v i e w - l i s t   . p r o d u c t s - g r i d - v i e w   {  
         d i s p l a y :   n o n e ;  
 }  
  
 . v i e w - l i s t   . s t o c k - t a b l e - c o n t a i n e r ,  
 . v i e w - l i s t   . d i s t - t a b l e - c o n t a i n e r   {  
         d i s p l a y :   b l o c k ;  
 }  
  
 . v i e w - g r i d   . p r o d u c t s - g r i d - v i e w   {  
         d i s p l a y :   g r i d ;  
 }  
  
 . v i e w - g r i d   . s t o c k - t a b l e - c o n t a i n e r ,  
 . v i e w - g r i d   . d i s t - t a b l e - c o n t a i n e r   {  
         d i s p l a y :   n o n e ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . v i e w - t o g g l e - c o n t a i n e r   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 g a p :   1 r e m ;  
                 t e x t - a l i g n :   c e n t e r ;  
         }  
  
         . v i e w - t o g g l e - b t n   s p a n   {  
                 d i s p l a y :   n o n e ;  
         }  
  
         . p r o d u c t s - g r i d - v i e w   {  
                 g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
                 g a p :   1 r e m ;  
         }  
  
         . p r o d u c t - g r i d - c a r d   {  
                 b o r d e r - l e f t - w i d t h :   3 p x ;  
         }  
  
         . p r o d u c t - g r i d - i m a g e   {  
                 h e i g h t :   1 6 0 p x ;  
         }  
  
         . p r o d u c t - g r i d - b o d y   {  
                 p a d d i n g :   1 r e m ;  
         }  
  
         . p r o d u c t - g r i d - t i t l e   {  
                 f o n t - s i z e :   1 r e m ;  
         }  
  
         . p r o d u c t - g r i d - a c t i o n s   {  
                 m a r g i n - t o p :   1 r e m ;  
                 p a d d i n g - t o p :   1 r e m ;  
         }  
  
         . p r o d u c t - g r i d - a c t i o n s   . b t n - v e r - p r o d u c t o   {  
                 p a d d i n g :   0 . 7 5 r e m   1 r e m ;  
                 f o n t - s i z e :   0 . 8 5 r e m ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   {  
         . p r o d u c t s - g r i d - v i e w   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
                 g a p :   1 . 2 5 r e m ;  
         }  
  
         . p r o d u c t - g r i d - i m a g e   {  
                 h e i g h t :   2 0 0 p x ;  
         }  
  
         . p r o d u c t - g r i d - b o d y   {  
                 p a d d i n g :   1 . 2 5 r e m ;  
         }  
  
         . p r o d u c t - g r i d - t i t l e   {  
                 f o n t - s i z e :   1 . 1 r e m ;  
         }  
 }  
  
 . s u b - t a b s - c o n t a i n e r   {  
         m a r g i n - b o t t o m :   2 r e m ;  
         o v e r f l o w - x :   a u t o ;  
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ;  
 }  
  
 . s u b - t a b s   {  
         d i s p l a y :   f l e x ;  
         g a p :   0 . 7 5 r e m ;  
         p a d d i n g :   0 . 5 r e m ;  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         m i n - w i d t h :   f i t - c o n t e n t ;  
 }  
  
 . s u b - t a b   {  
         d i s p l a y :   i n l i n e - f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         p a d d i n g :   0 . 7 5 r e m   1 . 2 5 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         f o n t - w e i g h t :   5 0 0 ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         w h i t e - s p a c e :   n o w r a p ;  
 }  
  
 . s u b - t a b : h o v e r   {  
         b a c k g r o u n d :   v a r ( - - b g - p r i m a r y ) ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . s u b - t a b . a c t i v e   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y - g r a d i e n t ) ;  
         c o l o r :   w h i t e ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - s m ) ;  
 }  
  
 . s u b - t a b   i   {  
         f o n t - s i z e :   1 r e m ;  
 }  
  
 . s u b - t a b   . b a d g e - c o u n t   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ;  
         p a d d i n g :   0 . 1 5 r e m   0 . 5 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - f u l l ) ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . s u b - t a b . a c t i v e   . b a d g e - c o u n t   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 ) ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . s u b - t a b s   {  
                 g a p :   0 . 5 r e m ;  
                 p a d d i n g :   0 . 3 5 r e m ;  
         }  
  
         . s u b - t a b   {  
                 p a d d i n g :   0 . 6 r e m   1 r e m ;  
                 f o n t - s i z e :   0 . 8 5 r e m ;  
         }  
  
         . s u b - t a b   s p a n . t a b - t e x t   {  
                 d i s p l a y :   n o n e ;  
         }  
  
         . s u b - t a b   i   {  
                 m a r g i n - r i g h t :   0 ;  
         }  
 }  
  
 . d i s t - t a b l e - c o n t a i n e r   {  
         o v e r f l o w - x :   a u t o ;  
         m a r g i n - t o p :   1 . 5 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ;  
 }  
  
 . d i s t - t a b l e   {  
         w i d t h :   1 0 0 % ;  
         b o r d e r - c o l l a p s e :   c o l l a p s e ;  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         f o n t - s i z e :   0 . 9 5 r e m ;  
 }  
  
 . d i s t - t a b l e   t h e a d   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 7 c 3 a e d ,   # 5 b 2 1 b 6 ) ;  
 }  
  
 . d i s t - t a b l e   t h   {  
         p a d d i n g :   1 r e m   1 . 2 5 r e m ;  
         t e x t - a l i g n :   l e f t ;  
         f o n t - w e i g h t :   6 0 0 ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         l e t t e r - s p a c i n g :   0 . 5 p x ;  
         c o l o r :   # f f f f f f   ! i m p o r t a n t ;  
 }  
  
 . d i s t - t a b l e   t b o d y   t r   {  
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
 }  
  
 . d i s t - t a b l e   t b o d y   t r : h o v e r   {  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
 }  
  
 . d i s t - t a b l e   t d   {  
         p a d d i n g :   1 r e m   1 . 2 5 r e m ;  
         v e r t i c a l - a l i g n :   m i d d l e ;  
 }  
  
 . p r o d u c t o - i m g - t h u m b   {  
         w i d t h :   5 0 p x ;  
         h e i g h t :   5 0 p x ;  
         o b j e c t - f i t :   c o n t a i n ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b a c k g r o u n d :   # f 8 f 9 f a ;  
 }  
  
 . p r o d u c t o - n o m b r e - c e l l   {  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . p r o d u c t o - m a r c a   {  
         f o n t - s i z e :   0 . 8 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
 }  
  
 / *   M O D A L   S T Y L E S   * /  
 . m o d a l - p r o d u c t o - o v e r l a y   {  
         p o s i t i o n :   f i x e d ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         r i g h t :   0 ;  
         b o t t o m :   0 ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 6 ) ;  
         b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ;  
         z - i n d e x :   1 0 0 0 0 ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         o p a c i t y :   0 ;  
         v i s i b i l i t y :   h i d d e n ;  
         t r a n s i t i o n :   a l l   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ;  
         p a d d i n g :   1 r e m ;  
 }  
  
 . m o d a l - p r o d u c t o - o v e r l a y . a c t i v e   {  
         o p a c i t y :   1 ;  
         v i s i b i l i t y :   v i s i b l e ;  
 }  
  
 . m o d a l - p r o d u c t o   {  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - x l ) ;  
         w i d t h :   1 0 0 % ;  
         m a x - w i d t h :   9 0 0 p x ;  
         m a x - h e i g h t :   9 0 v h ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   r o w ;  
         o v e r f l o w :   h i d d e n ;  
         t r a n s f o r m :   s c a l e ( 0 . 9 5 )   t r a n s l a t e Y ( 2 0 p x ) ;  
         t r a n s i t i o n :   a l l   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ;  
         b o x - s h a d o w :   0   2 5 p x   5 0 p x   - 1 2 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 5 ) ;  
 }  
  
 . m o d a l - p r o d u c t o - o v e r l a y . a c t i v e   . m o d a l - p r o d u c t o   {  
         t r a n s f o r m :   s c a l e ( 1 )   t r a n s l a t e Y ( 0 ) ;  
 }  
  
 . m o d a l - l e f t   {  
         w i d t h :   4 0 % ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f a f c   0 % ,   # e 2 e 8 f 0   1 0 0 % ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         p o s i t i o n :   r e l a t i v e ;  
         p a d d i n g :   2 r e m ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . m o d a l - l e f t : : b e f o r e   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   - 5 0 % ;  
         l e f t :   - 5 0 % ;  
         w i d t h :   2 0 0 % ;  
         h e i g h t :   2 0 0 % ;  
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 )   0 % ,   t r a n s p a r e n t   6 0 % ) ;  
         o p a c i t y :   0 . 6 ;  
         p o i n t e r - e v e n t s :   n o n e ;  
 }  
  
 . m o d a l - i m a g e - d i s p l a y   {  
         p o s i t i o n :   r e l a t i v e ;  
         w i d t h :   1 0 0 % ;  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         z - i n d e x :   2 ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ;  
 }  
  
 . m o d a l - i m a g e - d i s p l a y : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
 }  
  
 . m o d a l - i m a g e - d i s p l a y   i m g   {  
         m a x - w i d t h :   1 0 0 % ;  
         m a x - h e i g h t :   3 0 0 p x ;  
         o b j e c t - f i t :   c o n t a i n ;  
         f i l t e r :   d r o p - s h a d o w ( 0   2 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ) ;  
 }  
  
 . m o d a l - v i s u a l - i c o n   {  
         f o n t - s i z e :   5 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         o p a c i t y :   0 . 3 ;  
         z - i n d e x :   1 ;  
 }  
  
 . m o d a l - r i g h t   {  
         w i d t h :   6 0 % ;  
         p a d d i n g :   2 . 5 r e m ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         o v e r f l o w - y :   a u t o ;  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . m o d a l - c l o s e - b t n   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   1 . 5 r e m ;  
         r i g h t :   1 . 5 r e m ;  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
         b o r d e r :   n o n e ;  
         w i d t h :   3 6 p x ;  
         h e i g h t :   3 6 p x ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         c u r s o r :   p o i n t e r ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         z - i n d e x :   1 0 ;  
 }  
  
 . m o d a l - c l o s e - b t n : h o v e r   {  
         b a c k g r o u n d :   # e f 4 4 4 4 ;  
         c o l o r :   w h i t e ;  
         t r a n s f o r m :   r o t a t e ( 9 0 d e g ) ;  
 }  
  
 . m o d a l - h e a d e r - i n f o   {  
         m a r g i n - b o t t o m :   2 r e m ;  
 }  
  
 . m o d a l - b a d g e - s t a t u s   {  
         d i s p l a y :   i n l i n e - f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         p a d d i n g :   0 . 3 5 r e m   0 . 8 5 r e m ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   0 . 5 p x ;  
         m a r g i n - b o t t o m :   1 r e m ;  
         b o x - s h a d o w :   0   2 p x   5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
 }  
  
 . m o d a l - t i t l e - l g   {  
         f o n t - s i z e :   2 r e m ;  
         f o n t - w e i g h t :   8 0 0 ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         l i n e - h e i g h t :   1 . 1 ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
 }  
  
 . m o d a l - s u b t i t l e - l g   {  
         f o n t - s i z e :   1 . 1 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - w e i g h t :   5 0 0 ;  
 }  
  
 . m o d a l - s p e c s - c l e a n   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ;  
         g a p :   1 . 5 r e m ;  
         m a r g i n - b o t t o m :   2 r e m ;  
         p a d d i n g - b o t t o m :   2 r e m ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
 }  
  
 . s p e c - c l e a n - i t e m   . l a b e l   {  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   1 p x ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         m a r g i n - b o t t o m :   0 . 2 5 r e m ;  
         d i s p l a y :   b l o c k ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . s p e c - c l e a n - i t e m   . v a l u e   {  
         f o n t - s i z e :   1 . 1 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . s t o c k - b a r - c o n t a i n e r   {  
         m a r g i n - b o t t o m :   2 r e m ;  
 }  
  
 . s t o c k - b a r - i n f o   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         m a r g i n - b o t t o m :   0 . 6 r e m ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . s t o c k - p r o g r e s s - t r a c k   {  
         h e i g h t :   1 0 p x ;  
         b a c k g r o u n d :   # f 1 f 5 f 9 ;  
         b o r d e r - r a d i u s :   5 p x ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . s t o c k - p r o g r e s s - f i l l   {  
         h e i g h t :   1 0 0 % ;  
         b o r d e r - r a d i u s :   5 p x ;  
         t r a n s i t i o n :   w i d t h   1 s   c u b i c - b e z i e r ( 0 . 4 ,   0 ,   0 . 2 ,   1 ) ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # 2 2 c 5 5 e ,   # 1 6 a 3 4 a ) ;  
 }  
  
 . s t o c k - p r o g r e s s - f i l l . m e d i u m   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # f 5 9 e 0 b ,   # d 9 7 7 0 6 ) ;  
 }  
  
 . s t o c k - p r o g r e s s - f i l l . l o w   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # e f 4 4 4 4 ,   # d c 2 6 2 6 ) ;  
 }  
  
 . a c t i o n - r o w   {  
         d i s p l a y :   f l e x ;  
         g a p :   1 r e m ;  
         a l i g n - i t e m s :   c e n t e r ;  
         m a r g i n - t o p :   a u t o ;  
 }  
  
 . q t y - c o n t r o l - p r e m i u m   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         p a d d i n g :   4 p x ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
 }  
  
 . q t y - b t n   {  
         w i d t h :   4 2 p x ;  
         h e i g h t :   4 2 p x ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   w h i t e ;  
         b o r d e r - r a d i u s :   8 p x ;  
         c u r s o r :   p o i n t e r ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         b o x - s h a d o w :   0   2 p x   4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
 }  
  
 . q t y - b t n : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 0 5 ) ;  
         c o l o r :   v a r ( - - b l u e - p r i m a r y ) ;  
         b o x - s h a d o w :   0   4 p x   8 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ;  
 }  
  
 . q t y - i n p u t   {  
         w i d t h :   6 0 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
         f o n t - w e i g h t :   7 0 0 ;  
         f o n t - s i z e :   1 . 2 r e m ;  
         b o r d e r :   n o n e ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         p a d d i n g :   0 ;  
 }  
  
 . b t n - a d d - p r e m i u m   {  
         f l e x :   1 ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 0 B 9 8 1   0 % ,   # 0 5 9 6 6 9   1 0 0 % ) ;  
         c o l o r :   w h i t e ;  
         b o r d e r :   n o n e ;  
         h e i g h t :   5 2 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
         f o n t - s i z e :   1 . 0 5 r e m ;  
         c u r s o r :   p o i n t e r ;  
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 3 ) ;  
         t r a n s i t i o n :   a l l   0 . 3 s ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   0 . 8 r e m ;  
 }  
  
 . b t n - a d d - p r e m i u m : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 1 6 ,   1 8 5 ,   1 2 9 ,   0 . 4 ) ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 5 9 6 6 9   0 % ,   # 1 0 B 9 8 1   1 0 0 % ) ;  
 }  
  
 . b t n - a d d - p r e m i u m : a c t i v e   {  
         t r a n s f o r m :   s c a l e ( 0 . 9 8 ) ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   8 5 0 p x )   {  
         . m o d a l - p r o d u c t o   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 m a x - h e i g h t :   9 5 v h ;  
                 m a x - w i d t h :   1 0 0 % ;  
         }  
  
         . m o d a l - l e f t   {  
                 w i d t h :   1 0 0 % ;  
                 h e i g h t :   2 2 0 p x ;  
                 p a d d i n g :   1 . 5 r e m ;  
         }  
  
         . m o d a l - i m a g e - d i s p l a y   i m g   {  
                 m a x - h e i g h t :   1 8 0 p x ;  
         }  
  
         . m o d a l - r i g h t   {  
                 w i d t h :   1 0 0 % ;  
                 p a d d i n g :   1 . 5 r e m ;  
                 o v e r f l o w - y :   i n i t i a l ;  
         }  
  
         . m o d a l - t i t l e - l g   {  
                 f o n t - s i z e :   1 . 5 r e m ;  
         }  
  
         . a c t i o n - r o w   {  
                 f l e x - d i r e c t i o n :   c o l u m n ;  
                 g a p :   1 r e m ;  
         }  
  
         . q t y - c o n t r o l - p r e m i u m   {  
                 w i d t h :   1 0 0 % ;  
                 j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;  
         }  
  
         . q t y - i n p u t   {  
                 w i d t h :   1 0 0 % ;  
         }  
  
         . b t n - a d d - p r e m i u m   {  
                 w i d t h :   1 0 0 % ;  
         }  
  
         . m o d a l - s p e c s - c l e a n   {  
                 g a p :   1 r e m ;  
         }  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
  
         . s t o c k - t a b l e ,  
         . d i s t - t a b l e   {  
                 m i n - w i d t h :   6 0 0 p x ;  
         }  
  
         . s t o c k - t a b l e   t h ,  
         . s t o c k - t a b l e   t d ,  
         . d i s t - t a b l e   t h ,  
         . d i s t - t a b l e   t d   {  
                 p a d d i n g :   0 . 7 5 r e m   0 . 5 r e m ;  
                 f o n t - s i z e :   0 . 8 r e m ;  
         }  
  
         . s t o c k - t a b l e   t h : n t h - c h i l d ( 3 ) ,  
         . s t o c k - t a b l e   t d : n t h - c h i l d ( 3 )   {  
                 d i s p l a y :   n o n e ;  
         }  
  
         . s t o c k - t a b l e - c o n t a i n e r ,  
         . d i s t - t a b l e - c o n t a i n e r   {  
                 m a r g i n :   1 r e m   - 1 r e m ;  
                 b o r d e r - r a d i u s :   0 ;  
                 - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ;  
         }  
  
         . m o d a l - s p e c s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
 }  
  
 . c a r t - f l o a t - b u t t o n   {  
         p o s i t i o n :   f i x e d ;  
         b o t t o m :   9 0 p x ;  
         l e f t :   2 0 p x ;  
         z - i n d e x :   1 0 0 0 ;  
         w i d t h :   6 0 p x ;  
         h e i g h t :   6 0 p x ;  
         b a c k g r o u n d :   v a r ( - - a c c e n t - g r a d i e n t ) ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         c o l o r :   w h i t e ;  
         f o n t - s i z e :   1 . 8 r e m ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - n o r m a l ) ;  
 }  
  
 . c a r t - f l o a t - b u t t o n : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - x l ) ;  
 }  
  
 . e m p t y - s t a t e   {  
         t e x t - a l i g n :   c e n t e r ;  
         p a d d i n g :   4 r e m   2 r e m ;  
 }  
  
 . e m p t y - s t a t e   i   {  
         f o n t - s i z e :   4 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         m a r g i n - b o t t o m :   1 r e m ;  
 }  
  
 . c a t a l o g - t a b s   {  
         d i s p l a y :   f l e x ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   1 r e m ;  
         m a r g i n :   2 r e m   a u t o   2 r e m ;  
         m a x - w i d t h :   6 0 0 p x ;  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
         p a d d i n g :   0 . 5 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
 }  
  
 . c a t a l o g - t a b   {  
         f l e x :   1 ;  
         p a d d i n g :   1 r e m   1 . 5 r e m ;  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - f a s t ) ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         t e x t - a l i g n :   c e n t e r ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
 }  
  
 . c a t a l o g - t a b : h o v e r   {  
         b a c k g r o u n d :   v a r ( - - b g - p r i m a r y ) ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . c a t a l o g - t a b . a c t i v e   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y - g r a d i e n t ) ;  
         c o l o r :   w h i t e ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ;  
 }  
  
 . c o m m e r c i a l - s e l e c t o r   {  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         p a d d i n g :   2 . 5 r e m ;  
         m a x - w i d t h :   8 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
 }  
  
 . s e l e c t o r - g r o u p   {  
         m a r g i n - b o t t o m :   2 r e m ;  
 }  
  
 . s e l e c t o r - g r o u p   l a b e l   {  
         d i s p l a y :   b l o c k ;  
         f o n t - w e i g h t :   6 0 0 ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         m a r g i n - b o t t o m :   0 . 7 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . s e l e c t o r - g r o u p   s e l e c t   {  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   1 r e m ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         b a c k g r o u n d :   v a r ( - - b g - p r i m a r y ) ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         f o n t - f a m i l y :   ' P o p p i n s ' ,   s a n s - s e r i f ;  
         f o n t - s i z e :   1 r e m ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - f a s t ) ;  
 }  
  
 . s e l e c t o r - g r o u p   s e l e c t : f o c u s   {  
         o u t l i n e :   n o n e ;  
         b o r d e r - c o l o r :   v a r ( - - b l u e - p r i m a r y ) ;  
         b o x - s h a d o w :   0   0   0   3 p x   r g b a ( 3 3 ,   1 5 0 ,   2 4 3 ,   0 . 1 ) ;  
 }  
  
 . p r o d u c t - p r e v i e w   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # E 3 F 2 F D   0 % ,   # B B D E F B   1 0 0 % ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         p a d d i n g :   2 r e m ;  
         m a r g i n - t o p :   2 r e m ;  
 }  
  
 . p r o d u c t - p r e v i e w   h 3   {  
         f o n t - s i z e :   1 . 5 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
 }  
  
 . p r e v i e w - s p e c s   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 0 0 p x ,   1 f r ) ) ;  
         g a p :   1 r e m ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
 }  
  
 . p r e v i e w - s p e c   {  
         b a c k g r o u n d :   w h i t e ;  
         p a d d i n g :   1 r e m ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         g a p :   0 . 7 5 r e m ;  
 }  
  
 . p r e v i e w - s p e c   i   {  
         c o l o r :   v a r ( - - b l u e - p r i m a r y ) ;  
         f o n t - s i z e :   1 . 5 r e m ;  
 }  
  
 . p r e v i e w - s p e c - l a b e l   {  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         d i s p l a y :   b l o c k ;  
 }  
  
 . p r o d u c t - p r e v i e w - s p e c - v a l u e   {  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         d i s p l a y :   b l o c k ;  
 }  
  
 . m e d i d a - c a r d s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 2 2 0 p x ,   1 f r ) ) ;  
         g a p :   1 . 5 r e m ;  
         m a r g i n - b o t t o m :   2 r e m ;  
 }  
  
 . m e d i d a - c a r d   {  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         b o r d e r :   2 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ;  
         p a d d i n g :   1 . 5 r e m ;  
         t e x t - a l i g n :   c e n t e r ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   v a r ( - - t r a n s i t i o n - n o r m a l ) ;  
 }  
  
 . m e d i d a - c a r d : h o v e r ,  
 . m e d i d a - c a r d . a c t i v e   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         b o x - s h a d o w :   v a r ( - - s h a d o w - x l ) ;  
         b o r d e r - c o l o r :   v a r ( - - b l u e - p r i m a r y ) ;  
 }  
  
 . m e d i d a - c a r d - n o m b r e   {  
         f o n t - s i z e :   1 . 5 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - b l u e - p r i m a r y ) ;  
         m a r g i n - b o t t o m :   0 . 5 r e m ;  
 }  
  
 . m e d i d a - c a r d - d i m e n s i o n e s   {  
         f o n t - s i z e :   1 r e m ;  
         c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 # p r i c e - t a b l e - c o n t a i n e r   {  
         m a r g i n - t o p :   2 r e m ;  
         p a d d i n g - t o p :   2 r e m ;  
         b o r d e r - t o p :   2 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
 }  
  
 . p r i c e - t a b l e   {  
         w i d t h :   1 0 0 % ;  
         b o r d e r - c o l l a p s e :   c o l l a p s e ;  
         m a r g i n - t o p :   2 r e m ;  
 }  
  
 . p r i c e - t a b l e   t h ,  
 . p r i c e - t a b l e   t d   {  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         p a d d i n g :   1 2 p x   1 5 p x ;  
         t e x t - a l i g n :   l e f t ;  
 }  
  
 . p r i c e - t a b l e   t h e a d   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - b g - s e c o n d a r y ) ;  
 }  
  
 . p r i c e - t a b l e   t h   {  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
 }  
  
 . p r i c e - t a b l e   t b o d y   t r : n t h - c h i l d ( e v e n )   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - b g - p r i m a r y ) ;  
 }  
  
 . p r i c e - t a b l e   t b o d y   t r : h o v e r   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - b g - s e c o n d a r y ) ;  
 }  
  
 . m o b i l e - f i l t e r - t o g g l e   {  
         d i s p l a y :   n o n e ;  
         w i d t h :   1 0 0 % ;  
         p a d d i n g :   0 . 8 r e m ;  
         b a c k g r o u n d :   v a r ( - - b g - s e c o n d a r y ) ;  
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ;  
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s - m d ) ;  
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
         m a r g i n - b o t t o m :   1 r e m ;  
         c u r s o r :   p o i n t e r ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         t r a n s i t i o n :   a l l   0 . 2 s ;  
 }  
  
 . m o b i l e - f i l t e r - t o g g l e : h o v e r   {  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         b o r d e r - c o l o r :   v a r ( - - b l u e - p r i m a r y ) ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   9 0 0 p x )   {  
         . c a t a l o g - l a y o u t   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
  
         . c a t a l o g - s i d e b a r   {  
                 d i s p l a y :   n o n e ;  
         }  
  
         . c a t a l o g - s i d e b a r . a c t i v e   {  
                 d i s p l a y :   b l o c k ;  
                 a n i m a t i o n :   s l i d e D o w n   0 . 3 s   e a s e - o u t ;  
         }  
  
         . m o b i l e - f i l t e r - t o g g l e   {  
                 d i s p l a y :   f l e x ;  
         }  
 }  
  
 @ k e y f r a m e s   s l i d e D o w n   {  
         f r o m   {  
                 o p a c i t y :   0 ;  
                 t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;  
         }  
  
         t o   {  
                 o p a c i t y :   1 ;  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;  
         }  
 }  
 
/* ============================================
   REFACTORIZACI�N INDEX.PHP
   ============================================ */
/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.stat-card {
    text-align: center;
}
.stat-icon {
    font-size: 3rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}
.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Section */
.contact-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

/* Colores Espec�ficos para Contacto */
.contact-icon-circle.blue { background: linear-gradient(135deg, #2196F3, #1976D2); }
.contact-icon-circle.green { background: linear-gradient(135deg, #4CAF50, #2E7D32); }
.contact-icon-circle.orange { background: linear-gradient(135deg, #FF9800, #F57C00); }
.contact-icon-circle.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }

.contact-label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-weight: 700;
}
.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form button {
    width: 100%;
    padding: 1rem;
}

/* ============================================
   SECCION BENEFICIOS (NUEVA)
   ============================================ */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    /* Glassmorphism sutil */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--border-color); /* Default top border */
    transition: background 0.3s ease;
}

/* Hover Effect: Lift & Shadow & Border Color */
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0,0,0,0.05);
}

.benefit-card:hover::before {
    background: var(--primary-gradient); /* Color on hover */
}

/* Icon Styles */
.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    font-size: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(13, 71, 161, 0.3);
}

/* Text Styles */
.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Specific Colors per card if desired, or simplified unified theme */
.benefit-card.card-factory .benefit-icon-wrapper { color: var(--blue-primary); }
.benefit-card.card-stock .benefit-icon-wrapper { color: var(--green-primary); }
.benefit-card.card-custom .benefit-icon-wrapper { color: var(--orange-primary); }


/* ============================================
   SPOTLIGHT EFFECT (SIDER.AI STYLE)
   ============================================ */
.spotlight-group {
    /* Container for spotlight cards */
    isolation: isolate;
}

.spotlight-card {
    position: relative;
    overflow: hidden;
    /* Ensure transparent background for inner content to show through if needed, 
       but for this card design we use ::after/::before for the glow */
}

/* El 'Brillo' que sigue al mouse (Borde/Fondo sutil) */
.spotlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(13, 71, 161, 0.15),
        transparent 40%
    );
    z-index: 1; /* Above background but below content */
    pointer-events: none;
}

/* Hacer visible el brillo al mover el mouse en el grupo (o hover individual) */
.spotlight-group:hover .spotlight-card::after {
    opacity: 1;
}

/* Opcional: Borde brillante */
.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px; /* Border width */
    background: radial-gradient(
        400px circle at var(--mouse-x) var(--mouse-y),
        rgba(37, 99, 235, 0.6),
        transparent 40%
    );
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
    pointer-events: none;
}

.spotlight-group:hover .spotlight-card::before {
    opacity: 1;
}

/* Ajuste de z-index para que el contenido est� sobre el brillo */
.spotlight-card > * {
    position: relative;
    z-index: 10;
}


/* ============================================
   STICKY SCROLL SECTION (SIDER.AI STYLE)
   ============================================ */
.sticky-scroll-section {
    padding: 6rem 0;
    background: var(--bg-body); /* O un gradiente suave */
}

/* --- Desktop Layout (> 992px) --- */
@media (min-width: 992px) {
    .sticky-container {
        display: flex;
        align-items: flex-start; /* Important for sticky to work */
        justify-content: space-between;
        gap: 4rem;
        position: relative;
    }

    .sticky-content {
        width: 40%;
        position: -webkit-sticky;
        position: sticky;
        top: 120px; /* Offset from header */
        height: auto;
        padding-bottom: 2rem;
    }

    .scroll-visuals {
        width: 55%;
        display: flex;
        flex-direction: column;
        gap: 60vh; /* Espacio para que cada tarjeta tenga su momento */
        padding-bottom: 20vh; /* Espacio final */
    }

    /* Navegaci�n Izquierda */
    .benefit-nav-item {
        padding: 1.5rem;
        border-left: 3px solid var(--border-color);
        cursor: pointer;
        opacity: 0.5;
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }

    .benefit-nav-item.active {
        opacity: 1;
        border-left-color: var(--blue-primary);
        background: linear-gradient(90deg, rgba(13, 71, 161, 0.06) 0%, transparent 100%);
    }

    .benefit-nav-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .benefit-nav-item p {
        font-size: 1rem;
        color: var(--text-secondary);
        margin: 0;
    }

    /* Tarjetas Visuales (Derecha) */
    .visual-card {
        height: 60vh; /* Altura de cada visual */
        background: var(--bg-card);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--border-color);
        transition: transform 0.5s ease, opacity 0.5s ease;
        opacity: 0.3; /* Inactivo por defecto (si queremos fade) */
        transform: scale(0.9);
    }
    
    .visual-card.in-view {
        opacity: 1;
        transform: scale(1);
    }

    .visual-icon-large {
        font-size: 8rem;
        background: -webkit-linear-gradient(45deg, var(--blue-primary), var(--purple-primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: float 6s ease-in-out infinite;
    }

    /* Ocultar texto m�vil en desktop */
    .visual-text-mobile {
        display: none;
    }
}

/* --- Mobile Layout (< 992px) --- */
@media (max-width: 991px) {
    .sticky-content {
        display: none; /* Ocultamos la sidebar compleja */
    }
    
    .section-header-left {
        display: block; /* Aseguramos que el titulo se vea antes */
        text-align: center;
        margin-bottom: 3rem;
    }

    .scroll-visuals {
        display: grid;
        gap: 2rem;
    }

    .visual-card {
        background: var(--bg-card);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        box-shadow: var(--shadow-lg);
    }

    .visual-icon-large {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        color: var(--blue-primary);
    }

    .visual-text-mobile {
        display: block;
    }

    .visual-text-mobile h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}



/* ============================================
   FIX STICKY SCROLL (2025-12-11)
   Refuerzo para la secci�n Por Qu� Elegir Keydan
   ============================================ */
@media (min-width: 992px) {
    /* Asegurar contenedor flex y relativo */
    #benefits .sticky-container {
        display: flex !important;
        align-items: flex-start !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* Asegurar comportamiento sticky */
    #benefits .sticky-content {
        display: block !important;
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 120px !important;
        height: auto !important;
        max-height: calc(100vh - 140px);
        width: 40% !important;
        z-index: 10;
    }

    /* Columna de visuales */
    #benefits .scroll-visuals {
        width: 55% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        overflow: visible !important;
    }
}



/* ============================================
   FIX STICKY SCROLL - V2 ROBUST (2025-12-11)
   Forzando overflow visible en ancestros
   ============================================ */
@media (min-width: 992px) {
    /* IMPORTANTE: Sticky requiere que NINGUN ancestro tenga overflow: hidden */
    main, section, .section, #benefits, .benefits-section {
        overflow: visible !important;
    }

    #benefits .sticky-container {
        display: flex !important;
        align-items: flex-start !important; /* Evita que el hijo tenga altura 100% del padre */
        justify-content: space-between !important;
        position: relative !important;
        overflow: visible !important;
    }

    #benefits .sticky-content {
        display: block !important;
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 100px !important;
        width: 40% !important;
        height: fit-content !important;
        max-height: 85vh;
        z-index: 50;
    }

    #benefits .scroll-visuals {
        width: 55% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}



/* ============================================
   PREMIUM VISUAL CARDS STYLES (2025-12-11)
   ============================================ */

.visual-card {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    display: flex; /* Flexbox para centrar contenido */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Icono de Fondo (Watermark) */
.visual-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    font-size: 15rem;
    opacity: 0.1;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.visual-card:hover .visual-bg-icon {
    transform: translate(-50%, -50%) scale(1.1) rotate(-5deg);
    opacity: 0.15;
}

/* Contenido de la Tarjeta */
.visual-card-info {
    display: block !important; /* Forzar visibilidad en desktop */
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1); /* Efecto Glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 90%;
}

.visual-card-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.visual-card-info p {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

/* --- Variaciones de Color (Premium Gradients) --- */
/* 1. Fabricantes Directos: Azul Profundo a Pizarra */
.card-fabricantes {
    background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
}

/* 2. Stock Permanente: Esmeralda a Turquesa */
.card-stock {
    background: linear-gradient(135deg, #E65100 0%, #FB8C00 100%);
}

/* 3. Medidas Especiales: Violeta a �ndigo */
.card-medida {
    background: linear-gradient(135deg, #2E7D32 0%, #43A047 100%);
}

/* --- Ajustes Responsive --- */
@media (max-width: 991px) {
    .visual-card {
        height: auto;
        min-height: auto;
        padding: 2rem;
        margin-bottom: 2rem;
    }
    .visual-bg-icon { font-size: 8rem; }
    .visual-card-info { padding: 1.5rem; }
    .visual-card-info h3 { font-size: 1.5rem; }
    .visual-card-info p { font-size: 1rem; }
}



/* ============================================
   REFINAMIENTO CENTRADO Y TEXTOS (2025-12-11)
   Ajuste visual final
   ============================================ */
@media (min-width: 992px) {
    .visual-card {
        /* Centrado absoluto Flexbox */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

    .visual-card-info {
        /* Centrado del bloque de texto */
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 800px !important;
    }
}



/* ============================================
   DARK MODE REDESIGN (Deep Slate) - 2025-12-11
   Sobrescribe reglas anteriores
   ============================================ */
[data-theme='dark'] {
    /* Deep Slate Palette */
    --bg-primary: #020617 !important;
    --bg-secondary: #0f172a !important;
    --bg-card: rgba(30, 41, 59, 0.7) !important;
    --bg-glass: rgba(15, 23, 42, 0.85) !important;
    
    /* Textos */
    --text-primary: #f8fafc !important;
    --text-secondary: #cbd5e1 !important;
    --text-muted: #64748b !important;
    
    /* Acentos Neon */
    --blue-primary: #38bdf8 !important;
    --blue-light: #7dd3fc !important;
    --border-color: rgba(255, 255, 255, 0.08) !important;
    --shadow-glow: 0 0 15px rgba(56, 189, 248, 0.25) !important;
}



/* ============================================
   HERO OVERLAY ADJUSTMENT (2025-12-11)
   Mejora de legibilidad para nuevas fotos
   ============================================ */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%) !important;
    opacity: 1 !important; /* Asegurar visibilidad */
    z-index: 1;
}



/* ============================================
   SLIDER CROP FIX (2025-12-11)
   Evitar corte de cabezas en imágenes
   ============================================ */
.hero-slider .slide {
    background-position: top center !important;
}



/* ============================================
   MOBILE HERO FIXES (2025-12-11)
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh; /* Altura suficiente para m�vil */
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        padding: 1rem;
        margin-top: 40px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem !important; /* Texto más peque�o */
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   ABOUT SECTION (Sobre Keydan)
   ============================================ */
.about-section {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text-col h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    margin-top: 2rem;
    position: relative;
    padding-left: 1rem;
}

.about-text-col h3:first-child {
    margin-top: 0;
}

.about-text-col h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 4px;
    height: 1.4rem;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.about-text-col p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.about-cta {
    margin-top: 1.5rem;
    display: inline-flex !important;
}

.about-images-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
    background: var(--bg-primary);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image-card:hover img {
    transform: scale(1.04);
}

.about-image-card .image-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(13, 71, 161, 0.92);
    color: white;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text-col h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   CONTACT FORM NOTE
   ============================================ */
.contact-form-note {
    margin-top: 0.85rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}


