/* Wishlist */

.ba-wishlist-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--ba-white);
  color: var(--ba-charcoal);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ba-wishlist-toggle:hover,
.ba-wishlist-toggle.is-active {
  color: var(--ba-gold);
}

.ba-wishlist-toggle.is-active {
  background: var(--ba-gold);
  color: var(--ba-black);
}

.ba-wishlist-toggle.is-loading {
  opacity: 0.7;
}

.ba-wishlist-toggle:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.ba-product-card-wishlist {
  display: flex;
  align-items: center;
}

.ba-single-wishlist {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  vertical-align: middle;
}

.ba-single-wishlist .ba-wishlist-toggle {
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 1px solid var(--ba-gray-light);
  box-shadow: none;
}

.ba-single-wishlist .ba-wishlist-toggle.is-active,
.ba-single-wishlist .ba-wishlist-toggle:hover {
  border-color: var(--ba-gold);
  background: var(--ba-gold);
  color: var(--ba-black);
}

.header-wishlist {
  position: relative;
}

.wishlist-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  color: var(--ba-white);
  background: var(--ba-gold);
  border-radius: 9px;
}

.wishlist-count[data-count="0"] {
  display: none;
}

.ba-container.ba-wishlist-page,
.ba-wishlist-page {
  padding-top: 64px;
  padding-bottom: 80px;
}

.ba-wishlist-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.ba-wishlist-grid > li.product,
.ba-wishlist-grid > li.ba-product-card-item {
  width: 100% !important;
  max-width: 100%;
  margin: 0 !important;
  float: none !important;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .ba-container.ba-wishlist-page,
  .ba-wishlist-page {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .ba-wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .ba-wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.ba-wishlist-empty {
  text-align: center;
  padding: 64px 24px;
}

.ba-wishlist-empty .ba-icon,
.ba-wishlist-empty i {
  font-size: 48px;
  width: 48px;
  height: 48px;
  color: var(--ba-gold);
  margin-bottom: 16px;
}

.ba-wishlist-empty p {
  margin-bottom: 24px;
  color: var(--ba-gray);
}

/* Newsletter feedback */

.ba-newsletter-message {
  margin: 8px 0 0;
  font-size: 13px;
}

.ba-newsletter-message.is-success {
  color: var(--ba-gold);
}

.ba-newsletter-message.is-error {
  color: #c0392b;
}

/* Bulk inquiry notices */

.ba-notice {
  padding: 16px 20px;
  border-radius: var(--ba-radius);
  margin-bottom: 24px;
  font-size: 14px;
}

.ba-notice-success {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--ba-gold);
  color: var(--ba-charcoal);
}

.ba-notice-error {
  background: rgba(192, 57, 43, 0.1);
  border: 1px solid #c0392b;
  color: #922b21;
}
