/* ===== VARIABLES CSS - COLORES MARCA MEJORADOS ===== */
:root {
    /* Colores base de la marca */
    --primary-red: #C86667;      /* Rojo principal */
    --primary-pink: #F0D6D9;     /* Rosa suave */
    --primary-black: #000000;    /* Negro */
    --primary-white: #FFFFFF;    /* Blanco */
    
    /* Colores mejorados para contraste */
    --red-dark: #B85556;         /* Rojo oscuro */
    --red-light: #D67778;        /* Rojo claro */
    --pink-dark: #E8C6CA;        /* Rosa oscuro */
    --pink-light: #F8E6E9;       /* Rosa muy claro */
    
    /* Colores acento mejorados */
    --accent-gold: #D4AF37;      /* Dorado acento */
    --accent-dark: #2D3748;      /* Negro azulado */
    
    /* Colores neutros mejorados */
    --text-dark: #2D3748;
    --text-light: #718096;
    --text-lighter: #A0AEC0;
    --bg-light: #F7FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --border-light: #EDF2F7;
    
    /* Gradientes mejorados */
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--red-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-gold), #B8860B);
    --gradient-hero: linear-gradient(135deg, var(--primary-red), #8B4513);
    --gradient-pink: linear-gradient(135deg, var(--primary-pink), var(--pink-dark));
    
    /* Sombras modernas */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Bordes redondeados */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Transiciones suaves */
    --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);
}

/* ===== RESET MODERNO ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER MODERNO ===== */
.header {
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

/* Top Bar Minimalista */
.header-top {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 0;
    font-size: 0.75rem;
    font-weight: 500;
}

.header-top-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.promo-text i {
    font-size: 0.7rem;
}

/* Navbar Principal Moderno */
.navbar-main {
    padding: 1rem 0;
    background: transparent !important;
}

/* Logo con imagen real */
.brand-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.brand-logo-temp {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-left: 10px;
}

.brand-accent {
    color: var(--primary-red);
}

.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

/* Navegación Minimalista */
.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
    font-size: 0.9rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
    background: var(--pink-light);
}

.navbar-nav .nav-link.active {
    color: var(--primary-red) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* Dropdown Moderno */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-top: 8px;
    border: 1px solid var(--border-light);
}

.dropdown-item {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.dropdown-item:hover {
    background: var(--pink-light);
    color: var(--primary-red);
}

/* Barra de Búsqueda Moderna */
.search-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-form {
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.search-form:focus-within {
    border-color: var(--primary-red);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(200, 102, 103, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    padding: 12px 16px;
    font-size: 0.9rem;
    outline: none;
    color: var(--text-dark);
}

.search-input::placeholder {
    color: var(--text-lighter);
}

.search-button {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 0 16px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-button:hover {
    color: var(--primary-red);
}

/* Acciones de Header Modernas */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-item {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.action-item:hover {
    background: var(--pink-light);
    color: var(--primary-red);
    transform: translateY(-1px);
}

.action-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Botón de Carrito Especial */
.cart-action {
    background: var(--gradient-primary);
    color: white !important;
    padding: 8px 12px;
}

.cart-action:hover {
    background: var(--red-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu Moderno */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 55, 72, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
}

/* ===== MEGA MENÚ MEJORADO ===== */
/* ===== MEGA MENÚ SIMPLIFICADO Y PROFESIONAL ===== */
.nav-item.dropdown .dropdown-toggle::after {
    display: none;
}

.mega-menu {
    width: 900px;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    padding: 2rem !important;
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--primary-red);
    background: var(--bg-white);
    margin-top: 15px !important;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mega-menu-col {
    padding: 0;
}

.mega-menu-col h6 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--pink-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.mega-menu-links li {
    margin-bottom: 0.5rem;
}

.mega-menu-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    padding: 8px 12px;
    display: block;
    border-radius: var(--radius-md);
    font-weight: 500;
}

.mega-menu-links a:hover {
    color: var(--primary-red);
    background: var(--pink-light);
    transform: translateX(5px);
}

/* Columna de destacados */
.mega-menu-col:last-child {
    background: linear-gradient(135deg, var(--pink-light), #f8f0f1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.mega-menu-col:last-child h6 {
    color: var(--primary-red);
    border-bottom-color: rgba(200, 102, 103, 0.3);
}

.mega-menu-col:last-child .mega-menu-links a {
    font-weight: 600;
    color: var(--text-dark);
}

.mega-menu-col:last-child .mega-menu-links a:hover {
    background: rgba(200, 102, 103, 0.1);
}

/* Badge especial */
.special-badge {
    background: var(--primary-red);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 6px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .mega-menu {
        width: 95%;
        padding: 1.5rem !important;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mega-menu-content {
        grid-template-columns: 1fr;
    }
    
    .mega-menu-col:last-child {
        grid-column: 1;
    }
}

/* ===== HERO SECTION MODERNO ===== */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent-gold);
    border: none;
    color: var(--primary-black);
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: #B8860B;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== PRODUCT CARDS MEJORADAS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

/* Contenedor de imagen fijo */
.product-image-container {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Badges de producto */
.product-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-badge {
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.badge-new {
    background: var(--accent-gold);
    color: var(--primary-black);
}

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

.badge-stock {
    background: #48BB78;
    color: white;
}

.badge-out {
    background: #A0AEC0;
    color: white;
}

/* Cuerpo del card - FONDO SOLIDO */
.product-card-body {
    padding: 1.5rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--text-lighter);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-brand {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Precios - siempre visibles */
.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-red);
}

.price-old {
    font-size: 1rem;
    color: var(--text-lighter);
    text-decoration: line-through;
    font-weight: 500;
}

.price-discount {
    background: var(--primary-red);
    color: white;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Acciones del producto */
.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-product {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
}

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

.btn-cart:hover {
    background: var(--red-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-wishlist {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-wishlist:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

/* ===== CATEGORY GRID MODERNO ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--pink-light);
    padding: 80px 0;
}

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

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== FOOTER MODERNO ===== */
.footer {
    background: var(--accent-dark);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .brand-text {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-description {
    color: #A0AEC0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.footer-col h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid #2D3748;
    padding: 2rem 0;
    text-align: center;
    color: #A0AEC0;
}

/* ===== RESPONSIVE MODERNO ===== */
@media (max-width: 768px) {
    .header-top {
        font-size: 0.7rem;
        padding: 4px 0;
    }
    
    .header-top-content {
        gap: 1rem;
    }
    
    .search-container {
        max-width: 100%;
        margin: 12px 0;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .action-item span {
        display: none;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-logo-img {
        height: 32px;
    }
    
    .brand-logo-temp {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .brand-text {
        font-size: 1.2rem;
        margin-left: 8px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-main {
        padding: 0.75rem 0;
    }
    
    .promo-text span {
        display: none;
    }
    
    .header-top-content {
        justify-content: space-between;
    }

    .brand-text span:not(.brand-accent) {
        display: none;
    }
    
    .brand-accent::before {
        content: "S";
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Efectos de hover suaves */
.navbar-nav .nav-link,
.action-item,
.dropdown-item,
.product-card,
.category-card,
.btn-product {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

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

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Estilos adicionales para el ícono de ojo en el logo temporal */
.brand-logo-temp .fa-eye {
    font-size: 1.1rem;
}

/* Mejorar la transición de opacidad para imágenes */
.brand-logo-img {
    transition: opacity 0.3s ease;
}

/* Asegurar que los dropdowns se cierren correctamente en mobile */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        border: none;
        box-shadow: none;
        background: var(--bg-light);
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr !important;
    }
    
    .mega-menu-col:last-child {
        background: transparent;
    }
}