/**
 * Euroflora Wishlist Styles - LIGHTWEIGHT VERSION
 * Optimized for performance
 */

/* Heart Icon Button - SIMPLIFIED */
.ef-wishlist-heart {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ef-wishlist-heart:hover {
  background: #fff;
}

.ef-wishlist-heart .heart-icon {
  color: #666;
  fill: transparent;
}

.ef-wishlist-heart.in-wishlist .heart-icon {
  fill: #e74c3c;
  color: #e74c3c;
}

.ef-wishlist-heart.in-wishlist {
  background: #fff;
}

.ef-wishlist-heart.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Wishlist Count Badge - SIMPLIFIED */
.ef-wishlist-count {
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -8px;
  right: -15px;
  z-index: 11;
  line-height: 1;
  padding: 0 4px;
}

/* Notifications - SIMPLIFIED */
.ef-notifications-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  pointer-events: none;
}

.ef-notification {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 8px;
  padding: 12px 16px;
  min-width: 280px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  pointer-events: auto;
  border-left: 4px solid #039a47;
}

.ef-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.ef-notification-error {
  border-left-color: #e74c3c;
}

.ef-notification-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.4;
}

.ef-notification-close {
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #999;
  margin-left: 12px;
  padding: 0;
  outline: none;
}

.ef-notification-close:hover {
  color: #666;
}

/* Mobile adjustments - MINIMAL */
@media (max-width: 768px) {
  .ef-wishlist-heart {
    width: 30px;
    height: 30px;
  }

  .ef-notification {
    left: 10px;
    right: 10px;
    min-width: auto;
    max-width: none;
  }
}

/* .rg-icons > div:nth-child(2),
.ef-wishlist-heart {
  display: none !important;
} */

/* div[data-shop="GOLDEN"] .ef-wishlist-heart {
  display: none !important;
} */

.ef-wishlist-empty {
  width: 100%;
}
