/* 
Theme Name: Assoluto Theme
Description: Assoluto Theme
Author: Marco Sansevrino
Author URI: https://marcosansevrino.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* Add your custom styles here */


.shopengine-cart-quantity .minus-button,
.shopengine-cart-quantity .plus-button {
    font-size: 0 !important;
    line-height: 1 !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
}
.shopengine-cart-quantity .minus-button::before { content: "\2212"; font-size: 22px; } /* − */
.shopengine-cart-quantity .plus-button::before  { content: "\002B"; font-size: 22px; } /* + */





.assoluto-wishlist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    line-height: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color .2s ease, transform .15s ease;
}
.assoluto-wishlist-btn:hover { transform: scale(1.08); }


.assoluto-wishlist-btn svg {
    width: 22px;
    height: 22px;
    transition: fill .2s ease, stroke .2s ease;
}


.assoluto-wishlist-btn.inactive {
    background: transparent;
}
.assoluto-wishlist-btn.inactive svg {
    fill: transparent !important;
    stroke: #ffffff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .45));
}

.assoluto-wishlist-btn.active {
    background: transparent;
}
.assoluto-wishlist-btn.active svg {
    fill: #FFFFFF !important;
    stroke: #FFFFFF;
    filter: none;
}

/* ===== Notice "aggiunto al carrello" ridisegnato ===== */
body .woocommerce-message {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: var(--e-global-color-text);
  padding: 16px 20px 16px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* barra colorata laterale */
body .woocommerce-message::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--e-global-color-text);
}

/* ✓ in pallino pieno */
body .woocommerce-message::before {
  position: static;
  margin: 0;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--e-global-color-text);
  color: #fff;
  font-size: 14px;
}

/* bottone "Visualizza carrello" con hover */
body .woocommerce-message a.button {
  margin-left: auto;
  border-radius: 8px;
  padding: 8px 16px;
  background: var(--e-global-color-text);
  color: #fff;
  border: 1px solid var(--e-global-color-text);
  transition: background-color .2s ease, color .2s ease;
}
body .woocommerce-message a.button:hover {
  background: #fff;
  color: var(--e-global-color-text);
}
