/* Estilos para páginas de categorías - Basados en Products.png */

/* Colores del sistema de diseño */
:root {
    --color-white: #f9f8f7;
    --color-gray-light: #cad6df;
    --color-blue: #0047AB;
    --color-red: #f5ccd1;
    --color-red-dark: #dc2626;
}

/* Header/Navbar Styles */
.top-navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 75px;
    width: auto;
    transition: transform 0.2s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--color-blue);
    background: rgba(0, 71, 171, 0.1);
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    flex: 1;
    max-width: 300px;
    margin: 0 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-box:focus-within {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 4px rgba(0, 71, 171, 0.1), 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
    transform: translateY(-1px);
}

.search-icon {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.search-box form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    position: relative;
    gap: 0.5rem;
}

.search-box button {
    background: var(--color-blue);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
    line-height: 1;
    vertical-align: middle;
}

.search-box button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

.search-box button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 71, 171, 0.3);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: #1f2937;
    font-weight: 500;
    padding: 0.5rem 0;
    line-height: 1.5;
    vertical-align: middle;
}

.search-box input::placeholder {
    color: #9ca3af;
    font-weight: 400;
    transition: color 0.2s ease;
}

.search-box:focus-within input::placeholder {
    color: #6b7280;
}

.nav-help {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    margin-right: 1rem;
    transition: color 0.2s ease;
}

.nav-help:hover {
    color: var(--color-blue);
}

/* NAVBAR ICONS - Solo lo esencial */
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* COMENTADO: Estos estilos interfieren con el icono de usuario
.navbar-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.navbar-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}
*/

/* Cart Counter Styles for Navbar */
.cart-counter {
    position: relative;
    display: inline-block;
}

.cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: 24px;
    height: 24px;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    animation: pulse 2s infinite;
}

.cart-badge.hidden {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.cart-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    background: var(--color-white);
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

/* Override para banners con fondo oscuro */
.section-banner .hero-title,
.electronics-hero .hero-title {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

/* Override para banners con fondo oscuro */
.section-banner .hero-subtitle,
.electronics-hero .hero-description {
    color: white !important;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-products-circle {
    background: #dbeafe;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-products-inner {
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-products-inner img {
    transition: transform 0.2s ease-in-out;
}

.hero-products-inner img:hover {
    transform: scale(1.05);
}

/* Product Cards - Diseño Limpio y Moderno */
.product-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #0047AB;
}

/* Product Link */
.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-link:hover .product-name {
    color: var(--color-blue) !important;
    transform: none !important;
}

.product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    flex-shrink: 0;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.product-card .discount-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #dc2626;
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(220, 38, 38, 0.25);
    z-index: 5;
}

.product-info {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
}

.product-name,
.product-card .product-name,
.product-card h3.product-name {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin: 0 0 0.5rem 0 !important;
    line-height: 1.3 !important;
    max-height: 2.34rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-wrap: break-word !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    text-shadow: none !important;
    z-index: auto !important;
    transform: none !important;
}

.product-description {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    max-height: 2.24rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
}

.product-price {
    margin: auto 0 0 0;
    padding-top: 0.5rem;
    border-top: 1px solid #f1f5f9;
}

.product-price .old-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.current-price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-blue);
    display: block;
    letter-spacing: -0.01em;
}

.product-price .savings {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #047857;
}

/* Product Actions Container */
.product-actions {
    padding: 1rem 1.25rem 1.25rem 1.25rem;
    display: flex;
    justify-content: center;
    background: white;
    border-radius: 0 0 16px 16px;
}

