/* ============================================================
   TEMA: MINIMALISTA - CON EFECTOS (SUTILES)
   ============================================================ */

:root {
    --color-primario: #222222;
    --color-secundario: #222222;
    --color-acento: #000000;
    --color-fondo: #ffffff;
    --color-texto: #222222;
    --color-blanco: #ffffff;
    --color-gris: #999999;
    --sombra: 0 4px 15px rgba(0,0,0,0.05);
    --radio: 0px;
}

/* ============================================================
   EFECTOS PROPIOS DEL TEMA (SUTILES)
   ============================================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.stagger-item:nth-child(1) { transition-delay: 0.05s; }
.stagger-item:nth-child(2) { transition-delay: 0.10s; }
.stagger-item:nth-child(3) { transition-delay: 0.15s; }
.stagger-item:nth-child(4) { transition-delay: 0.20s; }
.stagger-item:nth-child(5) { transition-delay: 0.25s; }
.stagger-item:nth-child(6) { transition-delay: 0.30s; }

.card-producto:hover,
.card-novedad:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08) !important;
}

.btn:hover {
    transform: translateY(-2px) !important;
}

.hero h1 {
    animation: heroEntrada 1s ease forwards;
}
.hero p {
    animation: heroEntrada 1s ease 0.2s forwards;
    opacity: 0;
}
.hero .btn-group {
    animation: heroEntrada 1s ease 0.4s forwards;
    opacity: 0;
}
@keyframes heroEntrada {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}