.shop-container {
  padding: 0 22px;
  overflow-x: hidden;
}

.shop-container .shop-container-top{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 38px;
}

.shop-container .shop-container-top .woocommerce-notices-wrapper{
	width: 100%;
}

.shop-container .shop-container-top .shop-container-top-filter{
	margin-bottom: 0px !important;
}

.shop-container .shop-container-top .woocommerce-ordering {
  float: none;
  margin: 0;
  display: inline-flex;
  align-items: start;
}

.shop-container .woocommerce-ordering select {
  width: 100%;
  max-width: 100%;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 2px solid #36B0AE;
  border-radius: 0;
  padding: 6px 0px;
  font-size: 16px;
  color: #36B0AE;
  transition: all 0.3s ease;
}


.products-flex {
	display: flex;
	width: 100%;
	flex-direction: row;
	justify-content: space-between;
	align-items: start;
	flex-wrap: wrap;
	gap: 20px;
}

.products-flex .product-item-shop {
	margin: 0;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-align: left;
	padding: 0 10px;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 160px;
	position: relative;
}

.products-flex .product-item-shop .product-item-image {
	width: 100%;
	height: 233px;
	object-fit: cover;
	padding: 0;
	margin: 0;
	margin-bottom: 25px;
	display: inline-flex;
	align-items: center;
}

.products-flex .product-item-shop .product-item-image img {
  margin: 0;
}

.products-flex .product-item-shop .onsale {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	background-color: #ff0000;
	height: 48px;
	width: 48px;
	display: flex;
	align-items: center;
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	border-radius: 50%;
	min-width: auto;
	min-height: auto;
}

.products-flex .product-item-shop img {
	width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: cover;
	margin-bottom: 25px;
}

.products-flex .product-item-shop .woocommerce-loop-product__link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	width: 100%;
	margin-bottom: 22px;
	text-align: left;
	flex-grow: 1;
}

.products-flex .product-item-shop h2 {
	font-size: 18px;
	line-height: 20px;
	color: #000;
	margin-bottom: 18px;
	margin-top: 0px;
}

.products-flex a .price {
	color: #000 !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	margin-bottom: 25px;
}

.products-flex a .price del {
  color: #BABABA;
  font-weight: 700 !important;
	margin-left: 5px;
}

.products-flex a .price ins {
	color: #36b0ae;
  font-weight: 700 !important;
	text-decoration: none;
}

.products-flex a.add_to_cart_button {
	display: inline-flex;
	align-items: center;
	padding: 9px 21px;
	background-color: #36b0ae !important;
	color: #fff !important;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	margin-top: auto;
	white-space: nowrap;
}

.products-flex a.add_to_cart_button:before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(../images/cart.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 5px;
}

.products-flex .product-item-shop-short-description {
	font-size: 16px;
	line-height: 18px;
	color: #36b0ae;
	margin-bottom: 20px;
	margin-top: 0px;
}

/* Filter Styles */
.shop-container-top-filter {
  margin-bottom: 30px;
}

.shop-container-top-filter-item {
  position: relative;
  display: inline-block;
}

.filter-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #36B0AE;
  transition: all 0.3s ease;
  background-color: transparent !important;
}

.filter-button:hover {
  border-color: #36B0AE;
  color: #36B0AE;
}

.filter-button svg {
  transition: transform 0.3s ease;
}

.filter-button.active svg {
  transform: rotate(180deg);
}

/* Dropdown */
.filter-dropdown {
  position: absolute;
  width: 300px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.filter-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter-dropdown[style*="bottom: 100%"] {
  transform: translateY(10px);
}

.filter-dropdown[style*="bottom: 100%"].active {
  transform: translateY(0);
}

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

.filter-section h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
}

.filter-list li {
  margin-bottom: 8px;
}

.filter-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.filter-list input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-radius: 4px;
}

/* Price Range */
.price-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-range input {
  width: 100px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

/* Filter Actions */
.filter-actions {
  padding: 16px;
  display: flex;
  gap: 12px;
}

.reset-filter,
.apply-filter {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reset-filter {
  background: #f5f5f5;
  color: #666;
}

.apply-filter {
  background: #36B0AE;
  color: #fff;
}

.reset-filter:hover {
  background: #eee;
}

.apply-filter:hover {
  background: #2a8d8b;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .filter-dropdown {
    width: calc(100vw - 32px);
    left: 16px !important;
    right: 16px !important;
  }
}