/**
 * Products List
 */
div.column.main{
	ol.products{
		div.product-actions{
			button.btn-cart{
			   	width: 100%;
			   	margin: auto;
			}
		}

		a.product-item-link{
	        color: #333;
		    font-size: 1.1em;
		    text-decoration: none;
	    }

	    a.product-item-link:hover{
	   	 	color: #e47911;
	   	}

	   	div.price-box{
	   		margin-top: 1.5em;
	   	}

	   	h2.product-name{
   		    -webkit-line-clamp: 3;
	        height: 65px;
	   	}

	   	div.add-to-links{
   		    width: 100%;
		    margin: auto;
		    margin-top: 1em;
		    display: block;

	   		a.action{
			  	width: 100%;
                padding: 0.5em;
                line-height: 25px;
                height: 38px;
                font-size: 1.2em;
	   		}

	   		i.icon{
	   			display: inline;
	   		}
	   	}

	   	li.item{
	   		border-bottom: none;
	   	}

	   	li.item:after{
	   		display: none;
	   	}

	   	div.product-item-info{
   		    background: rgb(251, 251, 251);
            border: 2px solid #eee;
            border-radius: .5em;

            span.product-image-wrapper{
            	background: white;
   			    border-top-left-radius: .30em;
				border-top-right-radius: .30em;
	   		}
	   	}

	   	div.product-item-info:hover{
	   		border-color: #eee;
	   	}
	}

	div.category-description{
		margin-bottom: 1em;
	}

	span.old-price span.price{
		color: var(--th-red);
	}

	div.product-reviews-summary{
		div.reviews-actions{
			margin-left: 1em;
		}
	}
}

/**
 * Sidebar
 */
.has-sidebar-filters-toggle.filter-active .sidebar-filters-toggle:before{
	font-size: 2.5em;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
}

div.sidebar-main{
	div.filter-options{
		display: block !important;

		div.smile-es-range-slider{
			div[data-role=to-label]{
				margin-bottom: .5em;
			}
			
			div.actions-primary{
				cursor: pointer;
			}
		}

		div.filter-options-content{
			ol.items{
				li.item{
					margin-top: -6px;

					a{
						color: #333 !important;
						font-weight: 700 !important;

						input{
							margin-top: -20px !important;
				            transform: scale(1.3);
				            margin-right: .5em;
						}

						label span:not(.count),
						span.category-name{
							display: inline-block;
						    width: 164px;
						    overflow: hidden;
						    white-space: nowrap;
						    text-overflow: ellipsis;
						    margin-right: 0em;
						}

						span.category-name{
							margin-top: .25em;
						}

						label span:not(.count):hover,
						span.category-name:hover{
							color: #e47911;
						}
					}
				}

				li.item:first-child{
					margin-top: 0;

					a{
						span.category-name{
							margin-top: 0;
						}
					}	
				}

				li.item:has(input){

					input,
					label{
					    cursor: pointer;
					}
				}
			}

			input.filter-search{
			    margin-bottom: 1em;
			}

			div.no-results-message{
				display: none;
			}
		}

		div.filter-options-content:not(:has(.smile-es-range-slider)){
		    overflow-y: auto;
		    max-height: 45vh;
		    scrollbar-color: #e47911 #f1f1f1;
            background: #fffdf5;
		}
	}	
}