@charset "utf-8";

Entiendo. "Moderno" es subjetivo y a veces el efecto cristal o demasiada transparencia no encaja bien con el resto del sitio.

Probemos un enfoque diferente: Sólido, Limpio y Estructurado.

Este diseño usa:

Barra Superior Oscura: Para dar contraste y seriedad (ideal para una veterinaria/tienda profesional).

Navegación Principal Blanca y Limpia: Con tipografía clara y buen espaciado.

Hover Sutil: En lugar de líneas que se mueven, usaremos un cambio de color de fondo suave para los enlaces.

Icono de Carrito Integrado: Un diseño más robusto para el carrito.

Reemplaza todo tu header con este código:

PHP

<style>
/* --- VARIABLES CSS (Para fácil personalización) --- */
:root {
    --header-top-bg: #232f3e;   /* Azul oscuro casi negro (muy profesional) */
    --header-top-text: #ffffff;
    --header-main-bg: #ffffff;  /* Blanco sólido */
    --primary-accent: #007bff;  /* Color de acento (azul vibrante) */
    --text-dark: #333333;
    --hover-bg: #f4f4f4;        /* Gris muy claro para hovers */
}

/* RESET BÁSICO PARA EL HEADER */
.header_container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.header_container a {
    text-decoration: none;
}

/* --- BARRA SUPERIOR (Top Bar) --- */
.top_bar {
    background-color: var(--header-top-bg);
    color: var(--header-top-text);
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
}

/* --- NAVEGACIÓN PRINCIPAL --- */
.main_nav_container {
    background-color: var(--header-main-bg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08); /* Sombra muy sutil solo abajo */
    padding: 15px 0;
    position: relative; /* Necesario para que el menú móvil se superponga correctamente */
    z-index: 100;
}

.header_content_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo_container img {
    max-height: 55px; /* Un poco más grande para presencia */
    width: auto;
    display: block;
}

/* Menú Desktop */
.navbar_menu {
    display: none; /* Oculto en móvil */
}

@media (min-width: 992px) {
    .navbar_menu {
        display: flex;
        gap: 5px; /* Espacio entre botones */
    }
}

.navbar_menu li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    padding: 12px 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* Efecto Hover Sólido */
.navbar_menu li a:hover {
    background-color: var(--hover-bg);
    color: var(--primary-accent);
}

/* --- ÁREA DE USUARIO (Carrito y Móvil) --- */
.header_right_actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Carrito Robusto */
.checkout a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-size: 20px;
    position: relative;
    padding: 5px;
    transition: color 0.3s;
}

.checkout a:hover {
    color: var(--primary-accent);
}

/* Badge del Carrito Estilo "Píldora" */
.checkout_items {
    background-color: var(--primary-accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px; /* Forma de píldora */
    position: absolute;
    top: -5px;
    right: -8px;
    border: 2px solid white; /* Borde blanco para que se separe del icono */
}

/* Hamburger Toggle */
.hamburger_container {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-dark);
}
@media (min-width: 992px) {
    .hamburger_container { display: none; }
}



/* Hero Section */
    .hero_banner {
        background-size: cover;
        background-position: center;
        height: 650px;
        display: flex;
        align-items: center;
        position: relative;
    }
    .hero_overlay {
        background: rgba(0,0,0,0.4); /* Oscurecer un poco la imagen para leer texto */
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
    }
    .hero_content {
        position: relative;
        z-index: 2;
        color: #fff;
        max-width: 600px;
    }
    .hero_title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    .hero_subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    .btn-hero {
        background-color: #007bff; /* Azul corporativo */
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
    }
    .btn-hero:hover {
        background-color: #0056b3;
        color: #fff;
        transform: translateY(-2px);
    }

    /* Features Section */
    .features_section {
        padding: 40px 0;
        background-color: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
    }
    .feature_box {
        text-align: center;
        padding: 20px;
    }
    .feature_icon {
        font-size: 2rem;
        color: #007bff;
        margin-bottom: 15px;
    }
    .feature_title {
        font-weight: 600;
        margin-bottom: 10px;
    }

    /* Product Cards */
    .new_arrivals {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    .section_title h2 {
        font-weight: 700;
        color: #333;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    .section_title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #007bff;
    }
    
    .vet-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 30px;
        overflow: hidden;
        border: 1px solid #eee;
    }
    .vet-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .card-img-wrapper {
        height: 200px;
        background-color: #f1f1f1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }
    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Mantiene la proporción sin estirar */
        transition: transform 0.5s ease;
    }
    .vet-card:hover .card-img-wrapper img {
        transform: scale(1.05);
    }
    .card-placeholder {
        font-size: 3rem;
        color: #ccc;
    }
    .card-body {
        padding: 20px;
        text-align: center;
    }
    .product-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
        height: 40px; /* Altura fija para alineación */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .product-title a {
        color: inherit;
        text-decoration: none;
    }
    .product-price {
        font-size: 1.2rem;
        color: #dc3545; /* Rojo precio */
        font-weight: 700;
        margin-bottom: 15px;
    }
    .btn-add-cart {
        background-color: #fff;
        color: #333;
        border: 2px solid #333;
        padding: 8px 20px;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        width: 100%;
        display: block;
    }
    .btn-add-cart:hover {
        background-color: #333;
        color: #fff;
    }



