/* LUXE Lingerie - Estilos Elegantes y Modernos */

:root {
    /* PALETA LUXURY PRINCIPAL - Tonos Dorados y Cremas Elegantes */
    --luxury-gold: #d4a574;           /* Dorado principal luxury */
    --luxury-gold-dark: #b8935f;      /* Dorado oscuro */
    --luxury-gold-light: #e6c29a;     /* Dorado claro */
    --luxury-bronze: #8b5a3c;         /* Bronce elegante */
    --luxury-brown: #5a3d2b;          /* Marrón chocolate */
    --luxury-cream: #faf8f5;          /* Crema base */
    --luxury-ivory: #fcfbf9;          /* Marfil */
    --luxury-champagne: #f5f2ed;      /* Champagne */
    --luxury-pearl: #f8f6f3;          /* Perla */
    
    /* VARIABLES PRIMARIAS (usando paleta luxury) */
    --primary-color: var(--luxury-gold);
    --primary-dark: var(--luxury-gold-dark);
    --primary-light: var(--luxury-gold-light);
    --secondary-color: var(--luxury-brown);
    --accent-color: var(--luxury-bronze);
    --accent-light: #a06b49;
    
    /* COLORES DE ESTADO (manteniendo funcionalidad) */
    --success-color: #2d5016;          /* Verde oscuro luxury */
    --warning-color: #b8935f;          /* Usando dorado oscuro */
    --danger-color: #8b4513;           /* Marrón rojizo luxury */
    --info-color: var(--luxury-bronze);
    
    /* FONDOS LUXURY */
    --bg-primary: #ffffff;
    --bg-secondary: var(--luxury-cream);
    --bg-tertiary: var(--luxury-champagne);
    --bg-light: var(--luxury-ivory);
    --bg-cream: var(--luxury-pearl);
    --bg-elegant: #fefdfb;
    
    /* TEXTOS LUXURY */
    --text-primary: #2c2c2c;
    --text-secondary: var(--luxury-brown);
    --text-muted: #8b7355;             /* Marrón suave luxury */
    --text-light: #a0926b;             /* Dorado muy suave */
    --text-white: #ffffff;
    --text-luxury: var(--luxury-gold);
    
    /* BORDES Y SOMBRAS LUXURY */
    --border-color: #ede7dc;
    --border-light: #f2ede4;
    --border-luxury: rgba(212, 165, 116, 0.3);
    --shadow-sm: 0 2px 8px rgba(212, 165, 116, 0.12);
    --shadow-md: 0 4px 15px rgba(212, 165, 116, 0.18);
    --shadow-lg: 0 8px 25px rgba(212, 165, 116, 0.25);
    --shadow-elegant: 0 12px 35px rgba(90, 61, 43, 0.15);
    --shadow-luxury: 0 15px 40px rgba(139, 90, 60, 0.2);
    
    /* GLASSMORPHISM LUXURY */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-bg-cream: rgba(250, 248, 245, 0.9);
    --glass-border: rgba(212, 165, 116, 0.25);
    --glass-shadow: 0 10px 35px rgba(212, 165, 116, 0.2);
    
    /* GRADIENTES LUXURY */
    --gradient-primary: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
    --gradient-luxury: linear-gradient(135deg, var(--luxury-gold-light) 0%, var(--luxury-gold) 50%, var(--luxury-bronze) 100%);
    --gradient-light: linear-gradient(135deg, var(--luxury-cream) 0%, var(--luxury-champagne) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(184, 147, 95, 0.08) 100%);
    --gradient-elegant: linear-gradient(135deg, var(--luxury-ivory) 0%, var(--luxury-pearl) 100%);
    
    /* TRANSICIONES LUXURY */
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* BORDES REDONDEADOS LUXURY */
    --border-radius: 14px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FORZAR TEMA LUXURY - CORREGIR FONDO NEGRO */
html {
    background: var(--bg-primary) !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* OVERRIDE CUALQUIER ESTILO QUE CAUSE FONDO NEGRO */
*, *::before, *::after {
    background-color: inherit;
}

/* CONTENEDORES PRINCIPALES CON FONDO LUXURY */
.container, .container-fluid {
    background: transparent;
}

.main, main {
    background: var(--bg-primary) !important;
    min-height: 100vh;
}

/* ASEGURAR QUE LAS SECCIONES TENGAN FONDO CORRECTO */
section {
    background: var(--bg-primary);
}

section[style*="background"] {
    background: var(--bg-secondary) !important;
}

/* Tipografía elegante */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-secondary);
    font-weight: 400;
}

.elegant-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.elegant-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Navegación elegante */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: var(--gradient-subtle);
}

.dropdown-menu {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-elegant);
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--gradient-subtle);
    color: var(--primary-color);
}

/* Asegurar visibilidad del dropdown */
.dropdown-menu {
    z-index: 1050 !important;
    display: none;
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mejorar interacción del dropdown toggle */
.dropdown-toggle::after {
    margin-left: 0.5rem;
}

.nav-item.dropdown:hover .nav-link {
    color: var(--primary-color) !important;
}

/* Botones elegantes */
.btn-primary-elegant {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-white);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.btn-primary-elegant:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
    text-decoration: none;
}

