.card-aside {
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.filter-sidebar-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 12px 15px;
}

.filter-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.filter-form {
    padding: 35px;
}

.filter-section {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dee2e6;
}

.filter-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.filter-section input[type="number"],
.filter-section .form-check-input {
    border: 1px solid #dee2e6;
    cursor: pointer;
}

.filter-section input[type="number"] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 4px;
}

.filter-section input[type="number"]:focus {
    border-color: #80bdff;
    box-shadow: none;
}

.filter-section .form-check {
    padding: 6px 0;
}

.filter-section .form-check-label {
    color: #555;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    padding-left: 6px;
    font-size: 0.9rem;
}

.price-inputs {
    display: flex;
    gap: 6px;
    align-items: center;
}

.price-inputs input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.85rem;
}

.price-separator {
    color: #999;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
}

.btn-filter {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn-filter.apply {
    background: #007bff;
    color: white;
}

.btn-filter.apply:hover {
    background: #0056b3;
}

.btn-filter.clear {
    background: #e9ecef;
    color: #333;
    border: 1px solid #dee2e6;
}

.btn-filter.clear:hover {
    background: #dee2e6;
}

.nav-pills .nav-link {
    color: #555;
    border-radius: 4px;
    margin-bottom: 5px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: #000 !important;
    color: #fff !important;
}

.product-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f4f4;
}

.list-product-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .list-product-img {
    transform: scale(1.05);
}

.btn-cart-list {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.product-card:hover .btn-cart-list {
    opacity: 1;
    transform: translateY(0);
}

.btn-cart-list:hover {
    background: #000;
    color: #fff;
}

.plp-page .pagination svg {
    width: 20px !important;
    height: 20px !important;
    display: inline-block !important;
}

.plp-mobile-filter.offcanvas {
    width: 100% !important;
}

@media (max-width: 991px) {
    .filter-form {
        padding: 32px;
    }

    .filter-section {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
}

[data-bs-theme="dark"] .filter-sidebar-header {
    background: #21262d;
}

[data-bs-theme="dark"] .filter-title,
[data-bs-theme="dark"] .filter-section-title,
[data-bs-theme="dark"] .filter-section .form-check-label {
    color: #e6edf3;
}

[data-bs-theme="dark"] .nav-pills .nav-link {
    color: #8b949e;
}

[data-bs-theme="dark"] .product-wrapper {
    background: #21262d;
}
