/* ---------- Productos Destacados ---------- */
.featured {
    padding: 2rem 0;
    background: #ffeaa7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.product-card h3 {
    margin: 0.5rem 1rem;
    font-size: 1.3rem;
}

.price {
    margin: 0 1rem 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b6b;
}

.product-card .btn {
    display: block;
    width: calc(100% - 2rem);
    margin: 0 auto 1rem;
    text-align: center;
}