/* Componentes de catálogo: tarjetas compactas y táctiles. */
.product-grid {
    gap: 28px;
}

.product-card {
    background: var(--paper);
    border: 1px solid rgba(221, 206, 192, .9);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.product-card:hover {
    border-color: rgba(200, 125, 98, .55);
    box-shadow: 0 14px 30px rgba(61, 40, 28, .08);
    transform: translateY(-4px);
}

.product-image-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 0;
}

.product-image-wrap img {
    aspect-ratio: 4 / 3;
}

.product-tag {
    border-radius: 999px;
    left: 14px;
    top: 14px;
}

.quick-add {
    bottom: 12px;
    right: 12px;
}

.product-info {
    align-items: flex-start;
    min-height: 112px;
    padding: 17px 17px 18px;
}

.product-info h3 {
    font-size: 20px;
}

.product-info p {
    margin-bottom: 0;
}

.product-info strong {
    color: var(--terracotta);
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    padding-top: 2px;
}

@media (max-width: 700px) {
    .product-grid {
        gap: 20px;
    }

    .product-image-wrap,
    .product-image-wrap img {
        aspect-ratio: 16 / 10;
    }

    .product-info {
        min-height: 102px;
    }
}
