.wl-container {
  width: 100%;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.wl-section-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.wl-section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--on-surface);
  letter-spacing: 0;
}

.wl-section-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--on-surface-variant);
  font-weight: 400;
}

.wl-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  display: inline-block;
  animation: wl-spin 0.7s linear infinite;
}

@keyframes wl-spin {
  to { transform: rotate(360deg); }
}

.wl-wishlist {
  padding: 48px 0 64px;
  width: 100%;
  overflow-x: hidden;
}

.wl-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  min-height: 200px;
  width: 100%;
  box-sizing: border-box;
}

.wl-feed-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 0;
  color: var(--on-surface-faint);
}

.wl-feed-empty i {
  font-size: 3rem;
  color: var(--on-surface-variant);
}

.wl-feed-empty p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}

.wl-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}

.wl-btn-primary {
  background: var(--gradient-primary);
  color: var(--on-primary);
}

.wl-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-elevated);
}

.wl-feed-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 0;
  color: var(--on-surface-variant);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}

.wl-feed-loader.is-visible {
  display: flex;
}

/* Show More Button */
.wl-feed-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.wl-feed-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  background: var(--surface);
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.wl-feed-more:hover {
  background: var(--primary);
  color: var(--on-primary);
}

.wl-feed-more.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.wl-feed-more.is-hidden {
  display: none;
}

/* Remove from wishlist button on cards */
.wl-pcard-remove {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(220, 38, 38, 0.9);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.15s ease;
  opacity: 0;
  transform: translateY(-4px);
}

.wl-pcard:hover .wl-pcard-remove {
  opacity: 1;
  transform: translateY(0);
}

.wl-pcard-remove:hover {
  background: rgba(185, 28, 28, 1);
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 1200px) {
  .wl-feed-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 960px) {
  .wl-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .wl-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .wl-section-title {
    font-size: 26px;
  }

  .wl-pcard-remove {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .wl-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .wl-section-head {
    margin-bottom: 20px;
  }

  .wl-wishlist {
    padding: 32px 0 48px;
  }
}
