/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* === Miniaturas de productos personalizados === */
.custom-woodmart-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.custom-woodmart-card:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.custom-woodmart-card .product-thumbnail {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
}

.custom-woodmart-card .product-thumbnail img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.custom-woodmart-card .product-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    min-height: 42px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.promo-label {
    display: block;
    font-size: 13px;
    color: red;
    font-weight: 500;
    margin-bottom: 6px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.discount-badge {
    background-color: #c00;
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 5px;
    font-weight: 600;
}

.sale-price {
    color: red;
}

.regular-price {
    color: #222;
}

.product-button .button {
    background-color: #b0b0b0 !important;
    color: #000000 !important;
    font-weight: 400;
    font-size: 13px;
    padding: 4px 9px;
    border-radius: 4px;
    text-transform:  none;
    transition: background-color 0.3s ease;
    min-height: auto !important;
}


.product-button .button:hover {
    background-color: #000 !important;
}
