.filter-card {
    position: sticky;
    top: 1rem;
}

.product-card {
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
}

.product-image-wrap {
    aspect-ratio: 1 / 1;
    background: #fff;
}

.product-image {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.product-name {
    color: var(--bs-dark);
    text-decoration: none;
}

.product-name:hover {
    color: var(--theme-primary-color);
    text-decoration: none;
}

.brand-name {
    letter-spacing: .04em;
}

.sales-pitch {
    font-size: .925rem;
    color: #6c757d;
}

.price-current {
    font-size: 1.5rem;
    line-height: 1.1;
}

.list-view-row .product-card {
    flex-direction: row;
    align-items: stretch;
}

.list-view-row .product-image-wrap {
    width: 260px;
    min-width: 260px;
    aspect-ratio: auto;
}

@media (max-width: 767.98px) {
.list-view-row .product-card {
    flex-direction: column;
}

.list-view-row .product-image-wrap {
    width: 100%;
    min-width: 100%;
    aspect-ratio: 1 / 1;
}
}

.btn-theme {
    background: linear-gradient(135deg, #233262, #0a1031);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.btn-theme:hover {
    background: linear-gradient(135deg, #2f3f7a, #121a45);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

a.btn {
    text-decoration: none;
}

:root {
    --theme-primary-color: #233162;
}

.pagination .page-link {
    color: var(--theme-primary-color);
    border: 1px solid rgba(35, 49, 98, 0.2);
    transition: all 0.2s ease;
}

.pagination .page-link:hover {
    background-color: var(--theme-primary-color);
    color: #fff;
    border-color: var(--theme-primary-color);
    text-decoration: none;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #233262, #0a1031);
    border-color: #233162;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pagination .page-item.disabled .page-link {
    color: #aaa;
    background: #f8f9fa;
    border-color: #eee;
}

.pagination .page-link {
    padding: 0.5rem 0.85rem;
}

.pagination {
    gap: 6px;
}

@media (max-width: 991.98px) {
.offcanvas .filter-card {
    border: 0;
    box-shadow: none;
    padding: 0 !important;
    background: transparent;
}

.offcanvas .filter-section {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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