.add-to-cart-btn {
    background: var(--color-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.add-to-cart-btn:hover {
    background: #003580;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.025em;
}

.section-title.liquidation {
    color: var(--color-blue);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title.liquidation svg {
    width: 1.75rem;
    height: 1.75rem;
}

.view-more-btn {
    color: var(--color-blue);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.view-more-btn:hover {
    color: #003d8f;
    background: rgba(0, 71, 171, 0.05);
}

/* Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

/* List View */
.products-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    height: auto;
}

.products-grid.list-view .product-image {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.products-grid.list-view .product-info {
    flex: 1;
    padding: 0;
}

.products-grid.list-view .product-actions {
    margin-left: 1rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

@media (min-width: 1024px) and (max-width: 1279px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Footer */
.footer {
    background-color: #0047AB;
    color: white;
    padding: 20px 40px;
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.footer-nav a {
    color: white;
    margin-right: 20px;
    text-decoration: none;
    font-size: 14px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-social a img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s;
}

.footer-social a:hover img {
    transform: scale(1.1);
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.2s;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.social-link span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .search-box {
        margin: 0 1rem;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .top-navbar {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    .search-box {
        order: 2;
        margin: 0;
        max-width: none;
        flex: 1;
    }
    
    .navbar-icons {
        gap: 0.5rem;
    }
    
    .navbar-icons a {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .top-navbar {
        padding: 0.75rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-links {
        gap: 0.25rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .search-box {
        padding: 0.4rem 0.8rem;
    }
    
    .navbar-icons a {
        width: 32px;
        height: 32px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

/* Container adjustments */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.search-suggestions.show {
    display: block;
}

.search-suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background-color: #f8fafc;
}

.search-suggestion-item.active {
    background-color: #2563eb;
    color: white;
}

.search-suggestion-icon {
    width: 16px;
    height: 16px;
    color: #6b7280;
    flex-shrink: 0;
}

.search-suggestion-item.active .search-suggestion-icon {
    color: white;
}

.search-suggestion-text {
    font-size: 0.875rem;
    font-weight: 400;
}

.search-suggestion-highlight {
    font-weight: 600;
    color: #2563eb;
}

.search-suggestion-item.active .search-suggestion-highlight {
    color: white;
}

/* Arrow indicator for dropdown */
.search-suggestions::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #e5e7eb;
}

.search-suggestions::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
} 

/* ===== ESTILOS PARA FILTROS AVANZADOS ===== */

/* Estilos para filtros avanzados */
.filter-section {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.filter-section:hover {
    border-color: var(--color-blue);
    box-shadow: 0 2px 8px rgba(0, 71, 171, 0.1);
}

.filter-section h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.filter-section h4 svg {
    margin-right: 0.5rem;
    color: var(--color-blue);
    width: 16px;
    height: 16px;
}

/* Estilos para sliders de precio */
.slider {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-blue);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-blue);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider::-moz-range-thumb:hover {
    background: #2563eb;
    transform: scale(1.1);
}

/* Botones de filtro de precio */
.price-filter-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.price-filter-btn:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
    background: #eff6ff;
}

.price-filter-btn.active {
    background: var(--color-blue);
    color: white;
    border-color: var(--color-blue);
}

/* Checkboxes mejorados */
.category-filter,
.status-filter {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 2px solid #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-filter:checked,
.status-filter:checked {
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

/* Labels de filtros */
.filter-section label {
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-section label:hover {
    background: #f9fafb;
    border-radius: 6px;
}

/* Botones de vista */
.view-toggle-btn {
    transition: all 0.3s ease;
    border-radius: 6px;
    cursor: pointer;
}

.view-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.view-toggle-btn.active {
    background: #eff6ff;
    border-color: var(--color-blue);
    color: var(--color-blue);
}

/* Botones de acción */
#apply-filters {
    background: linear-gradient(135deg, var(--color-blue), #2563eb);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

#apply-filters:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

#clear-filters {
    transition: all 0.3s ease;
    cursor: pointer;
}

#clear-filters:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

/* Responsive para filtros */
@media (max-width: 768px) {
    .filter-section {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .price-filter-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .filter-section h4 {
        font-size: 0.8rem;
    }
}

/* Section Banner Styles */
.section-banner {
    background: linear-gradient(135deg, #0047AB 0%, #1e3a8a 100%);
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px; /* Espacio para el navbar fijo */
}

/* Banner específico para Productos para Damas */
.productos-para-damas-banner {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.productos-para-damas-banner::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 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,6 8,4 6,4 C4,4 2,6 2,8 C2,10 4,12 10,16 C16,12 18,10 18,8 C18,6 16,4 14,4 C12,4 10,6 10,6 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

/* Contenido del banner de productos para damas */
.productos-para-damas-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.productos-para-damas-banner .hero-title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.productos-para-damas-banner .hero-description {
    color: white !important;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.productos-para-damas-banner .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.productos-para-damas-banner .stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.banner-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.banner-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.banner-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

/* Colores específicos para Productos para Damas */
.productos-para-damas-banner .stat-number {
    color: #fbbf24 !important;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.productos-para-damas-banner .stat-label {
    color: white !important;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design para Productos para Damas Banner */
@media (max-width: 768px) {
    .productos-para-damas-banner {
        min-height: 300px;
        padding: 1rem;
    }
    
    .productos-para-damas-banner .hero-content {
        padding: 1rem;
    }
    
    .productos-para-damas-banner .hero-title {
        font-size: 2.5rem;
    }
    
    .productos-para-damas-banner .hero-description {
        font-size: 1rem;
    }
    
    .productos-para-damas-banner .hero-stats {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .productos-para-damas-banner .stat-number {
        font-size: 2rem;
    }
    
    .productos-para-damas-banner .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .productos-para-damas-banner {
        min-height: 250px;
        padding: 0.5rem;
    }
    
    .productos-para-damas-banner .hero-content {
        padding: 0.5rem;
    }
    
    .productos-para-damas-banner .hero-title {
        font-size: 2rem;
    }
    
    .productos-para-damas-banner .hero-description {
        font-size: 0.9rem;
    }
    
    .productos-para-damas-banner .hero-stats {
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .productos-para-damas-banner .stat-number {
        font-size: 1.5rem;
    }
    
    .productos-para-damas-banner .stat-label {
        font-size: 0.7rem;
    }
}

/* Banner específico para Herramientas y Maquinarias Ligeras */
.herramientas-y-maquinarias-ligeras-banner,
.section-banner.herramientas-y-maquinarias-ligeras-banner,
[class*="herramientas"] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.herramientas-y-maquinarias-ligeras-banner::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 100 100"><defs><pattern id="diagonal-stripes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,0 L20,20 M-5,5 L15,25 M-10,10 L10,30" stroke="rgba(0,0,0,0.1)" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23diagonal-stripes)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

/* Contenido del banner de herramientas */
.herramientas-y-maquinarias-ligeras-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.herramientas-y-maquinarias-ligeras-banner .hero-title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.herramientas-y-maquinarias-ligeras-banner .hero-description {
    color: white !important;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.herramientas-y-maquinarias-ligeras-banner .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.herramientas-y-maquinarias-ligeras-banner .stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Colores específicos para Herramientas */
.herramientas-y-maquinarias-ligeras-banner .stat-number {
    color: #1f2937 !important;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.herramientas-y-maquinarias-ligeras-banner .stat-label {
    color: white !important;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design for Section Banner */
@media (max-width: 768px) {
    .section-banner {
        height: 300px;
        margin-top: 70px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .banner-stats {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-banner {
        height: 250px;
        margin-top: 60px;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .banner-stats {
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Regla adicional para asegurar que se aplique el color amarillo a herramientas */
.section-banner[class*="herramientas"] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
}

.section-banner[class*="herramientas"] .stat-number {
    color: #1f2937 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3) !important;
}

/* Responsive Design para Herramientas Banner */
@media (max-width: 768px) {
    .herramientas-y-maquinarias-ligeras-banner {
        min-height: 300px;
        padding: 1rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .hero-content {
        padding: 1rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .hero-title {
        font-size: 2.5rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .hero-description {
        font-size: 1rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .hero-stats {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .stat-number {
        font-size: 2rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .herramientas-y-maquinarias-ligeras-banner {
        min-height: 250px;
        padding: 0.5rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .hero-content {
        padding: 0.5rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .hero-title {
        font-size: 2rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .hero-description {
        font-size: 0.9rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .hero-stats {
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .stat-number {
        font-size: 1.5rem;
    }
    
    .herramientas-y-maquinarias-ligeras-banner .stat-label {
        font-size: 0.7rem;
    }
}

/* Banner específico para Movilidad */
.movilidad-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.movilidad-banner::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 100 100"><defs><pattern id="mobility" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="3" fill="rgba(255,255,255,0.1)"/><path d="M5,15 L25,15 M15,5 L15,25" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/><path d="M10,10 L20,20 M20,10 L10,20" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23mobility)"/></svg>') repeat;
    opacity: 0.2;
    z-index: 1;
}

/* Contenido del banner de movilidad */
.movilidad-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.movilidad-banner .hero-title {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.movilidad-banner .hero-description {
    color: white !important;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.movilidad-banner .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.movilidad-banner .stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Colores específicos para Movilidad */
.movilidad-banner .stat-number {
    color: #d1fae5 !important;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.movilidad-banner .stat-label {
    color: white !important;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Regla adicional para asegurar que se aplique el color verde a movilidad */
.section-banner[class*="movilidad"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.section-banner[class*="movilidad"] .stat-number {
    color: #d1fae5 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4) !important;
}

/* Responsive Design para Movilidad Banner */
@media (max-width: 768px) {
    .movilidad-banner {
        min-height: 300px;
        padding: 1rem;
    }
    
    .movilidad-banner .hero-content {
        padding: 1rem;
    }
    
    .movilidad-banner .hero-title {
        font-size: 2.5rem;
    }
    
    .movilidad-banner .hero-description {
        font-size: 1rem;
    }
    
    .movilidad-banner .hero-stats {
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .movilidad-banner .stat-number {
        font-size: 2rem;
    }
    
    .movilidad-banner .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .movilidad-banner {
        min-height: 250px;
        padding: 0.5rem;
    }
    
    .movilidad-banner .hero-content {
        padding: 0.5rem;
    }
    
    .movilidad-banner .hero-title {
        font-size: 2rem;
    }
    
    .movilidad-banner .hero-description {
        font-size: 0.9rem;
    }
    
    .movilidad-banner .hero-stats {
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .movilidad-banner .stat-number {
        font-size: 1.5rem;
    }
    
    .movilidad-banner .stat-label {
        font-size: 0.7rem;
    }
}

/* Estilos específicos para videojuegos */
.videojuegos .product-image {
    background: white;
    border: 1px solid #e5e7eb;
}

.videojuegos .product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.videojuegos .product-card:hover .product-image img {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

/* Main Content Layout Fix */
.main-content {
    flex: 1;
    padding: 2rem;
    background: #fff;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.main-content .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.main-content .section-title {
    font-size: 2.5rem;
    color: #0047AB;
    font-weight: 700;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.main-content .view-more-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #0047AB;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.main-content .view-more-btn:hover {
    background: #003d99;
    transform: translateY(-50%) translateY(-2px);
}

/* Asegurar que el clearance-grid funcione correctamente */
.main-content .clearance-grid {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}