.shop-grid {
  display: flex;
  gap: 32px;
}
.shop-page-main-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding:0 16px;
}
@media (min-width:600px) and (max-width:992px) {
	.shop-page-main-container {
		gap:20px
	}
}

.apply-filter-options{
	margin-bottom:20px;
	margin-left:auto;
	display:flex;
	justify-content:flex-end;
}
.apply-filter-options h4{
	margin:0;
	font-size:16px;
	display:flex;
	justify-content:flex-end;
	
}
@media (min-width:600px){
	.apply-filter-options{
		display:none
   }
}

.shop-page-main-container .sidebar-shop-filters {
  width: 307px;
  border-radius: 12px;
  padding: 24px 16px;
  border: 1px solid #e5e5e5;
  background: #f2f2f2;
}
@media (max-width:600px){
	.shop-page-main-container .sidebar-shop-filters {
		position:fixed;
		height:100svh;
		overflow:auto;
		z-index:999;
		left:0;
		top:0;
		bottom:0;
		border-radius:0;
		display:none;
	}
}
.no-scroll {
	overflow: hidden;
	height: 100vh; 
}
.shop-page-main-container .sidebar-shop-filters.active{
	    display: block;
}
.shop-page-main-container .sidebar-shop-filters h3 {
  color: #666;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
}
.shop-page-main-container .sidebar-shop-filters form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-shop-grid-wrapper h4 {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin: 0;
}
.shop-page-main-container .product-shop-grid {
  margin-top: 24px;
  width: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 35px;
  column-gap: 24px;
}
@media (max-width:400px){
	.shop-page-main-container .product-shop-grid {
	 grid-template-columns: repeat(1, 1fr);
			row-gap: 16px;
	}
}
@media (min-width:400px) and (max-width:600px) {
	.shop-page-main-container .product-shop-grid {
	 grid-template-columns: repeat(2, 1fr);
	 column-gap: 16px;
			row-gap: 16px;
	}
}
@media (min-width:600px) and (max-width:720px) {
	.shop-page-main-container .product-shop-grid {
		 grid-template-columns: repeat(1, 1fr);
		row-gap: 16px;
	}
}
@media (min-width:720px) and (max-width:992px) {
	.shop-page-main-container .product-shop-grid {
		 grid-template-columns: repeat(2, 1fr);
		row-gap: 24px;
	}
}
.sidebar-shop-filters h4 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
  color: #666666;
  font-weight: 600;
}
.availability-wrapper .filter-options {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.availability-wrapper .filter-options label {
  padding: 4px 10px;
  border-radius: 50px;
  color: black;
  border: 1px solid #000;
  display: inline;
  font-weight: 400;
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.availability-wrapper .filter-options label.active {
  background-color: #333; /* dark background */
  color: #fff; /* white text */
  border-color: #333; /* match border to background */
}

.color-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.color-circle {
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}

.color-circle input {
  display: none;
}

.color-circle .circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.1s ease;
  border: 2px solid transparent;
  background-color: transparent;
  cursor: pointer;
  box-sizing: border-box;
}

/* On hover: shrink */
.color-circle .circle:hover {
  transform: scale(0.75);
}

/* On selection: shrink + dark fill + light grey ring */
.color-circle.active .circle,
.color-circle input:checked + .circle {
  transform: scale(0.75);
  background-color: #333;
  outline: 6px solid #ddd; /* light grey ring */
  outline-offset: 0;
  border: none; /* remove border */
  box-sizing: border-box;
}

.size-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #ccc;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  transition: all 0.2s ease-in-out;
}

.size-pill.active {
  background: #333;
  color: #fff;
  border-color: #333;
}
.price-range .price-inputs {
  display: flex;
  gap: 23px;
  margin-top: 24px;
}
/* Price Slider Track */
#price-slider.ui-slider {
  height: 5px;
  background: #3355ff;
  border: none;
  border-radius: 5px;
  position: relative;
  margin: 15px 0;
}
#price-slider .ui-slider-range {
  background: #3355ff;
  height: 5px;
  border-radius: 5px;
}
#price-slider .ui-slider-handle {
  width: 16px;
  height: 16px;
  background: #3355ff;
  border: 0px;
  border-radius: 50%;
  top: -6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
#price-slider .ui-slider-handle:hover {
  transform: scale(1.1);
}
.buttons-wrapper {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 14px;
}
.buttons-wrapper > * {
  width: 100%;
  height: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.buttons-wrapper .clear-filter {
  border-radius: 12px;
  text-decoration: none;
  background: #e5e5e5;
  font-weight: 500;
  color: #000;
}
.buttons-wrapper .clear-filter:hover {
  background: #e5e5e3;
  color: #000;
}
.filter-sizes .sizes-cols {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Full slider track - light grey by default */
#price-slider.ui-slider {
  position: relative;
  height: 6px;
  background-color: #ddd; /* light grey */
  border-radius: 3px;
  margin: 15px 0;
}

/* Range between the handles - blue */
#price-slider .ui-slider-range {
  position: absolute;
  height: 100%;
  background-color: #3355ff; /* active range color */
  border-radius: 3px;
}

/* Handle styles */
#price-slider .ui-slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-color: #3355ff;
  border: 2px solid #3355ff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 0 2px #3355ff;
  transition: transform 0.2s ease;
}

#price-slider .ui-slider-handle:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 0 3px #004a99;
}

