/* =========================
   HERO
========================= */

.home-hero {
    background: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.home-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.home-hero p {
    font-size: 18px;
    margin-top: 10px;
}


/* =========================
   BOTONES CATEGORÍAS
========================= */

.home-categories {
    padding: 40px 0;
    text-align: center;
}

.cat-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-cat {
    background: #c9a46c;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-cat:hover {
    background: #005f8f;
}


/* =========================
   PRODUCTOS
========================= */

.home-featured {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 600;
}

#index .product-miniature {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    transition: 0.3s ease;
}

#index .product-miniature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}


/* =========================
   BLOQUE INFO
========================= */

.home-info {
    padding: 60px 0;
    background: #f9f9f9;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.info-box span {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.info-box h4 {
    font-weight: 600;
    margin-bottom: 5px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .home-hero h1 {
        font-size: 28px;
    }
}
