/* ===================== PRODUCT LISTING PAGE STYLES ===================== */
.product-listing-banner {
    padding: 90px 0;
    color: white;
        overflow: hidden;
        position: relative;
        
}


.banner-bg-image{
position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}



.product-listing-section {
    padding: 60px 0;
}
.product-listing-wrap {
    display: flex;
    gap:40px;
}
.product-filter-sidebar {
    flex: 0 0 260px;
}
.product-content-area {
    flex: 1;
}

/* Filter Widget */
.filter-widget {
    margin-bottom:32px;
}
.filter-widget h3 {
    font-size:16px;
    text-transform:uppercase;
    margin-bottom:14px;
    padding-bottom:8px;
    border-bottom:1px solid #eee;
}
.filter-list {
    list-style:none;
    padding:0;
    margin:0;
}
.filter-item {
    margin-bottom:10px;
}
.filter-item a {
    display:flex;
    justify-content:space-between;
    color:#333;
    text-decoration:none;
    font-size:14px;
}
.filter-item.active a {
    color:#ff5800;
    font-weight:600;
}
.filter-item a:hover {
    color:#ff5800;
}

.checkbox-filter-list {
    list-style:none;
    padding:0;
}
.filter-checkbox-item {
    margin-bottom:8px;
    font-size:14px;
    color:#333;
}

/* Custom Filter Block */
.filter-custom-block {
    background:#111;
    color:#fff;
    padding:24px 20px;
    border-radius:4px;
}
.filter-custom-block h4 {
    font-size:16px;
    margin-bottom:10px;
}
.filter-custom-block p {
    font-size:13px;
    line-height:1.5;
    margin-bottom:16px;
}
.w-full {
    width:100%;
    text-align:center;
}

/* Product Header Sort */
.product-list-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:24px;
    flex-wrap:wrap;
    gap:12px;
}
.product-sort-wrap {
    display:flex;
    align-items:center;
    gap:16px;
    font-size:14px;
    color:#666;
}
.sort-select {
    padding:8px 12px;
    border:1px solid #ddd;
    font-size:14px;
}

/* Product Grid */
.product-grid {
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:26px;
    margin-bottom:40px;
}
.product-card {
    background:#fff;
    border:1px solid #eee;
    padding:16px;
    transition:0.25s ease;
}
.product-card:hover {
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}
.product-img {
    margin-bottom:14px;
}
.product-img img {
    width:100%;
    height:auto;
    display:block;
}
.product-card h3 {
    font-size:15px;
    margin:0 0 8px;
    line-height:1.4;
}
.product-card p {
    font-size:13px;
    color:#555;
    line-height:1.5;
    margin-bottom:12px;
    min-height:56px;
}
.product-view-link {
    color:#ff5800;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}
.product-view-link:hover {
    text-decoration:underline;
}

/* Pagination */
.pagination-wrap {
    display:flex;
    align-items:center;
    gap:8px;
}
.page-link {
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ddd;
    text-decoration:none;
    color:#333;
    font-size:14px;
}
.page-link.active {
    background:#ff5800;
    border-color:#ff5800;
    color:#fff;
}
.page-link:hover:not(.active) {
    border-color:#ff5800;
    color:#ff5800;
}
.page-dots {
    padding:0 6px;
}

/* Bottom Feature Bar */
.product-feature-bar {
    background:#f7f7f7;
    padding:50px 0;
}
.feature-grid {
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}
.feature-item {
    text-align:center;
}
.feature-item i {
    font-size:26px;
    color:#ff5800;
    margin-bottom:12px;
}
.feature-item h4 {
    font-size:16px;
    margin-bottom:8px;
}
.feature-item p {
    font-size:13px;
    color:#555;
}

/* ===================== RESPONSIVE MEDIA QUERIES ===================== */
@media screen and (max-width:1100px) {
    .product-grid {
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:992px) {
    .product-listing-wrap {
        flex-direction:column;
    }
    .product-filter-sidebar {
        flex:0 0 100%;
    }
    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:768px) {
    .product-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        grid-template-columns:1fr;
    }
    .product-list-header {
        flex-direction:column;
        align-items:flex-start;
    }
}




.flex-row1 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}


