/* Products Page Styles */

.category-pills-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-pills-mobile::-webkit-scrollbar {
    display: none;
}

.category-pill {
    padding: 8px 20px;
    border: 2px solid var(--accent-rose);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.category-pill:hover {
    background: rgba(107, 58, 76, 0.05);
}

.category-pill.active {
    background: var(--accent-rose);
    color: var(--white);
    border-color: var(--accent-rose);
    font-weight: 600;
}

.page-header {
    background: var(--secondary-color);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--accent-rose);
    text-decoration: none;
}

.products-page {
    padding: 60px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 40px;
}

.products-sidebar {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
    order: 2;
    display: block !important;
}

.products-content {
    order: 1;
}

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
}

.filter-link:hover,
.filter-link.active {
    color: var(--primary-color);
}


.products-content {
    flex: 1;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.toolbar-left p {
    font-size: 14px;
    color: var(--text-light);
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
}

.filter-toggle-btn {
    display: none !important;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.filter-toggle-btn:hover {
    background: #5a2f3e;
}

.filter-toggle-btn i {
    font-size: 14px;
}

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr 250px;
    }
    
    .products-sidebar {
        position: static;
        order: 2;
    }
    
    .products-content {
        order: 1;
    }
    
    .products-toolbar {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 769px) {
    .products-sidebar {
        display: block !important;
    }
    
    .category-pills-mobile {
        display: none !important;
    }
    
    .filter-toggle-btn {
        display: none !important;
    }
    
    .sidebar-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .category-pills-mobile {
        display: flex !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 10px;
    }
    
    .category-pills-mobile::-webkit-scrollbar {
        display: none;
    }
    
    .category-pill {
        padding: 6px 16px;
        font-size: 13px;
        flex-shrink: 0;
    }
    
    .filter-toggle-btn {
        display: none;
    }
    
    .products-sidebar {
        display: none !important;
    }
    
    .sidebar-overlay {
        display: none !important;
    }
    
    .filter-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .filter-section h3 {
        font-size: 16px;
    }
    
    .products-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .toolbar-left {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .toolbar-left p {
        margin: 0;
    }
    
    .sort-select {
        width: auto;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .category-pills-mobile {
        display: flex !important;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .category-pill {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toolbar-left {
        width: 100%;
        justify-content: space-between;
    }
    
    .toolbar-left p {
        font-size: 12px;
    }
    
    .sort-select {
        width: 100%;
    }
}

