.shop-banner-section {
    padding: 2rem 0 4rem 0;
    background-color: #fff;
}


.page-title {
    margin: 0 0 3rem 0;
    color: #000;
    line-height: 1;
}

.banner-image-wrapper {
    width: 100%;
    border-radius: 4rem;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    max-height: 40.625rem;
}
.banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.shop-page {
    padding: 4rem 0;
}


.shop-layout {
    display: flex;
    gap: 4rem;
}

.shop-sidebar {
    flex: 0 0 25rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 2rem;
    font-weight: 600;
}
.results-count {
    font-size: 1.5rem;
    color: rgba(177, 177, 177, 1);
    font-weight: 400;
    letter-spacing: 0;
}
.filter-group {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.filter-group-header {
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.filter-group-header .arrow::after {
    content: '⌵';
    font-size: 1.2rem;
}

/* Grid Sản phẩm */
.shop-main {
    flex: 1;
}

ul.loriana-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

li.product.wow {
    visibility: hidden; 
}

.product-card-inner {
    background: #fff;
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.25);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.product-card-inner:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    background-color: #f2e1e1;
    border-radius: 1.5rem;
    aspect-ratio: 1 / 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 22.875rem;
}
.product-price-row {
    margin-top: auto;
    text-align: right;
    padding: 1rem 0;
}
.woocommerce-loop-product__title {
    font-size: 1.875rem !important;
   
}
.product-info a {
    text-decoration: none;
}
p.product-short-desc {
    font-size: .938rem;
}
.price {
    font-size: 2.25rem !important;
    font-weight: 600 !important;
    color: #000 !important;
}
p.total-product {
    text-align: center;
    font-size: .938rem;
    color: rgba(126, 126, 126, 1);
    padding-left: 25rem;
}
.load-more{
    text-align: center;
    padding-left: 25rem;
    margin: 3rem 0 1rem;
}
.recently-viewed  ul.loriana-shop-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
}
section.recently-viewed {
    padding: 6rem 0;
}
/* Responsive */
@media (max-width: 1024px) {
    .shop-page {
        padding: 2rem 0;
    }
    ul.loriana-shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-title {
        font-size: 4.5rem;
    }
    .banner-image-wrapper {
        border-radius: 2.5rem;
    }
    .shop-layout {
        flex-direction: column;
        gap: 0;
    }
    .filter-header {
        margin-bottom: 1rem;
    }
    .filter-group {
        border-bottom: 1px solid #eee;
        padding: 1rem 0;
    }
    .shop-sidebar {
        width: 100%;
    }
    ul.loriana-shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .price {
        font-size: 1.8rem !important;
    }
    .page-title {
        font-size: 3.5rem;
    }
    .banner-image-wrapper {
        border-radius: 1.5rem;
        aspect-ratio: 16 / 9;
    }
    .shop-banner-section {
        padding: 1.5rem 0 3rem 0;
    }
    .product-image-wrapper a img, .product-image-wrapper a {
        object-fit: contain;
    }
    p.total-product,
    .load-more {
        padding-left: 0;
    }
}
@media screen and (max-width: 767px){
    .recently-viewed ul.loriana-shop-grid,
    ul.loriana-shop-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
}