/* FUENTES Y BASE */
:root {
    --primary: #306ee8;
    --secondary: #7c3aed;
    --bg-light: #fcfcfd;
    --bg-dark: #0f172a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-light); color: #1e293b; line-height: 1.5; }
.dark body { background-color: var(--bg-dark); color: #f1f5f9; }

/* TIPOGRAFÍAS */
.font-display { font-family: 'Playfair Display', serif; }

/* COMPONENTES OPTIMIZADOS */
nav { position: fixed; top: 1rem; left: 0; right: 0; z-index: 50; padding: 0 1rem; }
.nav-container { 
    max-width: 72rem; margin: 0 auto; height: 4rem; padding: 0 1.25rem; 
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.5); border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.dark .nav-container { background: rgba(15, 23, 42, 0.9); border-color: rgba(51, 65, 85, 0.5); }

.btn-primary { 
    background-color: var(--primary); color: white; padding: 0.5rem 1.25rem; 
    border-radius: 0.75rem; font-weight: 700; text-decoration: none; 
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background-color: #2563eb; transform: translateY(-1px); box-shadow: 0 10px 15px -3px rgba(48, 110, 232, 0.3); }

/* GRID DE PRODUCTOS */
.product-grid { 
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; 
}
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(5, 1fr); } }

.product-card { cursor: pointer; group: hover; }
.product-img-wrapper { 
    position: relative; aspect-ratio: 4/5; border-radius: 1rem; 
    overflow: hidden; background: white; margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1); transition: all 0.3s;
}
.product-card:hover .product-img-wrapper { transform: scale(1.02); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.product-img { width: 100%; height: 100%; object-fit: cover; }

.badge { 
    position: absolute; top: 0.5rem; left: 0.5rem; padding: 0.125rem 0.5rem;
    border-radius: 9999px; font-size: 8px; font-weight: 700; color: white; text-transform: uppercase;
}

/* UTILIDADES RÁPIDAS (Tailwind extraído) */
.max-w-7xl { max-width: 80rem; margin: 0 auto; }
.text-transparent { color: transparent; background-clip: text; -webkit-background-clip: text; }
.bg-gradient { background-image: linear-gradient(to right, var(--primary), var(--secondary)); }
.dark .text-slate-400 { color: #94a3b8; }
.text-sm { font-size: 0.875rem; }
.font-bold { font-weight: 700; }