/**
 * plp-product-card.css
 * Styles for the PLP product card on shop / category listings.
 * Loaded from the theme; overrides the bare card layout coming from roomvo-plp.
 */

.plp-product-card {
    list-style: none;
    background: transparent;
    text-align: center;
    padding: 0;
    margin: 0;
}

.plp-product-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    line-height: 0;
}

.plp-product-image-link {
    display: block;
}

.plp-product-image,
.plp-product-image-link img {
    display: block;
    width: 100%;
    height: auto;
    transition: all .4s;
}

.plp-product-wishlist {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.plp-product-wishlist:focus {
    outline: 2px solid rgba(0, 0, 0, .15);
    outline-offset: 2px;
}

.plp-product-wishlist svg {
    display: block;
}

.plp-product-brand {
    margin-top: 15px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    text-align: center;
}
.plp-product-title-link{
    margin-top: 8px
}
.plp-product-card .plp-product-title-link,
.plp-product-card .plp-product-title-link:hover,
.plp-product-card .plp-product-title-link:focus {
    display: block;
    text-decoration: none;
}

.plp-product-card .plp-product-title {
    font-style: normal;
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
    text-align: center;
}
.plp-product-card:hover .plp-product-image{
    transform: scale(1.1);
}
.plp-product-colors {
    font-family: 'Montserrat', sans-serif;
    color: rgba(0, 0, 0, 0.35);
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 8px
}
.plp-product-wishlist.active path {
    fill: rgba(227, 53, 5, 1);
    stroke: rgba(227, 53, 5, 1);
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(242, 241, 240, 1);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    margin-right: 10px;
}
.woocommerce .woocommerce-pagination ul.page-numbers, .woocommerce-page .woocommerce-pagination ul.page-numbers {
    text-align: center;
}
.kadence-shop-top-row {
    display: none;
}
@media screen and (min-width: 1025px) {
    .grid-lg-col-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 30px;
        column-gap: 15px;
    }
}

@media screen and (max-width: 1024px) {
    ul.products.grid-cols {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 30px;
        column-gap: 15px;
    }
}