/* ==========================================================================
   WISHLIST PAGE STYLESHEET - wish.css
   Custom external styles for the standalone Wishlist page
   ========================================================================== */

/* Breadcrumb Banner */
.mve-breadcrumb-section {
  background-color: #121212;
  color: #ffffff;
  padding: 30px 0;
  border-bottom: 1px solid #262626;
}

.mve-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #a3a3a3;
  margin-bottom: 8px;
}

.mve-breadcrumb a {
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mve-breadcrumb a:hover {
  color: #dc2626;
}

.mve-page-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
}

/* Wishlist Top Header Bar */
.mve-wishlist-header-bar {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0px !important;
  padding: 16px 24px;
  margin-bottom: 24px;
}

.mve-wishlist-count-badge {
  background-color: #fee2e2;
  color: #fd6e01;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 0px !important;
  border: 1px solid #fca5a5;
}

.mve-wishlist-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mve-btn-add-all-cart {
  background-color: #dc2626;
  color: #ffffff;
  border: 1px solid #b91c1c;
  border-radius: 0px !important;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.mve-btn-add-all-cart:hover {
  background-color: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.mve-btn-clear-wishlist {
  background-color: transparent;
  color: #64748b;
  border: 1px dashed #cbd5e1;
  border-radius: 0px !important;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.mve-btn-clear-wishlist:hover {
  color: #dc2626;
  border-color: #dc2626;
  background-color: #fff1f2;
}

/* Wishlist Remove Button Overlay */
.mve-wishlist-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background-color: #fd6e01;
  color: #ffffff;
  border: none;
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
}

.mve-wishlist-remove-btn:hover {
  background-color: #0f172a;
  transform: scale(1.1);
}

/* In Stock Badge */
.mve-stock-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  background-color: #dcfce7;
  padding: 2px 8px;
  border-radius: 0px !important;
  display: inline-block;
  margin-bottom: 8px;
}

/* Empty Wishlist Container */
.mve-empty-wishlist-box {
  background-color: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 0px !important;
  padding: 60px 20px;
  text-align: center;
  display: none;
}

.mve-empty-icon {
  font-size: 4rem;
  color: #cbd5e1;
  margin-bottom: 16px;
}

/* Mobile Responsiveness for Wishlist Page (< 767.98px) */
@media (max-width: 767.98px) {
  .mve-wishlist-header-bar {
    padding: 12px 14px !important;
    gap: 12px !important;
  }

  .mve-wishlist-btn-group {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
  }

  .mve-btn-add-all-cart,
  .mve-btn-clear-wishlist {
    flex: 1 1 50% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 8px 6px !important;
    font-size: 0.78rem !important;
    white-space: nowrap !important;
  }
}
