/**
 * Product Filter Styles - CLEANED VERSION
 * Removed: All forced grid-template-columns
 * Removed: All forced justify-self/align-self/justify-content/align-content on grid
 * Removed: Duplicate rule blocks
 *
 * @package HelloElementorChild
 */

 @import url("https://fonts.googleapis.com/css2?family=Trispace:wght@300;400;500;600;700&display=swap");

 /* =============================================================================
	LOOP GRID LAYOUT
	============================================================================= */
 
 .elementor-loop-container,
 .custom-product-loop-grid {
	 /* display: grid !important; */
	 width: 100% !important;
	 max-width: 100% !important;
	 box-sizing: border-box !important;
 }
 
 /* Ensure loop items behave properly */
 .e-loop-item,
 .product-loop-item,
 .elementor-post {
	 width: 100% !important;
	 max-width: 100% !important;
	 min-width: 0 !important;
	 display: flex !important;
	 flex-direction: column !important;
	 overflow: hidden !important;
	 box-sizing: border-box !important;
	 margin: 0 !important;
 }
 
 /* Fix for inner content */
 .e-loop-item > *,
 .product-loop-item > * {
	 width: 100% !important;
	 max-width: 100% !important;
	 box-sizing: border-box !important;
 }
 
 /* Fix images breaking out */
 .e-loop-item img,
 .product-loop-item img {
	 width: 100% !important;
	 height: auto !important;
	 max-width: 100% !important;
	 display: block !important;
	 object-fit: cover !important;
 }
 
 /* Fix product card container */
 .elementor-widget-container {
	 width: 100% !important;
	 max-width: 100% !important;
	 overflow: hidden !important;
	 box-sizing: border-box !important;
 }
 
 /* Prevent text overflow */
 .e-loop-item *,
 .product-loop-item * {
	 box-sizing: border-box !important;
	 max-width: 100% !important;
	 word-wrap: break-word !important;
	 overflow-wrap: break-word !important;
 }
 
 /* Fix Elementor sections and columns */
 .e-loop-item .elementor-section,
 .product-loop-item .elementor-section,
 .e-loop-item .elementor-column,
 .product-loop-item .elementor-column,
 .e-loop-item .elementor-widget-wrap,
 .product-loop-item .elementor-widget-wrap {
	 width: 100% !important;
	 max-width: 100% !important;
 }
 
 /* Grid alignment */
 .elementor-loop-container,
 .custom-product-loop-grid {
	 text-align: left !important;
	 margin-left: 0 !important;
	 margin-right: 0 !important;
 }
 
 /* =============================================================================
	BASE STYLES & LAYOUT
	============================================================================= */
 
 .e-loop-item,
 .product-loop-item {
	 visibility: visible !important;
	 opacity: 1 !important;
 }
 
 .e-loop-item .elementor-widget,
 .product-loop-item .elementor-widget,
 .e-loop-item .elementor-section,
 .product-loop-item .elementor-section,
 .e-loop-item .elementor-column,
 .product-loop-item .elementor-column {
	 display: block;
	 width: 100%;
 }
 
 /* Main wrapper */
 .custom-product-filter-wrapper {
	 font-family: "Trispace", sans-serif;
	 color: #1e1e1e;
	 max-width: 1400px;
	 margin: 0 auto;
	 padding: 20px;
	 display: flex;
	 gap: 15px;
	 position: relative;
 }
 
 /* =============================================================================
	FILTER SIDEBAR
	============================================================================= */
 
 .filter-sidebar,
 .loop-filter-sidebar {
	 display: block !important;
	 visibility: visible !important;
	 opacity: 1 !important;
	 width: 260px;
	 min-width: 260px;
	 max-width: 260px;
	 background: #ffffff;
	 padding: 25px 20px;
	 border-radius: 8px;
	 height: fit-content;
	 position: sticky;
	 top: 20px;
	 margin-bottom: 40px !important;
	 transition: transform 0.3s ease;
	 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
 }
 
 .filter-sidebar.active,
 .loop-filter-sidebar.active {
	 z-index: 99999;
 }
 
 .filter-sidebar h3,
 .loop-filter-sidebar h3 {
	 font-size: 18px;
	 font-weight: 700;
	 margin: 0 0 25px 0;
	 text-transform: uppercase;
	 letter-spacing: 1px;
	 color: #1e1e1e;
	 padding-bottom: 15px;
	 border-bottom: 2px solid #f0f0f0;
 }
 
 /* =============================================================================
	FILTER GROUPS
	============================================================================= */
 
 .filter-group {
	 margin-bottom: 25px;
 }
 
 .filter-group:last-child {
	 margin-bottom: 0;
 }
 
 .filter-group > label {
	 display: block;
	 margin-bottom: 12px;
	 font-weight: 600;
	 font-size: 11px;
	 color: #1e1e1e;
	 text-transform: uppercase;
	 letter-spacing: 0.5px;
 }
 
 /* =============================================================================
	FILTER CONTROLS
	============================================================================= */
 
 .filter-select,
 .loop-filter-search,
 .loop-filter-sort {
	 width: 100%;
	 padding: 10px 12px;
	 border: 1px solid #e0e0e0;
	 background: white;
	 font-family: "Trispace", sans-serif;
	 font-size: 13px;
	 font-weight: 400;
	 color: #1e1e1e;
	 cursor: pointer;
	 transition: all 0.3s ease;
	 border-radius: 4px;
	 appearance: none;
 }
 
 select.filter-select,
 select.loop-filter-sort {
	 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e1e1e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	 background-repeat: no-repeat;
	 background-position: right 12px center;
	 padding-right: 35px;
 }
 
 .filter-select:hover,
 .filter-select:focus,
 .loop-filter-search:focus,
 .loop-filter-sort:focus {
	 border-color: #1e1e1e;
	 outline: none;
	 box-shadow: 0 0 0 2px rgba(30, 30, 30, 0.1);
 }
 
 /* =============================================================================
	CHECKBOXES
	============================================================================= */
 
 .filter-checkboxes {
	 max-height: 180px;
	 overflow-y: auto;
	 padding-right: 8px;
 }
 
 .filter-checkboxes::-webkit-scrollbar {
	 width: 5px;
 }
 
 .filter-checkboxes::-webkit-scrollbar-track {
	 background: #f5f5f5;
	 border-radius: 10px;
 }
 
 .filter-checkboxes::-webkit-scrollbar-thumb {
	 background: #ccc;
	 border-radius: 10px;
 }
 
 .filter-checkboxes::-webkit-scrollbar-thumb:hover {
	 background: #999;
 }
 
 .filter-checkbox-item {
	 display: flex;
	 align-items: center;
	 margin-bottom: 10px;
	 cursor: pointer;
 }
 
 .filter-checkbox-item input[type="checkbox"] {
	 width: 18px;
	 height: 18px;
	 min-width: 18px;
	 margin-right: 10px;
	 cursor: pointer;
	 accent-color: #1e1e1e;
 }
 
 .filter-checkbox-item label {
	 margin: 0 !important;
	 cursor: pointer;
	 font-weight: 400 !important;
	 font-size: 13px !important;
	 text-transform: none !important;
	 letter-spacing: 0 !important;
	 color: #555 !important;
	 line-height: 1.4;
 }
 
 .filter-checkbox-item:hover label {
	 color: #1e1e1e !important;
 }
 
 /* =============================================================================
	PRICE SLIDER
	============================================================================= */
 
 .price-slider-container {
	 padding: 10px 0;
 }
 
 .price-slider-wrapper {
	 position: relative;
	 height: 5px;
	 margin: 25px 0 20px 0;
 }
 
 .price-slider-track-bg {
	 position: absolute;
	 top: 0;
	 width: 100%;
	 height: 5px;
	 background: #e0e0e0;
	 border-radius: 10px;
 }
 
 .price-slider-track {
	 position: absolute;
	 top: 0;
	 height: 5px;
	 background: #1e1e1e;
	 border-radius: 10px;
	 z-index: 1;
 }
 
 .price-slider-wrapper input[type="range"] {
	 position: absolute;
	 width: 100%;
	 top: -8px;
	 height: 20px;
	 background: transparent;
	 pointer-events: all;
	 appearance: none;
	 -webkit-appearance: none;
	 cursor: pointer;
 }
 
 .price-slider-wrapper input[type="range"]::-webkit-slider-runnable-track {
	 width: 100%;
	 height: 5px;
	 background: transparent;
 }
 
 .price-slider-wrapper input[type="range"]::-moz-range-track {
	 width: 100%;
	 height: 5px;
	 background: transparent;
	 border: none;
 }
 
 .price-slider-wrapper input[type="range"]::-webkit-slider-thumb {
	 -webkit-appearance: none;
	 appearance: none;
	 width: 18px;
	 height: 18px;
	 background: #1e1e1e;
	 border-radius: 50%;
	 cursor: grab;
	 border: 3px solid white;
	 box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	 margin-top: -6.5px;
	 position: relative;
	 z-index: 3;
 }
 
 .price-slider-wrapper input[type="range"]::-moz-range-thumb {
	 width: 18px;
	 height: 18px;
	 background: #1e1e1e;
	 border-radius: 50%;
	 cursor: grab;
	 border: 3px solid white;
	 box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	 position: relative;
	 z-index: 3;
 }
 
 .price-slider-wrapper input[type="range"]:active::-webkit-slider-thumb {
	 cursor: grabbing;
	 box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	 transform: scale(1.1);
 }
 
 .price-slider-wrapper input[type="range"]:active::-moz-range-thumb {
	 cursor: grabbing;
	 box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	 transform: scale(1.1);
 }
 
 #price-min-slider,
 .loop-price-min-slider {
	 z-index: 3;
 }
 
 #price-max-slider,
 .loop-price-max-slider {
	 z-index: 4;
 }
 
 .price-values {
	 display: flex;
	 justify-content: space-between;
	 font-size: 14px;
	 font-weight: 600;
	 margin-top: 12px;
	 margin-bottom: 12px;
	 color: #1e1e1e;
 }
 
 .price-inputs {
	 display: flex;
	 gap: 10px;
	 margin-top: 12px;
 }
 
 .price-input,
 .loop-price-min-input,
 .loop-price-max-input {
	 flex: 1;
	 padding: 8px 10px;
	 border: 1px solid #e0e0e0;
	 font-family: "Trispace", sans-serif;
	 font-size: 13px;
	 font-weight: 500;
	 border-radius: 4px;
	 text-align: center;
	 color: #1e1e1e;
 }
 
 .price-input:focus,
 .loop-price-min-input:focus,
 .loop-price-max-input:focus {
	 outline: none;
	 border-color: #1e1e1e;
	 box-shadow: 0 0 0 2px rgba(30, 30, 30, 0.1);
 }
 
 /* =============================================================================
	RESET BUTTON
	============================================================================= */
 
 .reset-btn,
 .loop-filter-reset {
	 width: 100%;
	 padding: 12px 18px;
	 background: #1e1e1e;
	 color: white;
	 border: 2px solid #1e1e1e;
	 font-family: "Trispace", sans-serif;
	 font-size: 11px;
	 font-weight: 700;
	 cursor: pointer;
	 transition: all 0.3s ease;
	 border-radius: 4px;
	 text-transform: uppercase;
	 letter-spacing: 0.5px;
	 margin-top: 25px;
 }
 
 .reset-btn:hover,
 .loop-filter-reset:hover {
	 background: white;
	 color: #1e1e1e;
 }
 
 /* =============================================================================
	MOBILE FILTER TOGGLE
	============================================================================= */
 
 .filter-toggle-btn {
	 display: none;
	 position: fixed;
	 bottom: 20px;
	 right: 20px;
	 width: 60px;
	 height: 60px;
	 background: #1e1e1e;
	 color: white;
	 border: none;
	 border-radius: 50%;
	 cursor: pointer;
	 z-index: 999;
	 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	 transition: all 0.3s ease;
	 align-items: center;
	 justify-content: center;
 }
 
 .filter-toggle-btn:hover,
 .filter-toggle-btn:focus {
	 transform: scale(1.1);
	 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
	 background-color: #1e1e1e !important;
 }
 
 .filter-toggle-btn svg {
	 width: 24px;
	 height: 24px;
	 fill: white;
 }
 
 .filter-overlay {
	 display: none;
	 position: fixed;
	 top: 0;
	 left: 0;
	 right: 0;
	 bottom: 0;
	 background: rgba(0, 0, 0, 0.5);
	 z-index: 998;
	 opacity: 0;
	 visibility: hidden;
	 transition: opacity 0.3s ease, visibility 0.3s ease;
	 pointer-events: none;
 }
 
 .filter-overlay.active {
	 opacity: 1;
	 visibility: visible;
	 pointer-events: all;
 }
 
 .filter-close-btn {
	 display: none;
	 position: absolute;
	 top: 15px;
	 right: 15px;
	 width: 32px;
	 height: 32px;
	 background: #f5f5f5;
	 border: none;
	 border-radius: 50%;
	 cursor: pointer;
	 z-index: 10;
	 transition: all 0.2s ease;
 }
 
 .filter-close-btn:hover {
	 background: #e0e0e0;
	 transform: rotate(90deg);
 }
 
 .filter-close-btn::before,
 .filter-close-btn::after {
	 content: "";
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 width: 16px;
	 height: 2px;
	 background: #1e1e1e;
 }
 
 .filter-close-btn::before {
	 transform: translate(-50%, -50%) rotate(45deg);
 }
 
 .filter-close-btn::after {
	 transform: translate(-50%, -50%) rotate(-45deg);
 }
 
 /* =============================================================================
	PRODUCTS AREA
	============================================================================= */
 
 .products-area {
	 flex: 1;
	 position: relative;
	 padding-bottom: 50px !important;
	 width: 100% !important;
	 max-width: 100% !important;
	 overflow: hidden !important;
 }
 
 .loading-overlay {
	 position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	 bottom: 0;
	 background: rgba(255, 255, 255, 0.9);
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 z-index: 100;
	 border-radius: 8px;
 }
 
 .spinner {
	 border: 4px solid #f3f3f3;
	 border-top: 4px solid #1e1e1e;
	 border-radius: 50%;
	 width: 50px;
	 height: 50px;
	 animation: spin 1s linear infinite;
 }
 
 @keyframes spin {
	 0% { transform: rotate(0deg); }
	 100% { transform: rotate(360deg); }
 }
 
 /* =============================================================================
	PRODUCTS GRID (fallback)
	============================================================================= */
 
 .products-grid {
	 display: grid;
	 gap: 15px;
 }
 
 /* =============================================================================
	PRODUCT CARD
	============================================================================= */
 
 .product-card,
 .default-product-card {
	 background: #d9d9d9;
	 position: relative;
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
	 overflow: hidden;
	 border-radius: 0px;
	 width: 100% !important;
	 max-width: 100% !important;
	 box-sizing: border-box !important;
 }
 
 .product-card:hover,
 .default-product-card:hover {
	 transform: translateY(-5px);
	 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }
 
 .product-badges {
	 position: absolute;
	 top: 20px;
	 left: 0;
	 right: 0;
	 display: flex;
	 justify-content: space-between;
	 z-index: 10;
	 pointer-events: none;
	 padding: 0 20px;
 }
 
 .badge-sale {
	 background: #1e1e1e;
	 color: white;
	 padding: 6px 16px;
	 font-size: 11px;
	 font-weight: 700;
	 letter-spacing: 0.5px;
	 border-radius: 0px;
 }
 
 .badge-tag {
	 background: #1e1e1e;
	 color: white;
	 padding: 6px 16px;
	 font-size: 10px;
	 font-weight: 700;
	 letter-spacing: 0.5px;
	 border-radius: 0px;
	 text-transform: uppercase;
 }
 
 .product-image-link {
	 display: block;
	 overflow: hidden;
	 background: #ffffff;
	 padding: 0px;
	 aspect-ratio: 1 / 1;
	 position: relative;
	 width: 100% !important;
	 max-width: 100% !important;
 }
 
 .product-image-link img {
	 width: 100% !important;
	 height: 100% !important;
	 object-fit: cover !important;
	 display: block !important;
	 transition: transform 0.5s ease;
	 max-width: 100% !important;
 }
 
 .product-card:hover .product-image-link img,
 .default-product-card:hover .product-image-link img {
	 transform: scale(1.08);
 }
 
 .product-info {
	 padding: 20px;
	 background: #ffffff;
	 width: 100% !important;
	 box-sizing: border-box !important;
 }
 
 .product-title {
	 margin: 0 0 8px 0;
	 font-size: 14px;
	 font-weight: 600;
	 line-height: 1.3;
	 min-height: 36px;
	 word-wrap: break-word !important;
	 overflow-wrap: break-word !important;
 }
 
 .product-title a {
	 color: #1e1e1e !important;
	 text-decoration: none;
	 transition: color 0.3s ease;
 }
 
 .product-title a:hover {
	 color: #666 !important;
 }
 
 .product-price {
	 margin-bottom: 16px;
	 font-size: 17px;
	 font-weight: 700;
 }
 
 .product-price del {
	 color: #999;
	 font-size: 14px;
	 margin-right: 8px;
	 text-decoration: line-through;
 }
 
 .product-price ins {
	 text-decoration: none;
	 color: #1e1e1e;
 }
 
 .product-actions {
	 margin-top: 16px;
 }
 
 .btn-add-to-cart,
 .btn-select-options {
	 width: 90%;
	 padding: 10px 12px;
	 background: white;
	 color: #1e1e1e;
	 border: 2px solid #1e1e1e;
	 font-family: "Trispace", sans-serif;
	 font-size: 11px;
	 font-weight: 700;
	 cursor: pointer;
	 transition: all 0.3s ease;
	 text-transform: uppercase;
	 letter-spacing: 0.5px;
	 text-align: center;
	 text-decoration: none;
	 display: inline-block;
	 box-sizing: border-box;
	 border-radius: 0px;
 }
 
 .btn-add-to-cart:hover,
 .btn-select-options:hover {
	 background: #1e1e1e;
	 color: white;
 }
 
 .btn-add-to-cart.loading {
	 opacity: 0.6;
	 cursor: wait;
 }
 
 .btn-add-to-cart.added {
	 background: #1e1e1e;
	 color: white;
 }
 
 .no-products,
 .no-results-message {
	 text-align: center;
	 padding: 60px 20px;
	 font-size: 15px;
	 color: #666;
	 grid-column: 1 / -1;
 }
 
 /* =============================================================================
	RESPONSIVE: DESKTOP (>1024px)
	============================================================================= */
 
 @media (min-width: 1025px) {
	 .custom-product-filter-wrapper {
		 display: flex !important;
		 gap: 15px !important;
		 flex-direction: row !important;
	 }
 
	 .filter-sidebar,
	 .loop-filter-sidebar {
		 position: sticky !important;
		 left: auto !important;
		 top: 20px !important;
		 width: 260px !important;
		 min-width: 260px !important;
		 max-width: 260px !important;
		 height: fit-content !important;
		 background: #ffffff !important;
		 padding: 25px 20px !important;
		 border-radius: 8px !important;
		 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
		 margin-bottom: 40px !important;
		 transform: none !important;
		 transition: none !important;
		 display: block !important;
		 visibility: visible !important;
		 opacity: 1 !important;
		 z-index: auto !important;
	 }
 
	 .filter-toggle-btn {
		 display: none !important;
	 }
 
	 .filter-overlay {
		 display: none !important;
	 }
 
	 .filter-close-btn {
		 display: none !important;
	 }
 
	 .products-area {
		 flex: 1 !important;
		 width: auto !important;
		 max-width: 100% !important;
	 }
 
 }
 
 /* =============================================================================
	RESPONSIVE: TABLET (768px - 1024px)
	============================================================================= */
 
 @media (max-width: 1024px) {
	 .custom-product-filter-wrapper {
		 display: block !important;
		 padding: 15px !important;
	 }
 
	 /* Filter Toggle Button */
	 .filter-toggle-btn {
		 display: flex !important;
		 position: fixed !important;
		 bottom: 20px !important;
		 right: 20px !important;
		 width: 60px !important;
		 height: 60px !important;
		 background: #1e1e1e !important;
		 color: white !important;
		 border: none !important;
		 border-radius: 50% !important;
		 cursor: pointer !important;
		 z-index: 999 !important;
		 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
		 align-items: center !important;
		 justify-content: center !important;
		 transition: all 0.3s ease !important;
	 }
 
	 .filter-toggle-btn:hover {
		 transform: scale(1.1) !important;
		 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4) !important;
	 }
 
	 .filter-toggle-btn svg {
		 width: 24px !important;
		 height: 24px !important;
		 fill: white !important;
	 }
 
	 /* Sidebar - Hidden by Default */
	 .filter-sidebar,
	 .loop-filter-sidebar {
		 position: fixed !important;
		 left: -100% !important;
		 top: 0 !important;
		 width: 280px !important;
		 height: 100vh !important;
		 background: #ffffff !important;
		 padding: 25px 20px !important;
		 z-index: 1000 !important;
		 overflow-y: auto !important;
		 overflow-x: hidden !important;
		 transition: left 0.3s ease !important;
		 box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1) !important;
		 border-radius: 0 !important;
		 margin: 0 !important;
		 transform: none !important;
	 }
 
	 /* Sidebar - Active */
	 .filter-sidebar.active,
	 .loop-filter-sidebar.active {
		 left: 0 !important;
	 }
 
	 /* Close Button */
	 .filter-close-btn {
		 display: block !important;
		 position: absolute !important;
		 top: 15px !important;
		 right: 15px !important;
		 width: 32px !important;
		 height: 32px !important;
		 background: #f5f5f5 !important;
		 border: none !important;
		 border-radius: 50% !important;
		 cursor: pointer !important;
		 z-index: 10 !important;
		 transition: all 0.2s ease !important;
	 }
 
	 .filter-close-btn:hover {
		 background: #e0e0e0 !important;
		 transform: rotate(90deg) !important;
	 }
 
	 .filter-close-btn::before,
	 .filter-close-btn::after {
		 content: "" !important;
		 position: absolute !important;
		 width: 16px !important;
		 height: 2px !important;
		 background: #1e1e1e !important;
		 top: 50% !important;
		 left: 50% !important;
	 }
 
	 .filter-close-btn::before {
		 transform: translate(-50%, -50%) rotate(45deg) !important;
	 }
 
	 .filter-close-btn::after {
		 transform: translate(-50%, -50%) rotate(-45deg) !important;
	 }
 
	 /* Overlay */
	 .filter-overlay {
		 display: block !important;
		 position: fixed !important;
		 top: 0 !important;
		 left: 0 !important;
		 width: 100% !important;
		 height: 100% !important;
		 background: rgba(0, 0, 0, 0.5) !important;
		 z-index: 998 !important;
		 opacity: 0 !important;
		 visibility: hidden !important;
		 transition: all 0.3s ease !important;
		 pointer-events: none !important;
	 }
 
	 .filter-overlay.active {
		 opacity: 1 !important;
		 visibility: visible !important;
		 pointer-events: auto !important;
	 }
 
	 /* Products Area */
	 .products-area {
		 width: 100% !important;
		 max-width: 100% !important;
		 margin: 0 !important;
		 padding: 0 !important;
	 }
 
 }
 
 /* =============================================================================
	RESPONSIVE: MOBILE (≤767px)
	============================================================================= */
 
 @media (max-width: 767px) {
	 .filter-sidebar,
	 .loop-filter-sidebar {
		 left: -100% !important;
		 width: 100% !important;
		 max-width: 300px !important;
		 padding: 50px 20px 20px !important;
	 }
 
	 .filter-sidebar.active,
	 .loop-filter-sidebar.active {
		 left: 0 !important;
	 }
 
	 .filter-toggle-btn {
		 width: 56px !important;
		 height: 56px !important;
		 bottom: 16px !important;
		 right: 16px !important;
	 }
 
	 .filter-toggle-btn svg {
		 width: 22px !important;
		 height: 22px !important;
	 }
 
	 .products-area {
		 width: 100% !important;
		 max-width: 100% !important;
		 margin: 0 !important;
		 padding: 0 !important;
	 }
 
	 .custom-product-filter-wrapper,
	 .loop-grid-filter-widget {
		 display: block !important;
		 width: 100% !important;
		 max-width: 100% !important;
		 padding: 15px !important;
		 margin: 0 !important;
		 gap: 0 !important;
	 }
 
	 .btn-add-to-cart,
	 .btn-select-options {
		 width: 100% !important;
		 padding: 10px 12px !important;
	 }
 
	 .product-badges {
		 top: 10px !important;
		 padding: 0 10px !important;
	 }
 }
 
 /* =============================================================================
	RESPONSIVE: SMALL MOBILE (≤480px)
	============================================================================= */
 
 @media (max-width: 480px) {
	 .filter-toggle-btn {
		 width: 52px !important;
		 height: 52px !important;
		 bottom: 12px !important;
		 right: 12px !important;
	 }
 
	 .filter-toggle-btn svg {
		 width: 20px !important;
		 height: 20px !important;
	 }
 
	 .filter-sidebar,
	 .loop-filter-sidebar {
		 max-width: 280px !important;
		 padding: 50px 15px 60px 15px !important;
	 }
 
	 .custom-product-filter-wrapper {
		 padding: 10px !important;
	 }
 }