#juanin-cart-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9997!important;
}

#juanin-cart-btn {
  background: #610bfc !important;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 12px 16px;
  font-size: 20px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

#juanin-cart-btn i {
  margin-right: 5px;
  color: #fff !important;
  transition: transform 0.2s ease;
}

#juanin-cart-btn:hover i {
  transform: scale(1.2);
  color: #ffccff !important;
}

#juanin-cart-btn:hover::before {
  content: '';
}

#juanin-cart-count {
  background: red;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  position: absolute;
  top: -5px;
  right: -5px;
}

#juanin-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#juanin-cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

#juanin-cart-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#juanin-cart-panel.active {
  transform: translateX(0);
  opacity: 1;
}

.juanin-cart-header {
  padding: 15px;
  background: #f0f0ff;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
}

#juanin-cart-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #610bfc;
}

#juanin-cart-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 15px;
  font-size: 14px;
}

#juanin-cart-content .woocommerce-mini-cart-item img {
  width: 80px !important;
  height: auto;
}

.juanin-cart-footer {
  padding: 15px;
  border-top: 1px solid #eee;
}

.juanin-cart-footer a {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  background: #610bfc!important;
  color: #fff;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
}

/* Imagen y texto juntos */
.woocommerce-mini-cart-item .product-image {
  flex-shrink: 0;
}

.woocommerce-mini-cart-item .product-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

/*Estilos cart toast*/
#juanin-cart-toast {
  position: fixed;
  top: -100px; /* 👈 Fuera de pantalla al inicio */
  left: 50%;
  transform: translateX(-50%);
  background-color: #03297F;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: top 0.4s ease, opacity 0.4s ease;
}

#juanin-cart-toast.show {
  top: 20px; /* 👈 Se desliza a esta posición */
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 420px) {
  #juanin-cart-toast {
    width: 85%;
    text-align: center;
  }
}

.woocommerce-mini-cart-item img {
  width: 70px !important;
  height: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

.woocommerce-mini-cart-item .quantity,
.woocommerce-mini-cart-item .remove {
  margin-left: auto;
}
