/*
 Theme Name:   Hello Biz Child
 Theme URI:    https://hannachile.cl
 Description:  Child theme de Hello Biz con miniaturas de producto personalizadas
 Author:       Hanna Chile
 Template:     hello-biz
 Version:      1.0.0
 Text Domain:  hello-biz-child
*/

/* ===================================================
   MINIATURAS DE PRODUCTO PERSONALIZADAS - HANNA CHILE
   =================================================== */

/* Tarjeta base */
.hanna-product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.hanna-product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

/* Imagen */
.hanna-product-card .hanna-product-image {
    display: block;
    width: 100%;
    text-decoration: none;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.hanna-product-card .hanna-product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    padding: 12px;
}

/* Info section */
.hanna-product-card .hanna-product-info {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

/* SKU */
.hanna-product-card .hanna-product-sku {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    line-height: 1.4;
}

/* Nombre del producto */
.hanna-product-card .hanna-product-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    text-decoration: none;
    display: block;
}

.hanna-product-card .hanna-product-name:hover {
    color: #0073aa;
}

/* Excerpt */
.hanna-product-card .hanna-product-excerpt {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hanna-product-card .hanna-product-excerpt p {
    margin: 0;
}

/* Precio */
.hanna-product-card .hanna-product-price {
    margin-top: 4px;
}

.hanna-product-card .hanna-product-price .price {
    font-size: 18px;
    font-weight: 700;
    color: #cc1111;
    display: block;
}

.hanna-product-card .hanna-product-price .price ins {
    text-decoration: none;
    font-weight: 700;
    color: #cc1111;
}

.hanna-product-card .hanna-product-price .price del {
    font-size: 13px;
    color: #aaa;
    font-weight: 400;
}

/* Badge "A cotizar" */
.hanna-product-card .hanna-cotizar-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 6px 16px;
    border: 1.5px solid #e00;
    border-radius: 20px;
    color: #e00;
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    line-height: 1;
    width: fit-content;
}
