/* --- CATÁLOGO EDOGO --- */

.catalogo-wrapper {
    background: #fff6d9;
    min-height: 80vh;
}

.producto-card {
    background: #f2f2f2;
    border-radius: 25px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 150, 150, 0.25);
    transition: all 0.3s ease;
    border: none;
}

.producto-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.producto-img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.producto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-edogo {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #323232;
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 2;
}

.producto-info {
    padding: 25px;
}

.producto-info h3 {
    font-family: 'BebasNeue', sans-serif, system-ui;
    font-size: 1.5rem;
    color: #323232;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: bold;
}

.precio {
    font-size: 1.1rem;
    color: #323232;
    font-weight: 600;
}

.old {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .producto-img {
        height: 250px;
    }
    .catalogo-wrapper {
        padding: 50px 0;
    }
}
