.catalog-card {

    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.catalog-card:hover {
    transform: translateY(-5px);
}

.catalog-image {
    width: 100%;
    height: 220px; /* altura fija uniforme */
    overflow: hidden;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* recorta sin deformar */
    transition: transform 0.4s ease;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.05);
}

.catalog-body {
    padding: 20px;
}

.catalog-price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.catalog-short {
    font-size: 14px;
    margin-bottom: 12px;
}

.catalog-filters .btn {
    margin: 5px;
    border-radius: 20px;
}

/* DARK */

.catalog-dark {
    background: #111;
    color: #fff;
}

.catalog-dark .catalog-card {
    background: #1e1e1e;
    box-shadow: none;
}

.catalog-dark .modal-content {
    background: #1e1e1e;
    color: #fff;
}

/* SOFT */

.catalog-soft {
    background: #f8f9fa;
}