/* ================================================
   ACERO SHOP V2 - WISHLIST PAGE STYLES
   ================================================
   Page-specific styles for wishlist.html
   Mobile First.
   ================================================ */

/* ============================================
   WISHLIST HEADER
   ============================================ */

.wishlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-12) var(--space-16);
  font-size: var(--font-size-description);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-divider);
}

#wishlistCount {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

/* ============================================
   WISHLIST GRID
   ============================================ */

#wishlistGrid {
  padding: var(--space-12);
}

/* ============================================
   WISHLIST PRODUCT CARD OVERRIDES
   ============================================ */

#wishlistGrid .product-card {
  position: relative;
}

.wishlist-remove-btn {
  position: absolute;
  top: var(--space-8);
  right: var(--space-8);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-danger);
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-fast);
}

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

.wishlist-move-cart {
  display: block;
  width: 100%;
  padding: var(--space-8);
  text-align: center;
  background-color: #F0FDF9;
  color: var(--color-primary);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  border-top: 1px solid #D4F5ED;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.wishlist-move-cart:hover {
  background-color: #D4F5ED;
}

.wishlist-added-date {
  font-size: 10px;
  color: var(--color-text-muted);
  padding: var(--space-4) var(--space-8);
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 768px) {
  .wishlist-header {
    padding: var(--space-16) var(--space-24);
  }

  #wishlistGrid {
    padding: var(--space-16) var(--space-24);
  }
}

@media (min-width: 1024px) {
  .wishlist-header {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: var(--space-16) var(--space-32);
  }

  #wishlistGrid {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: var(--space-16) var(--space-32);
  }
}