π NEW ARRIVALS β Summer Collection is Live!
π FREE Shipping on orders above βΉ499
π·οΈ Use code HEELS10 for 10% off on first order
π³ EMI available on orders above βΉ1999
π NEW ARRIVALS β Summer Collection is Live!
π FREE Shipping on orders above βΉ499
β
}
.list-desc {
font-size: 13px;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: auto;
}
.list-footer {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 16px;
flex-wrap: wrap;
gap: 10px;
}
.list-price-wrap {
display: flex;
align-items: center;
gap: 10px;
}
/* No Products */
.no-products {
text-align: center;
padding: 80px 20px;
grid-column: 1 / -1;
}
.no-products-icon {
font-size: 3.5rem;
margin-bottom: 16px;
opacity: 0.4;
}
/* Load More */
.load-more-wrap {
text-align: center;
margin-top: 48px;
}
.load-more-bar {
height: 4px;
background: var(--color-light-3);
border-radius: 99px;
margin: 0 auto 16px;
max-width: 300px;
overflow: hidden;
}
.load-more-fill {
height: 100%;
background: var(--color-primary);
border-radius: 99px;
width: 60%;
}
.load-more-text {
font-size: 13px;
color: var(--text-muted);
margin-bottom: 16px;
}
/* Mobile Filter Btn */
.filter-toggle-btn {
display: none;
align-items: center;
gap: 8px;
padding: 10px 18px;
background: var(--color-white);
border: 1.5px solid var(--border-color);
border-radius: 10px;
font-size: 13px;
font-weight: 600;
color: var(--text-primary);
cursor: pointer;
}
.filter-toggle-btn .filter-active-count {
background: var(--color-accent);
color: #fff;
font-size: 10px;
font-weight: 700;
width: 18px;
height: 18px;
border-radius: 50%;
display: none;
align-items: center;
justify-content: center;
}
/* Filter Drawer (mobile) */
.filter-drawer-backdrop {
display: none;
position: fixed;
inset: 0;
background: rgba(13, 13, 13, 0.6);
z-index: 350;
}
.filter-drawer-backdrop.open {
display: block;
}
.filter-drawer {
position: fixed;
left: 0;
top: 0;
bottom: 0;
width: 300px;
background: var(--color-white);
z-index: 360;
overflow-y: auto;
transform: translateX(-100%);
transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.filter-drawer.open {
transform: translateX(0);
}
@media(max-width:1100px) {
.products-grid-4 {
grid-template-columns: repeat(3, 1fr);
}
}
@media(max-width:900px) {
.shop-sidebar {
display: none;
}
.filter-toggle-btn {
display: flex;
}
.products-grid-4 {
grid-template-columns: repeat(2, 1fr);
}
.products-grid-3 {
grid-template-columns: repeat(2, 1fr);
}
}
@media(max-width:600px) {
.shop-layout {
padding: 24px 0 60px;
}
.products-grid-4,
.products-grid-3 {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.product-card-list .list-img {
width: 120px;
height: 150px;
}
}
@media(max-width:400px) {
.products-grid-4,
.products-grid-3 {
grid-template-columns: 1fr 1fr;
gap: 8px;
}
}