.elementor-17186 .elementor-element.elementor-element-25ad277{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-892426a *//* 🔹 Shop Wrapper */
#s22-shop-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin: 40px 0;
}

/* 🔹 Filters Sidebar */
#s22-filters {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

#s22-filters h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

#s22-filters h4 {
    font-size: 16px;
    margin: 15px 0 10px;
    font-weight: 600;
}

#s22-filters label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    cursor: pointer;
}

#s22-filters input[type="checkbox"] {
    margin-right: 8px;
}

/* Price Slider */
#s22-filter-price {
    width: 100%;
}
#s22-price-value {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* 🔹 Product Grid */
.s22-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.s22-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 15px;
}

.s22-product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.s22-product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.s22-product-card:hover img {
    transform: scale(1.05);
}

.s22-product-card h3 {
    font-size: 15px;
    margin: 8px 0;
    color: #333;
    font-weight: 600;
    min-height: 40px;
}

.s22-price {
    font-size: 16px;
    font-weight: bold;
    color: #e63946;
    margin: 8px 0;
}

/* 🔹 Loading */
.s22-loading {
    text-align: center;
    font-size: 16px;
    padding: 40px;
    color: #555;
}

/* 🔹 Responsive */
@media (max-width: 992px) {
    #s22-shop-wrapper {
        grid-template-columns: 1fr;
    }
    #s22-filters {
        margin-bottom: 20px;
    }
}


/* Filter dropdowns */
.s22-dropdown-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-direction: column;
    
}

.s22-dropdown-filters select {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}
.s22-dropdown-filters select:hover {
    border-color: #999;
}

/* Color Swatches */
#s22-filter-color {
    display: flex;
    flex-wrap: Wrap;
    align-items: center;
    gap: 8px;
}

.s22-color-label {
    font-size: 14px;
    font-weight: 600;
    margin-right: 5px;
}

.s22-color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.2s ease, border 0.2s ease;
}
.s22-color-swatch:hover {
    transform: scale(1.2);
    border-color: #333;
}
.s22-color-swatch.active {
    border-color: #000;
}

.s22-clear-btn {
    margin-top: 15px;
    padding: 8px 15px;
    background: #f44336;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}
.s22-clear-btn:hover {
    background: #d32f2f;
}/* End custom CSS */