/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* Stiluri pentru iconițele de coș și wishlist WooCommerce */
.icon-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.icon-container {
  position: relative;
  font-size: 24px;
  color: #000;
}

.icon-container .badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: orange;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .icon-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
}

#sleepy-cat {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  z-index: 9999;
  pointer-events: none;
  transform: translateY(23%); /* corectare padding din JSON */
}

/* Responsive pentru mobile */
@media screen and (max-width: 767px) {
  #sleepy-cat {
    width: 70px;
    height: 70px;
    transform: translateY(25%);
  }
}

/* CSS pentru pagina de produs */
.extrucan-rating span {
  font-size: 18px;
  margin-right: 2px;
}
.woocommerce div.product .summary {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
}
.woocommerce div.product form.cart {
  margin-top: 20px;
  background: #fdfdfd;
  padding: 15px;
  border-radius: 10px;
}
.woocommerce .upsells.products h3 {
  font-size: 20px;
  color: #2d2d2d;
  margin-bottom: 15px;
}


