/* Importación de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Oswald:wght@400;700&display=swap');

:root {
    --primary-red: #cc0000;
    --bg-black: #1a1a1a;
    --border-gray: #333;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: white;
    margin: 0;
}

/* Tipografía Global para Títulos e Industrial */
h1, h2, h3, h4, nav a, button, .font-oswald {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.05em;
}

/* Scrollbar Global */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-black); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }

/* Utilidades de Tarjetas de Producto */
.product-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

/* Efectos de Novedades (Tarjetas de Producto) */
.product-card .img-container img {
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-card:hover .img-container img {
    transform: scale(1.12);
}

/* Scrollbar Personalizada */
::-webkit-scrollbar { 
    width: 8px; 
}
::-webkit-scrollbar-track { 
    background: #1a1a1a; 
}
::-webkit-scrollbar-thumb { 
    background: #333; 
    border-radius: 10px; 
}

#mobile-drawer {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pagination-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Estado resaltado cuando se selecciona */
.pagination-btn.active {
    border-color: #ffffff !important;
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.pagination-btn:hover:not(.active) {
    border-color: #666;
    color: #ccc;
}

