/* Tarjetas de productos — muebles.blade.php & detallemuebles.blade.php */

.mueble-product-card {
    margin-bottom: 30px;
}

.mueble-product-card__link {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

.mueble-product-card__link:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.mueble-product-card__image {
    background: #fff;
    line-height: 0;
    overflow: hidden;
    padding: 0;
}

.mueble-product-card__image img {
    display: block;
    margin: 0 auto;
    object-fit: contain;
    width: 100%;
}

.mueble-product-card__footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 18px 22px 22px;
}

.mueble-product-card__title {
    color: #0066f7;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.mueble-product-card__arrow {
    color: #1a1a1a;
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1;
    margin-left: 16px;
}

@media only screen and (max-width: 767px) {
    .mueble-product-card__title {
        font-size: 18px;
    }
}
