.asofix-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Card */
.asofix-car {
    background: #111;
    color: #fff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.asofix-car:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* Imagen */
.asofix-car-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Body */
.asofix-car-body {
    padding: 18px;
    flex: 1;
}

.asofix-car-title {
    font-size: 20px;
    margin: 0 0 6px;
}

.asofix-car-version {
    opacity: .7;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Meta */
.asofix-car-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 14px;
}

.asofix-car-meta li {
    margin-bottom: 4px;
}

/* Footer */
.asofix-car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.asofix-car-price {
    font-size: 18px;
    font-weight: bold;
}

/* Botón */
.asofix-car-button {
    background: #000;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .2s ease;
}

.asofix-car-button:hover {
    background: #222;
}

/* Mobile tweaks */
@media (max-width: 480px) {
    .asofix-car-image img {
        height: 180px;
    }
}