/* Estilos Ficha Producto Tech */
    .single_product { padding-top: 50px; padding-bottom: 80px; background: #fff; }
    .breadcrumb-tech { background: transparent; padding: 0; margin-bottom: 20px; font-size: 0.9rem; }
    .breadcrumb-tech a { color: #007bff; text-decoration: none; }
    .breadcrumb-tech .active { color: #6c757d; }
    
    .product_name { font-size: 2rem; font-weight: 700; color: #333; margin-bottom: 10px; }
    .product_sku { font-size: 0.85rem; color: #6c757d; margin-bottom: 20px; font-family: monospace; }
    .product_price { font-size: 2.2rem; color: #222; font-weight: 800; margin-bottom: 20px; }
    .product_price small { font-size: 1rem; color: #666; font-weight: 400; }
    
    .product_image_main {
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    .product_image_main img { max-width: 100%; height: auto; }

    .tech-specs-box {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 30px;
    }
    .tech-specs-box h5 { font-weight: 600; border-bottom: 2px solid #007bff; display: inline-block; padding-bottom: 5px; margin-bottom: 15px; }
    
    .quantity_selector { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
    .quantity_input { width: 60px; padding: 8px; text-align: center; border: 1px solid #ced4da; border-radius: 4px; }
    
    .btn-add-tech {
        background-color: #007bff; color: #fff; padding: 12px 30px; border: none; border-radius: 4px;
        font-weight: 700; text-transform: uppercase; width: 100%; transition: 0.3s;
    }
    .btn-add-tech:hover { background-color: #0056b3; box-shadow: 0 5px 15px rgba(0,91,187,0.3); }

    /* Tabs */
    .nav-tabs .nav-link { color: #555; font-weight: 600; }
    .nav-tabs .nav-link.active { color: #007bff; border-bottom: 3px solid #007bff; border-top: none; border-left: none; border-right: none; }
    .tab-content { padding: 30px 0; }
    .table-specs td { padding: 10px; border-bottom: 1px solid #eee; }
    .table-specs tr:last-child td { border-bottom: none; }
    .table-specs td:first-child { font-weight: 600; width: 30%; background: #fcfcfc; }



/* Sidebar Filtros */
    .sidebar {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #e9ecef;
        margin-bottom: 30px;
    }
    .sidebar_title h5 {
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    .sidebar_section { margin-bottom: 25px; }
    .filter_button {
        width: 100%;
        background-color: #333;
        color: #fff;
        border: none;
        padding: 12px;
        font-weight: 600;
        text-transform: uppercase;
        cursor: pointer;
        transition: 0.3s;
        border-radius: 4px;
    }
    .filter_button:hover {
        background-color: #007bff;
        box-shadow: 0 4px 10px rgba(0,123,255,0.3);
    }

    /* Product Cards (Reutilizando estilo moderno) */
    .electro-card {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        margin-bottom: 30px;
        overflow: hidden;
        border: 1px solid #eee;
        height: 100%; /* Para que todas tengan misma altura */
        display: flex;
        flex-direction: column;
    }
    .electro-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: #007bff;
    }
    .card-img-wrapper {
        height: 200px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        padding: 15px;
        border-bottom: 1px solid #f4f4f4;
    }
    .card-img-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.5s ease;
    }
    .electro-card:hover .card-img-wrapper img { transform: scale(1.1); }
    
    .card-body {
        padding: 20px;
        text-align: center;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .product-title {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
        height: 40px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .product-price {
        font-size: 1.2rem;
        color: #222;
        font-weight: 800;
        margin-bottom: 15px;
    }
    
    .card-actions {
        display: flex;
        gap: 10px;
    }
    .btn-view {
        flex: 1;
        background: #f1f1f1;
        color: #333;
        border: none;
        padding: 8px;
        border-radius: 4px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    .btn-add {
        flex: 2;
        background: #007bff;
        color: #fff;
        border: none;
        padding: 8px;
        border-radius: 4px;
        font-size: 0.85rem;
        font-weight: 600;
        transition: 0.3s;
    }
    .btn-add:hover { background: #0056b3; }

    /* Spinner Overlay */
    #overlay {
        position: fixed; top: 0; z-index: 9999; width: 100%; height: 100%;
        background: rgba(255, 255, 255, 0.8); display: none;
    }
    .cv-spinner {
        height: 100%; display: flex; justify-content: center; align-items: center;
    }
    .spinner {
        width: 40px; height: 40px; border: 4px solid #ddd;
        border-top: 4px solid #007bff; border-radius: 50%;
        animation: sp-anime 0.8s infinite linear;
    }
    @keyframes sp-anime { 100% { transform: rotate(360deg); } }

    /* Paginación */
    .pagination { justify-content: center; margin-top: 20px; }
    .page-item.active .page-link { background-color: #007bff; border-color: #007bff; }
    .page-link { color: #333; }




    .pagination-container {
        text-align: center;
        margin-top: 40px;
        margin-bottom: 60px;
    }
    .btn-load-more {
        background-color: transparent;
        color: #333;
        border: 2px solid #333;
        padding: 12px 40px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 50px;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    .btn-load-more:hover {
        background-color: #333;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .btn-load-more:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }
    
    /* Animación del spinner dentro del botón */
    .btn-spinner {
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 1s ease-in-out infinite;
        display: none;
    }
    .btn-load-more:hover .btn-spinner { border-top-color: #fff; border-color: rgba(255,255,255,0.3); }
    .btn-load-more .btn-spinner { border-top-color: #333; border-color: rgba(0,0,0,0.1); }
    
    @keyframes spin { to { transform: rotate(360deg); } }

    /* Estilos previos mantenidos (Cards, Sidebar, Overlay) */
    .sidebar { background: #f8f9fa; padding: 25px; border-radius: 8px; border: 1px solid #e9ecef; margin-bottom: 30px; }
    .sidebar_title h5 { font-weight: 700; color: #333; margin-bottom: 15px; text-transform: uppercase; font-size: 0.9rem; }
    .filter_button { width: 100%; background-color: #333; color: #fff; border: none; padding: 0px 12px; font-weight: 600; text-transform: uppercase; cursor: pointer; transition: 0.3s; border-radius: 4px; }
    .filter_button:hover { background-color: #007bff; }
    
    .electro-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; margin-bottom: 30px; overflow: hidden; border: 1px solid #eee; height: 100%; display: flex; flex-direction: column; }
    .electro-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: #007bff; }
    .card-img-wrapper { height: 200px; background-color: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; padding: 15px; border-bottom: 1px solid #f4f4f4; }
    .card-img-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.5s ease; }
    .electro-card:hover .card-img-wrapper img { transform: scale(1.1); }
    .card-body { padding: 20px; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
    .product-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; color: #333; height: 40px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
    .product-price { font-size: 1.2rem; color: #222; font-weight: 800; margin-bottom: 15px; }
    .card-actions { display: flex; gap: 10px; }
    .btn-view { flex: 1; background: #f1f1f1; color: #333; border: none; padding: 8px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; }
    .btn-add { flex: 2; background: #007bff; color: #fff; border: none; padding: 8px; border-radius: 4px; font-size: 0.85rem; font-weight: 600; transition: 0.3s; }
    .btn-add:hover { background: #0056b3; }




.social-connect-section {
        background: linear-gradient(135deg, #1e2125 0%, #23272b 100%); /* Fondo oscuro Tech */
        padding: 60px 0;
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    
    /* Decoración de fondo sutil (Circuitos abstractos) */
    .social-connect-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 20%),
                          radial-gradient(circle at 80% 80%, rgba(0,123,255,0.05) 0%, transparent 20%);
        pointer-events: none;
    }

    .social-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .social-subtitle {
        font-size: 1.1rem;
        color: #adb5bd;
        margin-bottom: 40px;
        font-weight: 300;
    }

    /* Grid de Iconos */
    .social-icons-wrapper {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .social-card {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        width: 160px;
        height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efecto rebote suave */
        position: relative;
    }

    .social-card i {
        font-size: 3rem;
        margin-bottom: 15px;
        transition: transform 0.3s;
    }
    
    .social-card span {
        font-size: 0.9rem;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        opacity: 0.8;
    }

    /* Colores Específicos y Hover */
    .social-card:hover {
        transform: translateY(-10px);
        background: #fff;
        border-color: #fff;
    }

    /* Instagram */
    .social-card.instagram:hover i {
        background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transform: scale(1.1);
    }
    .social-card.instagram:hover span { color: #cc2366; }

    /* Facebook */
    .social-card.facebook:hover i { color: #1877f2; transform: scale(1.1); }
    .social-card.facebook:hover span { color: #1877f2; }

    /* WhatsApp */
    .social-card.whatsapp:hover i { color: #25d366; transform: scale(1.1); }
    .social-card.whatsapp:hover span { color: #25d366; }

    /* YouTube (Opcional para electrónica es muy útil) */
    .social-card.youtube:hover i { color: #ff0000; transform: scale(1.1); }
    .social-card.youtube:hover span { color: #ff0000; }

    /* Responsive */
    @media (max-width: 768px) {
        .social-card { width: 45%; height: 120px; }
        .social-title { font-size: 1.5rem; }
    }





.bento-section { padding: 60px 0; }
    
    .bento-header { margin-bottom: 40px; text-align: center; }
    .bento-header h3 { font-weight: 800; text-transform: uppercase; color: #333; letter-spacing: 1px; }

    /* EL GRID MAGICO */
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 columnas base */
        grid-auto-rows: 200px; /* Altura base de cada fila */
        gap: 20px;
    }

    /* TARJETA BASE */
    .bento-item {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: block;
    }
    
    /* FONDOS Y GRADIENTES (Generados por CSS) */
    .bg-gradient-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
    .bg-gradient-2 { background: linear-gradient(135deg, #2af598 0%, #009efd 100%); }
    .bg-gradient-3 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); }
    .bg-gradient-4 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
    .bg-gradient-5 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
    .bg-gradient-6 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
    .bg-default    { background: linear-gradient(135deg, #333 0%, #555 100%); }

    /* CLASES DE TAMAÑO (Para el efecto Bento) */
    .span-hero {
        grid-column: span 2;
        grid-row: span 2;
    }
    .span-wide {
        grid-column: span 2;
    }
    .span-tall {
        grid-row: span 2;
    }
    /* En móvil, todo es 1 columna */
    @media (max-width: 768px) {
        .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
        .span-hero, .span-wide, .span-tall { grid-column: span 1; grid-row: span 1; }
    }

    /* CONTENIDO INTERNO */
    .bento-content {
        position: absolute;
        bottom: 0; left: 0; width: 100%; height: 100%;
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Texto abajo */
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
        z-index: 2;
    }
    
    .bento-icon {
        position: absolute;
        top: 20px; right: 20px;
        font-size: 2rem;
        color: rgba(255,255,255,0.3);
        transition: all 0.4s;
    }

    .bento-title {
        color: #fff;
        font-weight: 800;
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 5px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .bento-count {
        color: rgba(255,255,255,0.9);
        font-size: 0.9rem;
        font-weight: 500;
        display: inline-block;
        background: rgba(255,255,255,0.2);
        padding: 2px 10px;
        border-radius: 20px;
        width: fit-content;
        backdrop-filter: blur(4px);
    }

    /* HOVER EFFECTS */
    .bento-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .bento-item:hover .bento-icon {
        color: #fff;
        transform: scale(1.2) rotate(10deg);
    }





    .cart-section {
        background-color: #f8f9fa;
        padding: 60px 0;
        min-height: 80vh;
    }
    
    .cart-title {
        font-weight: 800;
        margin-bottom: 30px;
        color: #333;
    }

    /* TARJETA DE PRODUCTO */
    .cart-item {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.03);
        margin-bottom: 20px;
        padding: 20px;
        display: flex;
        align-items: center;
        transition: transform 0.2s;
        border: 1px solid #eee;
    }
    .cart-item:hover {
        border-color: #007bff;
        transform: translateY(-2px);
    }

    .cart-img-wrapper {
        width: 100px;
        height: 100px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #f1f1f1;
    }
    .cart-img-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .cart-details {
        flex-grow: 1;
    }
    .cart-product-name {
        font-weight: 700;
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 5px;
        text-decoration: none;
        display: block;
    }
    .cart-product-price {
        color: #666;
        font-size: 0.95rem;
    }
    .price-highlight {
        color: #333;
        font-weight: 700;
        font-size: 1.1rem;
    }

    /* SELECTOR DE CANTIDAD */
    .qty-selector {
        display: flex;
        align-items: center;
        background: #f8f9fa;
        border-radius: 50px;
        border: 1px solid #e9ecef;
        padding: 5px;
        width: fit-content;
    }
    .qty-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: none;
        background: #fff;
        color: #333;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: all 0.2s;
    }
    .qty-btn:hover { background: #007bff; color: #fff; }
    .qty-input {
        width: 40px;
        text-align: center;
        border: none;
        background: transparent;
        font-weight: 600;
        margin: 0 5px;
        font-size: 1rem;
    }
    /* Quitar flechas del input number */
    .qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

    /* BOTÓN ELIMINAR */
    .btn-remove {
        color: #dc3545;
        background: rgba(220, 53, 69, 0.1);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 20px;
        transition: 0.3s;
        cursor: pointer;
    }
    .btn-remove:hover {
        background: #dc3545;
        color: #fff;
    }

    /* RESUMEN DEL PEDIDO (DERECHA) */
    .cart-summary {
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        position: sticky;
        top: 100px; /* Para que baje contigo */
        border: 1px solid #eee;
    }
    .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        font-size: 1rem;
        color: #555;
    }
    .summary-total {
        border-top: 2px solid #f1f1f1;
        padding-top: 20px;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        font-size: 1.5rem;
        font-weight: 800;
        color: #333;
    }
    .btn-checkout {
        background: #007bff;
        color: #fff;
        width: 100%;
        padding: 15px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        margin-top: 25px;
        transition: 0.3s;
        display: block;
        text-align: center;
        text-decoration: none;
    }
    .btn-checkout:hover {
        background: #0056b3;
        color: #fff;
        box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    }

    /* ESTADO VACÍO */
    .empty-cart {
        text-align: center;
        padding: 50px;
    }
    .empty-cart i { font-size: 5rem; color: #ddd; margin-bottom: 20px; }
    .btn-continue {
        border: 2px solid #333;
        color: #333;
        padding: 10px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
        display: inline-block;
        margin-top: 20px;
    }
    .btn-continue:hover { background: #333; color: #fff; }

    /* Responsive Móvil */
    @media (max-width: 768px) {
        .cart-item { flex-wrap: wrap; }
        .cart-img-wrapper { width: 80px; height: 80px; }
        .cart-details { width: 100%; margin: 15px 0; }
        .qty-wrapper { display: flex; justify-content: space-between; width: 100%; align-items: center; }
        .btn-remove { margin-left: auto; }
    }




    /* ESTILOS DE BADGES (ETIQUETAS) */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge-new {
    background-color: #28a745; /* Verde */
    color: white;
}

.badge-soldout {
    background-color: #dc3545; /* Rojo */
    color: white;
}

/* Efecto visual para productos agotados */
.card-disabled {
    opacity: 0.7;
    pointer-events: none; /* Evita clics si quieres bloquearlo */
}
.card-disabled .btn-add {
    background-color: #999 !important;
    cursor: not-allowed;
}




.bento-locations {
        background-color: #adadad;
        padding: 80px 0;
        color: #fff;
    }
    
    .bento-header { margin-bottom: 40px; }
    .bento-header h2 { font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 2rem; }
    .bento-header p { color: #666; }

    /* EL GRID ASIMÉTRICO */
    .location-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr; /* Talca es más grande */
        grid-template-rows: 250px 150px; /* Dos filas de altura fija */
        gap: 20px;
    }

    /* ESTILO BASE DE LAS TARJETAS */
    .loc-card {
        background: #1a1a1a;
        border: 1px solid #333;
        border-radius: 24px;
        padding: 30px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-decoration: none !important;
    }
    .loc-card:hover {
        border-color: #007bff;
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0,123,255,0.15);
    }

    /* POSICIONAMIENTO EN EL GRID */
    .area-talca {
        grid-column: 1 / 2;
        grid-row: 1 / 3; /* Talca ocupa todo el alto izquierdo */
        background: linear-gradient(160deg, #1a1a1a 0%, #222 100%);
    }
    .area-sanclemente {
        grid-column: 2 / 3;
        grid-row: 1 / 2; /* San Clemente arriba derecha */
    }
    .area-status {
        grid-column: 2 / 3;
        grid-row: 2 / 3; /* Horario abajo derecha */
        background: #0d0d0d;
        border-color: #222;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 20px;
    }

    /* TYPOGRAPHY & ELEMENTS */
    .loc-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #007bff;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .loc-name {
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        margin-bottom: 10px;
    }
    .loc-address {
        color: #999;
        font-size: 1rem;
        max-width: 80%;
    }
    
    /* ICONOS DECORATIVOS GIGANTES */
    .bg-icon {
        position: absolute;
        bottom: -20px;
        right: -20px;
        font-size: 8rem;
        color: rgba(255,255,255,0.03);
        transform: rotate(-15deg);
        pointer-events: none;
        transition: transform 0.4s;
    }
    .loc-card:hover .bg-icon {
        transform: rotate(0deg) scale(1.1);
        color: rgba(255,255,255,0.05);
    }

    /* BOTÓN CIRCULAR FLOTANTE */
    .btn-go {
        width: 50px; height: 50px;
        background: #fff;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: #000;
        position: absolute;
        top: 20px; right: 20px;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .loc-card:hover .btn-go {
        opacity: 1;
        transform: scale(1);
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .location-grid {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
        }
        .area-talca { grid-column: 1; grid-row: 1; height: 250px; }
        .area-sanclemente { grid-column: 1; grid-row: 2; height: 200px; }
        .area-status { grid-column: 1; grid-row: 3; height: 100px; }
    }







.btn-whatsapp {
    display:block;
    width:60px;
    height:60px;
    color:#fff;
    position: fixed;
    right:20px;
    bottom:20px;
    border-radius:50%;
    line-height:80px;
    text-align:center;
    z-index:999;
    background: #25d366;
}
.btn-whatsapp a i {color: #fff;}
#overlay{	
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}
.is-hide{
  display:none;
}
.btn{
	border-radius: 0px;
}


/*----------------------------------------*/
/*  14.  Widget CSS
/*----------------------------------------*/
.widget-signup-list a{
	height: 185px;
    border-radius: 0px;
    background: #146b9d;
    width: 100%;
    display: inline-block;
    margin: 7.2px 4.4px 0px 0px;
    line-height: 170px;
    text-align: center;
    font-size: 90px;
    color: #fff;
}
.widget-signup-list img {
    position: relative;
    top: -1px;
    height: 250px;
    width: 100%;
}
.widget-signup-list-detail a{
	height: 185px;
    border-radius: 0px;
    background: #146b9d;
    width: 100%;
    display: inline-block;
    margin: 7.2px 4.4px 0px 0px;
    line-height: 170px;
    text-align: center;
    font-size: 90px;
    color: #fff;
}
.widget-signup-list-detail img {
    position: relative;
    top: -1px;
    height: 100%;
    width: 100%;
}
.widget-signup-list a.widgets-mg-sn {
    margin-bottom: 0px !important;
}
.realtime-title p{
	margin-bottom:15px;
}
.skill-content-3 {
    overflow: hidden
}
.skill .progress .lead-content {
    left: 0;
    position: absolute;
    top: -30px;
    z-index: 99;
    width: 100%;
}
.skill .progress .lead-content p{
    font-size: 14px;
    margin: 5px 0px;
}
.skill .progress {
    background-color: #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    height: 5px;
    overflow: visible;
    position: relative;
	margin: 30px 0px 48px 0px;
}
.skill .progress.progress-bt {
    margin-bottom:0px;
}
.skill .progress-bar > span {
    background: #333 none repeat scroll 0 0;
    float: right;
    font-size: 11px;
    margin-right: 10px;
    margin-top: -26px;
    position: relative;
    padding: 0 5px;
	z-index:99;
}
.skill .progress-bar > span:before,
.skill .progress-bar > span:after {
    border: medium solid transparent;
    content: " ";
    height: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    width: 0;
}
.skill .progress-bar > span:before {
    border-top-color: #333;
    border-width: 5px;
    left: 50%;
    margin-left: -5px;
}
.holax-shop h3,
.we-are-good-at h3 {
    font-size: 18px;
    margin-bottom: 25px;
}
.skill .progress:nth-child(1) .progress-bar {
    background: #00c292;
}
.skill .progress:nth-child(2) .progress-bar {
    background: #fb9678;
}
.skill .progress:nth-child(3) .progress-bar {
    background: #01c0c8;
}
.skill .progress:nth-child(4) .progress-bar {
    background: #ab8ce4;
}
.skill .progress:nth-child(5) .progress-bar {
    background: #e46a76;
}
.view-all-onging{
	margin-top:20px;
	text-align:center;
}
.view-all-onging a{
	font-size:14px;
	color:#333;
	transition:all .4s ease 0s;
}
.view-all-onging a:hover{
	color:#00c292;
	transition:all .4s ease 0s;
}
.flot-chart--xs {
    height: 70px;
}
.widget-inner-wp p{
	margin-bottom: 5px;
}
.realtime-title.signup-hd-wd h2, .realtime-title.ongoing-hd-wd h2{
	margin:0px 0px 10px;
}
.realtime-title.widget-inner-wp.signup-hd-wd p, .realtime-title.ongoing-hd-wd p{
	margin:0px;
}
.widget-signup-list a.signup-wd-mn{
	margin-top:0px;
}
.skill-content-3.ongoing-tsk .lead-content p{
	margin-top:0px;
}






/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,900');


.bg-obscuro{
	background-color: rgba(0,0,0,.05);
}

.bg-claro{
	background-color: rgba(0,0,0,.00);
}
            .signature{
                font-family: 'Kaushan Script', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
                color: #0099D5;
            }

            .table thead th {
                vertical-align: bottom;
                border-bottom: 2px solid transparent;
                background: #0099D5;
                color: #fff;
            }
            .font-weight-lighter{
                font-weight: 300;
                background: #0099D5;
                color: #fff;
            }
            .inv{
                background: #E6E4E7;
            }
            .my-3 {
                margin-bottom: 1rem !important;
                margin-top: 1rem !important;
            }
            .my-5 {
                margin-bottom: 3rem !important;
                margin-top: 3rem !important;
            }
            .py-5 {
                padding-bottom: 3rem !important;
                padding-top: 3rem !important;
            }
            .px-3 {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
            }
            .border-bottom{
                border-bottom: 2px solid #fff !important;
                /*width: 35%;*/
                padding: 0px 0px 5px 0px;
            }

/* ----------------------------------------------------------
---   #########  File upload style ######## -----------------
---   -------------------------------------------------------
---   estilo para subir imagen con pre-visualizacion 
---   y drag and drop 
------------------------------------------------------------- */

.file-upload {
  background-color: #ffffff;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.file-upload-btn {
  width: 100%;
  margin: 0;
  color: #fff;
  background: #1FB264;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid #15824B;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.file-upload-btn:hover {
  background: #1AA059;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.file-upload-btn:active {
  border: 0;
  transition: all .2s ease;
}

.file-upload-content {
  display: none;
  text-align: center;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap {
  margin-top: 20px;
  border: 4px dashed #1FB264;
  position: relative;
}

.image-dropping,
.image-upload-wrap:hover {
  background-color: #1FB264;
  border: 4px dashed #ffffff;
}

.image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}

.drag-text {
  text-align: center;
}

.drag-text h3 {
  font-weight: 100;
  text-transform: uppercase;
  color: #15824B;
  padding: 60px 0;
}

.file-upload-image {
  max-height: 100%;
  max-width: 100%;
  margin: auto;
  padding: 20px;
}

.remove-image {
  width: 200px;
  margin: 0;
  color: #fff;
  background: #cd4535;
  border: none;
  padding: 10px;
  border-radius: 4px;
  border-bottom: 4px solid #b02818;
  transition: all .2s ease;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
}

.remove-image:hover {
  background: #c13b2a;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.remove-image:active {
  border: 0;
  transition: all .2s ease;
}

/* ----------------------------------------------------------
---   #########  File upload style ######## -----------------
---   -------------------------------------------------------
---   Fin de estilo 
------------------------------------------------------------- */





/*********************************
2. Body and some general stuff
*********************************/



*
{
	margin: 0;
	padding: 0;
}
body
{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 23px;
	font-weight: 400;
	background: #FFFFFF;
	color: #1e1e27;
}
div
{
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul
{
	list-style: none;
	margin-bottom: 0px;
}
p
{
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	font-weight: 500;
	color: #989898;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a
{
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 2px #fde0db;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
a, a:hover, a:visited, a:active, a:link
{
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
p a:active
{
	position: relative;
	color: #FF6347;
}
p a:hover
{
	color: #FF6347;
	background: #fde0db;
}
p a:hover::after
{
	opacity: 0.2;
}
::selection
{
	background: #fde0db;
	color: #FF6347;
}
p::selection
{
	background: #fde0db;
}
h1{font-size: 72px;}
h2{font-size: 40px;}
h3{font-size: 28px;}
h4{font-size: 24px;}
h5{font-size: 16px;}
h6{font-size: 14px;}
h1, h2, h3, h4, h5, h6
{
	color: #282828;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection
{

}
::-webkit-input-placeholder
{
	font-size: 16px !important;
	font-weight: 500;
	color: #777777 !important;
}
:-moz-placeholder /* older Firefox*/
{
	font-size: 16px !important;
	font-weight: 500;
	color: #777777 !important;
}
::-moz-placeholder /* Firefox 19+ */
{
	font-size: 16px !important;
	font-weight: 500;
	color: #777777 !important;
}
:-ms-input-placeholder
{
	font-size: 16px !important;
	font-weight: 500;
	color: #777777 !important;
}
::input-placeholder
{
	font-size: 16px !important;
	font-weight: 500;
	color: #777777 !important;
}
.form-control
{
	color: #db5246;
}
section
{
	display: block;
	position: relative;
	box-sizing: border-box;
}
.clear
{
	clear: both;
}
.clearfix::before, .clearfix::after
{
	content: "";
	display: table;
}
.clearfix::after
{
	clear: both;
}
.clearfix
{
	zoom: 1;
}
.float_left
{
	float: left;
}
.float_right
{
	float: right;
}
.trans_200
{
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.trans_300
{
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.trans_400
{
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}
.trans_500
{
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.fill_height
{
	height: 100%;
}
.super_container
{
	width: 100%;
	overflow: hidden;
}

/*********************************
3. Home
*********************************/

.header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #FFFFFF;
	z-index: 10;
}
.top_nav
{
	width: 100%;
	height: 50px;
	background: #1e1e27;
}
.top_nav_left
{
	height: 50px;
	line-height: 50px;
	font-size: 13px;
	color: #b5aec4;
	text-transform: uppercase;
}

/*********************************
3.1 Currency
*********************************/

.currency
{
	display: inline-block;
	position: relative;
	min-width: 50px;
	border-right: solid 1px #33333b;
	padding-right: 20px;
	padding-left: 20px;
	text-align: center;
	vertical-align: middle;
	background: #1e1e27;
}
.currency > a
{
	display: block;
	color: #b5aec4;
	font-weight: 400;
	height: 50px;
	line-height: 50px;
	font-size: 13px;
	text-transform: uppercase;
}
.currency > a > i
{
	margin-left: 8px;
}
.currency:hover .currency_selection
{
	visibility: visible;
	opacity: 1;
	top: 100%;
}
.currency_selection
{
	display: block;
	position: absolute;
	right: 0;
	top: 120%;
	margin: 0;
	width: 100%;
	background: #FFFFFF;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: all 0.3s ease;
}
.currency_selection li
{
	padding-left: 10px;
	padding-right: 10px;
	line-height: 50px;
}
.currency_selection li a
{
	display: block;
	color: #232530;
	border-bottom: solid 1px #dddddd;
	font-size: 13px;
	text-transform: uppercase;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: all 0.3s ease;
}
.currency_selection li a:hover
{
	color: #b5aec4;
}
.currency_selection li:last-child a
{
	border-bottom: none;
}

/*********************************
3.2 Language
*********************************/

.language
{
	display: inline-block;
	position: relative;
	min-width: 50px;
	border-right: solid 1px #33333b;
	padding-right: 20px;
	padding-left: 20px;
	text-align: center;
	vertical-align: middle;
	background: #1e1e27;
}
.language > a
{
	display: block;
	color: #b5aec4;
	font-weight: 400;
	height: 50px;
	line-height: 50px;
	font-size: 13px;
}
.language > a > i
{
	margin-left: 8px;
}
.language:hover .language_selection
{
	visibility: visible;
	opacity: 1;
	top: 100%;
}
.language_selection
{
	display: block;
	position: absolute;
	right: 0;
	top: 120%;
	margin: 0;
	width: 100%;
	background: #FFFFFF;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: all 0.3s ease;
}
.language_selection li
{
	padding-left: 10px;
	padding-right: 10px;
	line-height: 50px;
}
.language_selection li a
{
	display: block;
	color: #232530;
	border-bottom: solid 1px #dddddd;
	font-size: 13px;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: all 0.3s ease;
}
.language_selection li a:hover
{
	color: #b5aec4;
}
.language_selection li:last-child a
{
	border-bottom: none;
}

/*********************************
3.3 Account
*********************************/

.account
{
	display: inline-block;
	position: relative;
	min-width: 50px;
	padding-left: 20px;
	text-align: center;
	vertical-align: middle;
	background: #1e1e27;
}
.account > a
{
	display: block;
	color: #b5aec4;
	font-weight: 400;
	height: 50px;
	line-height: 50px;
	font-size: 13px;
}
.account > a > i
{
	margin-left: 8px;
}
.account:hover .account_selection
{
	visibility: visible;
	opacity: 1;
	top: 100%;
}
.account_selection
{
	display: block;
	position: absolute;
	right: 0;
	top: 120%;
	margin: 0;
	width: 100%;
	background: #FFFFFF;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: all 0.3s ease;
}
.account_selection li
{
	padding-left: 10px;
	padding-right: 10px;
	line-height: 50px;
}
.account_selection li a
{
	display: block;
	color: #232530;
	border-bottom: solid 1px #dddddd;
	font-size: 14px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.account_selection li a:hover
{
	color: #b5aec4;
}
.account_selection li:last-child a
{
	border-bottom: none;
}
.account_selection li a i
{
	margin-right: 10px;
}

/*********************************
3.4 Main Navigation
*********************************/

.main_nav_container
{
	width: 100%;
	background: #FFFFFF;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
}
.navbar
{
	width: auto;
	height: 100px;
	float: right;
	padding-left: 0px;
	padding-right: 0px;
}
.navbar_menu li
{
	display: inline-block;
}
.navbar_menu li a
{
	display: block;
	color: #1e1e27;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 20px;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
.navbar_menu li a:hover
{
	color: #b5aec4;
}
.navbar_user
{
	margin-left: 37px;
}
.navbar_user li
{
	display: inline-block;
	text-align: center;
}
.navbar_user li a
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 40px;
	height: 40px;
	color: #1e1e27;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
.navbar_user li a:hover
{
	color: #b5aec4;
}
.checkout a
{
	background: #eceff6;
	border-radius: 50%;
}
.checkout_items
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -9px;
	left: 22px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fe4c50;
	font-size: 12px;
	color: #FFFFFF;
}

/*********************************
3.5 Hamburger Menu
*********************************/

.hamburger_container
{
	display: none;
	margin-left: 40px;
}
.hamburger_container i
{
	font-size: 24px;
	color: #1e1e27;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.hamburger_container:hover i
{
	color: #b5aec4;
}
.hamburger_menu
{
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: rgba(255,255,255,0.95);
	z-index: 10;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.hamburger_menu.active
{
	right: 0;
}
.fs_menu_overlay
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9;
	background: rgba(255,255,255,0);
	pointer-events: none;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.hamburger_close
{
	position: absolute;
	top: 26px;
	right: 10px;
	padding: 10px;
	z-index: 1;
}
.hamburger_close i
{
	font-size: 24px;
	color: #1e1e27;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.hamburger_close:hover i
{
	color: #b5aec4;
}
.hamburger_menu_content
{
	padding-top: 100px;
	width: 100%;
	height: 100%;
	padding-right: 20px;
}
.menu_item
{
	display: block;
	position: relative;
	border-bottom: solid 1px #b5aec4;
	vertical-align: middle;
}
.menu_item > a
{
	display: block;
	color: #1e1e27;
	font-weight: 500;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	text-transform: uppercase;
}
.menu_item > a:hover
{
	color: #b5aec4;
}
.menu_item > a > i
{
	margin-left: 8px;
}
.menu_item.active .menu_selection
{
	display: block;
	visibility: visible;
	opacity: 1;
}
.menu_selection
{
	margin: 0;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	z-index: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.menu_selection li
{
	padding-left: 10px;
	padding-right: 10px;
	line-height: 50px;
}
.menu_selection li a
{
	display: block;
	color: #232530;
	border-bottom: solid 1px #dddddd;
	font-size: 13px;
	text-transform: uppercase;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: all 0.3s ease;
}
.menu_selection li a:hover
{
	color: #b5aec4;
}
.menu_selection li:last-child a
{
	border-bottom: none;
}

/*********************************
3.6 Logo
*********************************/

.logo_container
{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 15px;
}
.logo_container a
{
	font-size: 24px;
	color: #1e1e27;
	font-weight: 700;
	text-transform: uppercase;
}
.logo_container a span
{
	color: #fe4c50;
}

/*********************************
3.7 Main Slider
*********************************/

.main_slider
{
	width: 100%;
	height: 700px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-top: 100px;
}
.main_slider_content
{
	width: 60%;
}
.main_slider_content h6
{
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 29px;
}
.main_slider_content h1
{
	font-weight: 400;
	line-height: 1;
}
.red_button
{
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 40px;
	background: #fe4c50;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.red_button:hover
{
	background: #FE7C7F !important;
}
.red_button a
{
	display: block;
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	line-height: 40px;
	width: 100%;
}
.shop_now_button
{
	width: 140px;
	margin-top: 32px;
}

/*********************************
4. Banner
*********************************/

.banner
{
	width: 100%;
	margin-top: 30px;
}
.banner_item
{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 265px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.banner_category
{
	height: 50px;
	background: #FFFFFF;
	min-width: 180px;
	padding-left: 25px;
	padding-right: 25px;
}
.banner_category a
{
	display: block;
	color: #1e1e27;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	line-height: 50px;
	width: 100%;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
.banner_category a:hover
{
	color: #b5aec4;
}

/*********************************
5. New Arrivals
*********************************/

.new_arrivals
{
	width: 100%;
}
.new_arrivals_title
{
	margin-top: 74px;
}

/*********************************
5.1 New Arrivals Sorting
*********************************/

.new_arrivals_sorting
{
	display: inline-block;
	border-radius: 3px;
	margin-top: 59px;
	overflow: visible;
}
.grid_sorting_button
{
	height: 40px;
	min-width: 102px;
	padding-left: 25px;
	padding-right: 25px;
	cursor: pointer;
	border: solid 1px #ebebeb;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	background: #FFFFFF;
	border-radius: 3px;
	margin: 0;
	float: left;
	margin-left: -1px;
}
.grid_sorting_button:first-child
{
	margin-left: 0px;
}
.grid_sorting_button:last-child
{

}
.grid_sorting_button.active:hover
{
	background: #FE7C7F !important;
}
.grid_sorting_button.active
{
	color: #FFFFFF;
	background: #fe4c50;
}

/*********************************
5.2 New Arrivals Products Grid
*********************************/

.product-grid
{
	width: 100%;
	margin-top: 57px;
}
.product-item
{
	width: 20%;
	height: 380px;
	cursor: pointer;
}
.product-item::after
{
	display: block;
	position: absolute;
	top: 0;
	left: -1px;
	width: calc(100% + 1px);
	height: 100%;
	pointer-events: none;
	content: '';
	border: solid 2px rgba(235,235,235,0);
	border-radius: 3px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.product-item:hover::after
{
	box-shadow: 0 25px 29px rgba(63, 78, 100, 0.15);
	border: solid 2px rgba(235,235,235,1);
}
.product
{
	width: 100%;
	height: 340px;
	border-right: solid 1px #e9e9e9;
}
.product_image
{
	width: 100%;
	height: 185px;
}
.product_image img
{
	width: 100%;
	height: 185px;
}
.product_info
{
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
}
.product_name
{
	margin-top: 27px;
}
.product_name a
{
	color: #1e1e27;
	line-height: 20px;
}
.product_name:hover a
{
	color: #b5aec4;
}
.discount .product_info .product_price
{
	font-size: 14px;
}
.product_price
{
	font-size: 16px;
	color: #fe4c50;
	font-weight: 600;
}
.product_price span
{
	font-size: 12px;
	margin-left: 10px;
	color: #b5aec4;
	text-decoration: line-through;
}
.product_bubble
{
	position: absolute;
	top: 15px;
	width: 50px;
	height: 22px;
	border-radius: 3px;
	text-transform: uppercase;
}
.product_bubble span
{
	font-size: 12px;
	font-weight: 600;
	color: #FFFFFF;
}
.product_bubble_right::after
{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: 6px;
	right: auto;
	top: auto;
	bottom: -6px;
	border: 6px solid;
}
.product_bubble_left::after
{
	content: ' ';
	position: absolute;
	width: 0;
	height: 0;
	left: auto;
	right: 6px;
	bottom: -6px;
	border: 6px solid;
}
.product_bubble_red::after
{
	border-color: transparent transparent transparent #fe4c50;
}
.product_bubble_left::after
{
	border-color: #51a042 #51a042 transparent transparent;
}
.product_bubble_red
{
	background: #fe4c50;
}
.product_bubble_green
{
	background: #51a042;
}
.product_bubble_left
{
	left: 15px;
}
.product_bubble_right
{
	right: 15px;
}
.add_to_cart_button
{
	width: 100%;
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.add_to_cart_button a
{
	font-size: 12px;
	font-weight: 600;
}
.product-item:hover .add_to_cart_button
{
	visibility: visible;
	opacity: 1;
}
.favorite
{
	position: absolute;
	top: 15px;
	right: 15px;
	color: #b9b4c7;
	width: 17px;
	height: 17px;
	visibility: hidden;
	opacity: 0;
}
.favorite_left
{
	left: 15px;
}
.favorite.active
{
	visibility: visible;
	opacity: 1;
}
.product-item:hover .favorite
{
	visibility: visible;
	opacity: 1;
}
.favorite.active::after
{
	font-family: 'FontAwesome';
	content:'\f004';
	color: #fe4c50;
}
.favorite::after
{
	font-family: 'FontAwesome';
	content:'\f08a';
}
.favorite:hover::after
{
	color: #fe4c50;
}

/*********************************
6. Deal of the week
*********************************/

.deal_ofthe_week
{
	width: 100%;
	margin-top: 41px;
	background: #f2f2f2;
}
.deal_ofthe_week_img
{
	height: 540px;
}
.deal_ofthe_week_img img
{
	height: 100%;
}
.deal_ofthe_week_content
{
	height: 100%;
}
.section_title
{
	display: inline-block;
	text-align: center;
}
.section_title h2
{
	display: inline-block;
}
.section_title::after
{
	display: block;
	position: absolute;
	top: calc(100% + 13px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 60px;
	height: 5px;
	background: #fe4c50;
	content: '';
}
.timer
{
	margin-top: 66px;
}
.timer li
{
	display: inline-block;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-right: 10px;
}
.timer li:last-child
{
	margin-right: 0px;
}
.timer_num
{
	font-size: 48px;
	font-weight: 600;
	color: #fe4c50;
	margin-top: 10px;
}
.timer_unit
{
	margin-top: 12px;
	font-size: 16px;
	font-weight: 500;
	color: #51545f;
}
.deal_ofthe_week_button
{
	width: 140px;
	background: #1e1e27;
	margin-top: 52px;
}
.deal_ofthe_week_button:hover
{
	background: #2b2b34 !important;
}

/*********************************
7. Best Sellers
*********************************/

.product_slider_container
{
	width: 100%;
	height: 340px;
	margin-top: 73px;
}
.product_slider_container::after
{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #FFFFFF;
	content: '';
	z-index: 1;
}
.product_slider
{
	overflow: visible !important;
}
.product_slider_item .product-item
{
	height: 340px;
}
.product_slider_item
{
	width: 20%;
}
.product_slider_item .product-item
{
	width: 100% !important;
}

/*********************************
7.1 Slider Nav
*********************************/

.product_slider_nav
{
	position: absolute;
	width: 30px;
	height: 70px;
	background: #d3d3d6;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.product_slider_container:hover .product_slider_nav
{
	visibility: visible;
	opacity: 1;
}
.product_slider_nav i
{
	color: #FFFFFF;
	font-size: 12px;
}
.product_slider_nav_left
{
	top: 50%;
	left: 0;
}
.product_slider_nav_right
{
	top: 50%;
	right: 0;
}

/*********************************
8. Benefit
*********************************/

.benefit
{
	margin-top: 74px;
}
.benefit_row
{
	padding-left: 15px;
	padding-right: 15px;
}
.benefit_col
{
	padding-left: 0px;
	padding-right: 0px;
}
.benefit_item
{
	height: 100px;
	background: #f3f3f3;
	border-right: solid 1px #FFFFFF;
	padding-left: 25px;
}
.benefit_col:last-child .benefit_item
{
	border-right: none;
}
.benefit_icon i
{
	font-size: 30px;
	color: #fe4c50;
}
.benefit_content
{
	padding-left: 22px;
}
.benefit_content h6
{
	text-transform: uppercase;
	line-height: 18px;
	font-weight: 500;
	margin-bottom: 0px;
}
.benefit_content p
{
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 0px;
	color: #51545f;
}

/*********************************
9. Blogs
*********************************/

.blogs
{
	margin-top: 72px;
}
.blogs_container
{
	margin-top: 53px;
}
.blog_item
{
	height: 255px;
	width: 100%;
}
.blog_background
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.blog_content
{
	position: absolute;
	top: 30px;
	left: 30px;
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	background: rgba(255,255,255,0.9);
	padding-left: 10px;
	padding-right: 10px;
	visibility: hidden;
	opacity: 0;
	transform-origin: center center;
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	-o-transform: scale(0.7);
	transform: scale(0.7);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.blog_item:hover .blog_content
{
	visibility: visible;
	opacity: 1;
	transform: scale(1);
}
.blog_title
{
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 0px;
}
.blog_meta
{
	font-size: 12px;
	line-height: 30px;
	font-weight: 400;
	text-transform: uppercase;
	color: #51545f;
	margin-bottom: 0px;
	margin-top: 3px;
	letter-spacing: 1px;
}
.blog_more
{
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	color: #fe4c50;
	border-bottom: solid 1px #fe4c50;
	margin-top: 12px;
}
.blog_more:hover
{
	color: #FE7C7F;
}

/*********************************
10. Newsletter
*********************************/

.newsletter
{
	width: 100%;
	background: #f2f2f2;
	margin-top: 81px;
}
.newsletter_text
{
	height: 120px;
}
.newsletter_text h4
{
	margin-bottom: 0px;
	line-height: 24px;
}
.newsletter_text p
{
	margin-bottom: 0px;
	line-height: 1.7;
	color: #51545f;
}
.newsletter_form
{
	height: 120px;
}
#newsletter_email
{
	width: 300px;
	height: 46px;
	background: #FFFFFF;
	border: none;
	padding-left: 20px;
}
#newsletter_email:focus
{
	border: solid 1px #7f7f7f !important;
	box-shadow: none !important;
}
:focus
{
	outline: none !important;
}
#newsletter_email::-webkit-input-placeholder
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
#newsletter_email:-moz-placeholder /* older Firefox*/
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
#newsletter_email::-moz-placeholder /* Firefox 19+ */
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
#newsletter_email:-ms-input-placeholder
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
#newsletter_email::input-placeholder
{
	font-size: 14px !important;
	font-weight: 400;
	color: #b9b4c7 !important;
}
.newsletter_submit_btn
{
	width: 160px;
	height: 46px;
	border: none;
	background: #fe4c50;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	cursor: pointer;
}
.newsletter_submit_btn:hover
{
	background: #FE7C7F;
}

/*********************************
11. Footer
*********************************/

.footer_nav_container
{
	height: 130px;
}
.cr
{
	margin-right: 48px;
}
.footer_nav li
{
	display: inline-block;
	margin-right: 45px;
}
.footer_nav li:last-child
{
	margin-right: 0px;
}
.footer_nav li a, .cr
{
	font-size: 14px;
	color: #51545f;
	line-height: 30px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.footer_nav li a:hover, .cr a, .cr i
{
	color: #fe4c50;
}
.footer_social
{
	height: 130px;
}
.footer_social ul li
{
	display: inline-block;
	margin-right: 10px;
}
.footer_social ul li:last-child
{
	margin-right: 0px;
}
.footer_social ul li a
{
	color: #51545f;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	padding: 10px;
}
.footer_social ul li:last-child a
{
	padding-right: 0px;
}
.footer_social ul li a:hover
{
	color: #fe4c50;
}


/* Estilos inline para asegurar visualización inmediata. 
       Idealmente mover a tu archivo .css principal */
    .main-footer {
        background-color: #1e2125; /* Fondo oscuro moderno (Dark Gray) */
        color: #adb5bd; /* Texto gris suave para reducir fatiga visual */
        padding: 20px 0;
        font-size: 0.9rem;
        border-top: 3px solid #007bff; /* Línea de acento (puedes cambiar el color a tu marca) */
    }
    .main-footer a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .main-footer a:hover {
        color: #007bff; /* Color hover */
    }
    .developer-badge {
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    .developer-badge i {
        color: #dc3545; /* Corazón o icono en rojo */
        margin: 0 3px;
    }