/* Custom CSS - Van Laack Vietnam
   This file contains custom styles that extend the template
   Load this AFTER all template CSS files
*/

/* Navigation Flyout Menu Sliders */
/* .navigation-flyout .product-slider.swiper .swiper-slide {
    width: 311px;
} */

/* Mobile Menu Tab Content - Hide/Show */
.js-mobile-tab-content {
    display: none;
}

.js-mobile-tab-content.active {
    display: block;
}

/* Mobile Menu Multilevel Navigation */
.js-mobile-tab-content {
    position: relative;
    overflow: hidden;
}

.js-mobile-menu-level {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.js-mobile-menu-level.is-root {
    transform: translateX(0);
}

.js-mobile-menu-level.is-root.is-hidden {
    transform: translateX(-100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.js-mobile-submenu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    background: #fff;
}

.js-mobile-submenu.is-active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

/* Back Button Styles */
.navigation-offcanvas-back-wrapper {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
}

.navigation-offcanvas-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.navigation-offcanvas-back:hover {
    background: transparent;
}

/* Category Title in Submenu */
.navigation-offcanvas-title {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
}

.navigation-offcanvas-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* ================================
   Article Card Styles
   ================================ */
.articles-listing > .row {
    margin: -12px !important;
}

.articles-listing > .row > [class*="col-"] {
    padding: 12px !important;
}

.article-card {
    border: none;
    border-radius: 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.article-card .article-thumbnail {
    aspect-ratio: 16/10;
    object-fit: cover;
}

.article-card .card-body {
    padding: 20px;
}

.article-card .card-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.article-card .article-title-link {
    color: inherit;
    text-decoration: none;
}

.article-card .article-title-link:hover {
    text-decoration: underline;
}

.article-card .article-meta {
    font-size: 0.8rem;
}

/* ================================
   Article Detail & Static Page - Narrow Content (1200px)
   ================================ */
.page-article-detail .cms-page,
.page-static .cms-page {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   Article Detail Styles
   ================================ */
.article-detail .article-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.article-detail .article-summary {
    font-size: 1.1rem;
    color: #555;
    border-left: 3px solid #000;
    padding-left: 1rem;
}

.article-detail .article-content {
    font-size: 1rem;
    line-height: 1.8;
}

.article-detail .article-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.article-detail .article-content h2,
.article-detail .article-content h3,
.article-detail .article-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article-detail .article-content ul,
.article-detail .article-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-detail .article-content ul li,
.article-detail .article-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-detail .article-content ul {
    list-style-type: disc;
}

.article-detail .article-content ul ul {
    list-style-type: circle;
    margin-top: 0.5rem;
}

.article-detail .article-content ol {
    list-style-type: decimal;
}

.article-detail .article-content ol ol {
    list-style-type: lower-alpha;
    margin-top: 0.5rem;
}

.article-detail .article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Article Share Buttons - Default black icons */
.article-share .btn-outline-secondary {
    color: #000;
    border-color: #000;
}

.article-share .btn-outline-secondary:hover {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

/* ================================
   Static Page Styles
   ================================ */
.page-title {
    font-size: 2rem;
    font-weight: 600;
}

.page-content {
    font-size: 1rem;
    line-height: 1.8;
}

.page-content img {
    max-width: 100%;
    height: auto;
}

/* ================================
   Category Title Styles
   ================================ */
.category-title {
    font-size: 1.75rem;
    font-weight: 600;
}

.subcategories-nav .btn {
    font-size: 0.875rem;
}

/* ================================
   Explore Page Styles
   ================================ */
.explore-category-card {
    background: #f8f9fa;
    padding: 24px;
    height: 100%;
    border-left: 3px solid #000;
    transition: background-color 0.3s ease;
}

.explore-category-card:hover {
    background: #f0f0f0;
}

.explore-category-card .category-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.explore-category-card .category-card-title a {
    color: inherit;
    text-decoration: none;
}

.explore-category-card .category-card-title a:hover {
    text-decoration: underline;
}

.explore-category-card .category-card-desc {
    margin-bottom: 1rem;
}

.explore-category-card .category-children-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.explore-category-card .category-children-list li {
    padding: 4px 0;
    border-bottom: 1px solid #e0e0e0;
}

.explore-category-card .category-children-list li:last-child {
    border-bottom: none;
}

.explore-category-card .category-children-list li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.explore-category-card .category-children-list li a:hover {
    text-decoration: underline;
}

.explore-category-card .category-children-list li.more-link a {
    color: #666;
    font-style: italic;
}

.article-category-badge {
    display: inline-block;
    background: #f0f0f0;
    padding: 2px 8px;
    font-size: 0.75rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.static-page-item {
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.static-page-item:hover {
    background: #e9ecef;
}

.static-page-link {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.static-page-link:hover {
    color: #000;
    text-decoration: underline;
}

/* ================================
   Login/Register Page Fixes
   ================================ */
/* Hide flashbags in login page since it breaks flex layout */
.is-act-loginpage .flashbags {
    display: none;
}

/* Ensure login page fills the viewport height */
.is-act-loginpage .content-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.is-act-loginpage .content-main > .container-fluid {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.is-act-loginpage .container-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.is-act-loginpage .account-register {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.is-act-loginpage .account-register > .row {
    flex: 1;
}

/* Make account-advantages take full height on desktop */
@media (min-width: 992px) {
    .is-act-loginpage .account-container,
    .is-act-loginpage .account-advantages {
        min-height: 100%;
    }
}

/* Register page fixes */
.is-act-accountregisterpage .flashbags {
    display: none;
}

/* ================================
   Cart Cross-selling Fixes
   ================================ */
/* Fix image 0px issue in cross-selling products */
.checkout-cart-cross-selling .product-image-cover {
    width: 100%;
    height: 100%;
}

.checkout-cart-cross-selling .product-image-link.is-cover {
    display: block;
    width: 100%;
    height: 100%;
}

.checkout-cart-cross-selling .product-box.box-minimal .product-image-wrapper {
    min-height: 132px;
}

.checkout-cart-cross-selling .product-box.box-minimal .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Color modal item hover */
.color-modal .modal-item.color-modal-item:hover {
    background-color: #f5f5f5;
}

/* Color swatch in cross-selling */
.checkout-cart-cross-selling .color-dropdown-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ddd;
}

.checkout-cart-cross-selling .color-dropdown-swatch-inner {
    width: 100%;
    height: 100%;
}

/* ================================
   Cart Item Styles
   ================================ */
/* Add padding to cart items */
.offcanvas-categories-items .line-item {
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.offcanvas-categories-items .line-item:last-child {
    border-bottom: none;
}

/* Quantity selector buttons */
.line-item .quantity-selector {
    justify-content: flex-start;
}

.line-item .quantity-selector .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.line-item .quantity-value {
    min-width: 24px;
    text-align: center;
    font-weight: 500;
}

/* Cart item color/size buttons */
.line-item .btn-cart-color-select,
.line-item .btn-cart-size-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 13px;
}

/* Modal item styles for color/size selection */
.modal-item {
    cursor: pointer;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.modal-item:last-child {
    border-bottom: none;
}

.modal-item:hover {
    background-color: #f5f5f5;
}

.modal-item.is-selected {
    background-color: #f0f0f0;
    font-weight: 500;
}

.modal-item.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.size-modal .modal-item .size-label {
    font-size: 14px;
}

/* Color/Size Modal Dialog */
.vl-select-modal-dialog .modal-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.vl-select-modal-dialog .modal-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.vl-select-modal-dialog .modal-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.vl-select-modal-dialog .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
}

.vl-select-modal-dialog .modal-body {
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
}

/* ================================
   Checkout Page Styles
   ================================ */
.checkout-main {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-title {
    font-size: 1.75rem;
    font-weight: 600;
}

.checkout-section {
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
}

.checkout-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-section-title .section-number {
    width: 28px;
    height: 28px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

/* Address Selection */
.address-item {
    padding: 12px 16px;
    border: 1px solid #eee;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.address-item:hover {
    border-color: #ccc;
}

.address-item.is-default {
    border-color: #000;
}

.address-item .form-check-input:checked ~ .form-check-label {
    font-weight: 500;
}

/* Order Items in Checkout */
.order-items .order-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.order-items .order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 64px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-item-variant {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.order-item-price {
    font-size: 14px;
    text-align: right;
}

/* Order Totals */
.order-totals {
    font-size: 14px;
}

.order-totals .total-row {
    font-size: 16px;
}

/* Payment Methods */
.payment-method-item {
    padding: 16px;
    border: 1px solid #eee;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.payment-method-item:hover {
    border-color: #ccc;
}

.payment-method-item:has(.form-check-input:checked) {
    border-color: #000;
    background: #fafafa;
}

.payment-method-content {
    display: flex;
    align-items: flex-start;
}

.payment-method-content i {
    font-size: 20px;
    width: 32px;
    color: #333;
}

/* Login Prompt */
.checkout-main .login-prompt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

/* Submit Button */
#submitOrder {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
}

#submitOrder:disabled {
    opacity: 0.7;
}

/* ================================
   Order Confirmation Page Styles
   ================================ */
.confirmation-main {
    max-width: 1200px;
    margin: 0 auto;
}

.confirmation-title {
    font-size: 1.75rem;
    font-weight: 600;
}

.confirmation-section {
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
}

.confirmation-section .section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.confirmation-section .info-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 8px;
}

.order-items-list .item-image {
    width: 64px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Payment QR Section */
.payment-qr-section {
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.qr-code-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.qr-code-image {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.bank-info {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
}

.bank-info h5 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-info-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.bank-info-item:last-child {
    border-bottom: none;
}

#paymentStatusCheck {
    padding: 12px;
    background: #e8f5e9;
    border-radius: 8px;
}

.confirmation-actions {
    padding: 24px 0;
}

/* ================================
   Wishlist Button Styles
   ================================ */
/* Remove button styling for wishlist buttons */
.product-wishlist-btn,
.product-wishlist-action,
[data-add-to-wishlist] {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

.product-wishlist-btn:hover,
.product-wishlist-action:hover,
[data-add-to-wishlist]:hover {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    outline: none;
    box-shadow: none;
}

.product-wishlist-btn:focus,
.product-wishlist-action:focus,
[data-add-to-wishlist]:focus {
    outline: none;
    box-shadow: none;
}

.product-wishlist-btn:active,
.product-wishlist-action:active,
[data-add-to-wishlist]:active {
    outline: none;
    box-shadow: none;
}

/* Hide/Show heart icons based on state */
.product-wishlist-not-added .icon-wishlist-added,
.product-wishlist-added .icon-wishlist-not-added {
    display: none;
}

.product-wishlist-not-added .icon-wishlist-not-added,
.product-wishlist-added .icon-wishlist-added {
    display: inline-flex;
}

/* Fill color for added state */
.product-wishlist-added .icon-wishlist-added svg path {
    fill: #e53935;
    stroke: #e53935;
}

/* ========================================
   Store Locator Page
   ======================================== */

/* Fix SVG icons in store cards - override global .icon>svg fill */
.store-card .store-info .icon>svg {
    width: 16px;
    height: 16px;
    fill: none;
    position: static;
}

.store-card .store-info .icon>svg path,
.store-card .store-info .icon>svg circle,
.store-card .store-info .icon>svg polyline {
    fill: none;
    stroke: currentColor;
}

/* ================================
   Language Flag & Dropdown
   ================================ */
.language-flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 1px;
}

/* Mobile language dropdown inside offcanvas */
.languages-menu .dropdown-menu {
    border-radius: 0;
    border-color: #eee;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.languages-menu .dropdown-item {
    padding: 10px 14px;
    font-size: 14px;
}

.languages-menu .dropdown-item.active {
    background-color: #f0f0f0;
    color: #000;
}

.languages-menu .dropdown-item:hover {
    background-color: #f8f8f8;
}

/* ================================
   Category Filter & Sort Styles
   ================================ */

/* Filter count badge */
.filter-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    margin-left: 6px;
}

/* Sort button - đồng bộ với nút Filter */
.quick-nav-filter-sorting .sorting-panel-wrapper-toggle {
    display: inline-flex;
    align-items: center;
}

.quick-nav-filter-sorting .sorting-panel-wrapper-toggle .sort-label {
    font-size: inherit;
}

/* Sorting Offcanvas - theo template gốc */
.offcanvas.offcanvas-sorting {
    background: #F6F6F6;
    height: auto !important;
    max-height: 70vh;
}

.offcanvas.offcanvas-sorting.offcanvas-bottom {
    min-height: auto;
}

.offcanvas.offcanvas-sorting .offcanvas-header {
    background: transparent;
    padding: 16px 20px;
    border-bottom: none;
}

.offcanvas.offcanvas-sorting .offcanvas-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offcanvas.offcanvas-sorting .offcanvas-body {
    padding: 20px 20px 14px;
}

.offcanvas.offcanvas-sorting .sorting-panel {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.offcanvas.offcanvas-sorting .sorting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 14px;
    background: #FFFFFF;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.offcanvas.offcanvas-sorting .sorting-item.active {
    background: #474747;
    color: #FFFFFF;
    box-shadow: none;
}

.offcanvas.offcanvas-sorting .sorting-item label {
    cursor: pointer;
    font-size: 14px;
}

.offcanvas.offcanvas-sorting .sorting-item .form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    border-color: #ccc;
}

.offcanvas.offcanvas-sorting .sorting-item.active .form-check-input[type=radio] {
    background-color: #474747;
    border-color: #FFFFFF;
}

.offcanvas.offcanvas-sorting .sorting-item .form-check-input[type=radio]:checked::before {
    background-color: transparent;
}

.offcanvas.offcanvas-sorting .sorting-item.active .form-check-input[type=radio]::before {
    content: "";
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="7" viewBox="0 0 8 7" fill="none"><path d="M1.07031 2.82289L2.87121 5.15156L6.92969 0.848145" stroke="white" stroke-width="1.5" stroke-linecap="round"/></svg>');
    width: 8px;
    height: 7px;
    display: block;
    margin: auto;
}

/* Filter Offcanvas Styles */
.offcanvas-filter {
    width: 340px !important;
    max-width: 100%;
}

.offcanvas-filter .offcanvas-header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.offcanvas-filter .offcanvas-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offcanvas-filter .offcanvas-body {
    padding: 0;
}

/* Filter Panel Items */
.filter-panel-item {
    border-bottom: 1px solid #eee;
}

.filter-panel-item:last-child {
    border-bottom: none;
}

.filter-panel-item-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: none;
    background: transparent;
    transition: background-color 0.2s ease;
}

.filter-panel-item-toggle:hover {
    background-color: #f8f9fa;
}

.filter-panel-item-toggle .icon-chevron-down {
    transition: transform 0.2s ease;
}

.filter-panel-item-toggle:not(.collapsed) .icon-chevron-down {
    transform: rotate(180deg);
}

/* Filter Options Container */
.filter-panel-item .filter-options {
    padding: 0 20px 16px;
}

/* Color Swatch Filter */
.filter-color-swatch {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: 1px solid #ddd !important;
}

.filter-color-swatch:hover {
    transform: scale(1.1);
}

.filter-color-swatch.active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000 !important;
    border-color: #000 !important;
}

/* Size Filter Buttons */
.filter-size-btn {
    min-width: 44px;
    height: 36px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.15s ease;
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
}

.filter-size-btn:hover {
    background-color: #f5f5f5;
    border-color: #000;
    color: #000;
}

.filter-size-btn.active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

/* Checkbox Filter Items */
.filter-panel-item .form-check {
    padding: 8px 0;
    margin: 0;
}

.filter-panel-item .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    border-radius: 0;
    border-color: #ccc;
}

.filter-panel-item .form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

.filter-panel-item .form-check-label {
    font-size: 14px;
    padding-left: 8px;
    cursor: pointer;
}

/* Filter Action Buttons */
.filter-panel-action-container {
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: #fff;
    position: sticky;
    bottom: 0;
}

.filter-panel-action-container .btn {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
}

.filter-panel-action-container .btn-primary {
    background-color: #000;
    border-color: #000;
}

.filter-panel-action-container .btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.filter-panel-action-container .btn-outline-primary {
    color: #000;
    border-color: #000;
}

.filter-panel-action-container .btn-outline-primary:hover {
    background-color: #000;
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 575.98px) {
    .offcanvas-filter {
        width: 100% !important;
    }

    .quick-nav-filter-sorting .sorting-panel-wrapper-toggle .sort-label {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