.btn-secondary-elegant {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-elegant:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline-elegant {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn-outline-elegant:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
}

/* Compatibilidad con botones existentes */
.btn-primary-futuristic {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-white);
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.btn-primary-futuristic:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
    text-decoration: none;
}

.btn-secondary-futuristic {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-futuristic:hover {
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
}

.btn-futuristic {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
}

.btn-futuristic:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-white);
    text-decoration: none;
}

/* Card elegante principal */
.elegant-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.elegant-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--primary-color);
}

.elegant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

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

/* Glass Cards - Actualizadas con tema elegante */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--primary-color);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

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

/* Títulos de sección elegantes */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Tarjetas de producto elegantes */
.product-card-elegant {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.product-card-elegant:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--primary-color);
}

.product-image-elegant {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
    background: var(--bg-light);
}

.product-card-elegant:hover .product-image-elegant {
    transform: scale(1.05);
}

.product-info-elegant {
    padding: 1.5rem;
}

.product-title-elegant {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-price-elegant {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-category-elegant {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Placeholder para imágenes */
.product-image-placeholder {
    width: 100%;
    height: 280px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
    opacity: 0.5;
}

/* Overlay elegante para productos */
.product-overlay-elegant {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(90, 61, 43, 0.85) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: var(--text-white);
}

.product-card-elegant:hover .product-overlay-elegant {
    opacity: 1;
}

/* Botones de acción en overlay */
.product-actions-elegant {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-view-elegant,
.btn-cart-elegant {
    background: var(--primary-color);
    border: none;
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-view-elegant:hover,
.btn-cart-elegant:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    color: var(--text-white);
    text-decoration: none;
}

/* Categorías elegantes */
.category-card-elegant {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.category-card-elegant:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--primary-color);
}

.category-card-elegant::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-subtle);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.category-card-elegant:hover::before {
    opacity: 1;
}

.category-icon-elegant {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.category-title-elegant {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.category-description-elegant {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Contenedor principal elegante */
.elegant-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Filtros laterales elegantes */
.sidebar-elegant {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.625rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 400;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: left;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
}

/* Forms elegantes */
.form-elegant .form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-elegant .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
    background: var(--bg-primary);
}

.form-elegant .form-label {
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Utilidades de texto elegantes */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.text-elegant-primary {
    color: var(--primary-color);
}

.text-elegant-secondary {
    color: var(--text-secondary);
}

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

/* Badges elegantes */
.badge-elegant {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-outline-elegant {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.25rem 0.625rem;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Alertas elegantes */
.alert-elegant {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    border-left: 4px solid var(--primary-color);
}

/* Footer elegante */
.footer-elegant {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-elegant h5 {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-elegant a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
    margin-right: 0.75rem;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Carrito elegante */
.cart-item-elegant {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.cart-item-elegant:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.cart-summary-elegant {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: sticky;
    top: 100px;
}

/* Controles de cantidad elegantes */
.quantity-control-elegant {
    display: inline-flex;
    align-items: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-control-elegant button {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.quantity-control-elegant button:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.quantity-control-elegant input {
    border: none;
    background: transparent;
    width: 60px;
    text-align: center;
    font-weight: 500;
    color: var(--text-secondary);
}

.quantity-control-elegant input:focus {
    outline: none;
}

/* Galería de producto elegante */
.product-gallery-elegant {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-elegant {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail-btn {
    min-width: 80px;
    height: 80px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail-btn:hover,
.thumbnail-btn.active {
    border-color: var(--primary-color);
}

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

/* Compatibilidad con estilos existentes */
.futuristic-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-card-futuristic {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.product-card-futuristic:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
    border-color: var(--primary-color);
}

.product-image-futuristic {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
    background: var(--bg-light);
}

.product-card-futuristic:hover .product-image-futuristic {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(90, 61, 43, 0.85) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: var(--text-white);
}

.product-card-futuristic:hover .product-overlay {
    opacity: 1;
}

.product-info {
    color: inherit;
    width: 100%;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

/* Responsive Design Elegante */
@media (max-width: 1200px) {
    .elegant-container {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .elegant-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .elegant-container {
        padding: 1rem;
    }
    
    .elegant-card {
        padding: 1.5rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .sidebar-elegant {
        position: relative;
        top: auto;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-primary-elegant,
    .btn-secondary-elegant,
    .btn-primary-futuristic,
    .btn-secondary-futuristic {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .product-actions-elegant {
        flex-direction: column;
    }
    
    .cart-summary-elegant {
        position: relative;
        top: auto;
        margin-top: 2rem;
    }
    
    .thumbnail-gallery {
        justify-content: center;
    }
    
    .social-links {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .elegant-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .elegant-container {
        padding: 0.75rem;
    }
    
    .category-card-elegant {
        padding: 2rem 1rem;
    }
    
    .product-info-elegant {
        padding: 1rem;
    }
    
    .main-image-elegant {
        margin-bottom: 1rem;
    }
    
    .quantity-control-elegant {
        width: 100%;
        justify-content: space-between;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Animaciones elegantes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Utilitarios de animación */
.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Utilidades finales */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

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

.text-gradient-link:hover {
    filter: brightness(1.1);
}

/* Notificaciones elegantes */
.notification-elegant {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-elegant);
    z-index: 9999;
    animation: fadeInRight 0.3s ease;
}

/* Separadores elegantes */
.elegant-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 2rem auto;
    border-radius: 2px;
}

/* Estados de carga elegantes */
.loading-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.loading-elegant::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estados vacíos elegantes */
.empty-state-elegant {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.empty-state-elegant i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.empty-state-elegant h3 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Overrides para componentes Bootstrap con tema elegante */
.btn-primary {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    font-weight: 500;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--gradient-accent);
    border-color: var(--primary-dark);
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--text-muted);
    border-color: var(--text-muted);
}

.btn-outline-secondary {
    color: var(--text-muted);
    border-color: var(--border-color);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.form-control {
    border-color: var(--border-color);
    border-radius: var(--border-radius);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.2);
}

.alert {
    border-radius: var(--border-radius);
}

.card {
    border-color: var(--border-color);
    border-radius: var(--border-radius-lg);
}

.badge {
    border-radius: var(--border-radius);
}

/* Productos - compatibilidad total */
.product-image {
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    transition: var(--transition);
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.product-gallery img:hover,
.product-gallery img.active {
    border-color: var(--primary-color);
}

/* Mejoras para carrito */
.cart-item-row {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.cart-item-row:hover {
    background: var(--bg-secondary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.cart-qty-group {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.cart-qty-group .btn {
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    border: none;
    background: transparent;
    color: var(--text-secondary);
    transition: var(--transition);
}

.cart-qty-group .btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.cart-qty-group input[type="number"] {
    max-width: 60px;
    border-radius: var(--border-radius-sm);
    border: 0;
    background: transparent;
    text-align: center;
    font-weight: 500;
    color: var(--text-secondary);
}

.cart-summary {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Input number sin spinners */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Estados hover para enlaces */
a {
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

/* CORRECCIONES CRÍTICAS PARA FONDO NEGRO Y SIDEBAR */

/* FORZAR FONDOS LUXURY EN TODA LA PÁGINA */
body, html {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* SIDEBAR DE FILTROS - CORREGIR FONDO NEGRO */
.sidebar-elegant {
    background: var(--bg-secondary) !important;
    color: var(--text-secondary) !important;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* TÍTULOS EN SIDEBAR */
.sidebar-elegant h5,
.sidebar-elegant .filter-title {
    color: var(--text-secondary) !important;
    font-family: 'Playfair Display', serif;
}

/* ENLACES DE FILTRO - CORREGIR COLORES */
.sidebar-elegant a,
.sidebar-elegant .filter-btn {
    color: var(--text-secondary) !important;
    background: transparent !important;
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.sidebar-elegant a:hover,
.sidebar-elegant .filter-btn:hover,
.sidebar-elegant .filter-btn.active {
    background: var(--gradient-primary) !important;
    color: var(--text-white) !important;
    border-color: var(--primary-color) !important;
}

/* ÁREA DE PRODUCTOS - FONDO CORRECTO */
.elegant-container {
    background: var(--bg-primary) !important;
    min-height: 100vh;
}

/* CARDS DE PRODUCTOS - CORREGIR FONDOS */
.elegant-card {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

.product-card-elegant {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
}

/* TÍTULOS DE PRODUCTOS */
.elegant-card h2,
.elegant-container h2 {
    color: var(--text-secondary) !important;
}

/* SELECT DE ORDENACIÓN */
.elegant-card select.form-control {
    background: var(--bg-primary) !important;
    color: var(--text-secondary) !important;
    border: 1px solid var(--border-color) !important;
}

/* FOOTER - ASEGURAR FONDO CORRECTO */
.footer-elegant {
    background: var(--bg-secondary) !important;
    color: var(--text-secondary) !important;
}

/* NAVEGACIÓN - FONDO CORRECTO */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
}

/* OVERRIDE BOOTSTRAP QUE PUEDA CAUSAR FONDO NEGRO */
.bg-dark {
    background: var(--bg-secondary) !important;
}

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

/* ASEGURAR QUE NO HAY FONDOS NEGROS OCULTOS */
div, section, main, header, footer, nav {
    background-color: inherit;
}

/* PRODUCTOS ESPECÍFICOS - MEJORAR VISIBILIDAD */
.product-card-elegant .product-info-elegant {
    background: var(--bg-primary) !important;
}

.product-title-elegant {
    color: var(--text-secondary) !important;
}

.product-price-elegant {
    color: var(--primary-color) !important;
}

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

/* BADGES CORREGIDOS */
.badge-elegant {
    background: var(--gradient-primary) !important;
    color: var(--text-white) !important;
}

.badge-outline-elegant {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}

/* Final cleanup - remove duplicated rules in next step */
