/* ==========================================================
   HUANCA HOME — PRODUCT CARDS ONLY
   Keeps the homepage light without loading the full Woo stylesheet.
   ========================================================== */
.huanca-home-new .woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.huanca-home-new .woocommerce ul.products::before,
.huanca-home-new .woocommerce ul.products::after { display: none; }
.huanca-home-new .woocommerce ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0;
}
.huanca-home-new .huanca-product-card {
    height: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e8e9;
    border-radius: 9px;
    background: #fff;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}
.huanca-home-new .huanca-product-card:hover {
    border-color: #95c233;
    box-shadow: 0 8px 24px rgba(46,70,32,.07);
    transform: translateY(-1px);
}
.huanca-home-new .huanca-product-card__media { position: relative; }
.huanca-home-new .huanca-product-card__image-link {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 7px;
    background: #fff;
}
.huanca-home-new .huanca-product-card__image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .22s, transform .28s;
}
.huanca-home-new .huanca-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    object-fit: contain;
}
.huanca-home-new .huanca-product-card__image--secondary { opacity: 0; }
.huanca-home-new .huanca-product-card:hover .huanca-product-card__image--secondary { opacity: 1; }
.huanca-home-new .huanca-product-card:hover .huanca-product-card__image--primary:has(+ .huanca-product-card__image--secondary) { opacity: 0; }
.huanca-home-new .huanca-sale-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    padding: 5px 8px;
    border-radius: 5px;
    background: #fde5ea;
    color: #bd2545;
    font-size: 10px;
    font-weight: 800;
}
.huanca-home-new .huanca-product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}
.huanca-home-new .huanca-product-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 17px;
    color: #717d88;
    font-size: 10px;
}
/* Pure CSS stars, so WooCommerce's icon font/CSS is not required on home. */
.huanca-home-new .star-rating {
    position: relative;
    width: 5.2em;
    height: 1em;
    display: inline-block;
    overflow: hidden;
    margin: 0;
    color: #d9ddd8;
    font-size: 11px;
    line-height: 1;
    letter-spacing: .04em;
}
.huanca-home-new .star-rating::before {
    content: "★★★★★";
    position: absolute;
    inset: 0 auto auto 0;
    white-space: nowrap;
}
.huanca-home-new .star-rating span {
    position: absolute;
    inset: 0 auto auto 0;
    height: 1em;
    overflow: hidden;
    color: #f59e0b;
    font-size: 0;
    white-space: nowrap;
}
.huanca-home-new .star-rating span::before {
    content: "★★★★★";
    display: block;
    font-size: 11px;
    line-height: 1;
    letter-spacing: .04em;
}
.huanca-home-new .woocommerce-loop-product__title {
    min-height: 39px;
    margin: 5px 0 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: 650;
    line-height: 1.35;
}
.huanca-home-new .huanca-product-card__title a { text-decoration: none; }
.huanca-home-new .huanca-product-card__price {
    margin-top: 8px;
    color: #4b8327;
    font-size: 16px;
    font-weight: 800;
}
.huanca-home-new .huanca-product-card__price del {
    margin-right: 5px;
    color: #a2a7ac;
    font-size: 12px;
    font-weight: 500;
}
.huanca-home-new .huanca-product-card__price ins { text-decoration: none; }
.huanca-home-new .huanca-product-card__cart {
    margin-top: auto;
    padding-top: 11px;
}
.huanca-home-new .huanca-product-card__cart .button,
.huanca-home-new .huanca-product-card__cart .added_to_cart {
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #edf6e4;
    color: #518625;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: .15s;
}
.huanca-home-new .huanca-product-card__cart .button:hover { background: #78ad36; color: #fff; }
.huanca-home-new .huanca-product-card__cart .added_to_cart {
    margin-top: 5px;
    background: #315f26;
    color: #fff;
}

@media (max-width: 1024px) {
    .huanca-home-new .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .huanca-home-new .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }
    .huanca-home-new .huanca-product-card {
        padding: 8px;
        border-color: #eef0f1;
    }
    .huanca-home-new .huanca-product-card:hover { transform: none; box-shadow: none; }
    .huanca-home-new .woocommerce-loop-product__title { min-height: 37px; font-size: 12px !important; }
    .huanca-home-new .huanca-product-card__price { font-size: 14px; }
    .huanca-home-new .huanca-product-card__cart { padding-top: 8px; }
    .huanca-home-new .huanca-product-card__cart .button { min-height: 36px; font-size: 10px; }
}


/* ==========================================================
   HUANCA HOME 1.0.19 · LEGIBILIDAD + CARGA LIGERA
   La portada usa una sola imagen por producto desde PHP.
   ========================================================== */
.huanca-home-new .huanca-product-card__rating{
    font-size:11px;
}
.huanca-home-new .woocommerce-loop-product__title{
    font-weight:600;
}
.huanca-home-new .huanca-product-card__price{
    font-weight:750;
}
.huanca-home-new .huanca-product-card__cart .button,
.huanca-home-new .huanca-product-card__cart .added_to_cart{
    font-size:12.5px;
    font-weight:700;
}
@media (max-width:767px){
    .huanca-home-new .huanca-product-card{
        padding:9px;
    }
    .huanca-home-new .woocommerce-loop-product__title{
        min-height:39px;
        font-size:13px!important;
        font-weight:600;
        line-height:1.34;
    }
    .huanca-home-new .huanca-product-card__rating{
        font-size:10.5px;
    }
    .huanca-home-new .huanca-product-card__price{
        font-size:15px;
    }
    .huanca-home-new .huanca-product-card__cart .button,
    .huanca-home-new .huanca-product-card__cart .added_to_cart{
        min-height:38px;
        font-size:11.5px;
    }
}
