.eazy-wishlist-heart {
  font-size: 20px;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* .eazy-wishlist-heart .filled {
    color: #000;
}

.eazy-wishlist-heart:hover {
    color: #000;
} */

.eazy-wishlist-remove,
.eazy-wishlist-add {
  border: none;
  background-color: transparent;
}

.eazy-wishlist-heart .fa {
  font: normal normal normal 14px/1 FontAwesome !important;
  font-size: 20px !important;
  color: #333;
}

.wishlist-item select {
  padding: 10px 20px;
  font-size: 14px;
  font-family: Manrope-bold;
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 25px;
  outline: 0;
  cursor: pointer;
  text-transform: uppercase;
  width: 136px;
  appearance: none;
  background: url(../images/octicon_chevron-down-12.svg) no-repeat right 15px
    center;
  background-size: 12px;
  min-width: fit-content !important;
}

#eazy-wishlist-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ew-popup-content{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#eazy-wishlist-popup .popup-content {
  padding: 20px;
  text-align: center;
  background: #fff; 
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 450px;
  margin: 0px 20px;
  position: relative;
}

#eazy-wishlist-popup .top {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

#eazy-wishlist-popup .color-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#eazy-wishlist-popup .color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: border 0.3s;
}

#eazy-wishlist-popup .color-option.selected {
  border: 2px solid #333;
}

#eazy-wishlist-popup .age-select {
  width: 100%;
  padding: 10px;
  margin:0px 0px 20px 50px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#eazy-wishlist-popup .variation-image {
  max-width: 50%;
  height:auto;
}

#eazy-wishlist-popup .variation-price {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

#eazy-wishlist-popup .select-variation,
#eazy-wishlist-popup .close-popup {
  display: inline-block;
  padding: 5px 10px;
  margin: 5px;
  border: none;
  color: #000;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

/* #eazy-wishlist-popup .select-variation:hover,
#eazy-wishlist-popup .close-popup:hover {
  background: #005177;
} */

.eazy-wishlist-loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eazy-wishlist-loader .loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}