.wishlist-wrapper {
  padding: 40px 20px;
}

.wishlist-title {
  font-size: 28px;
  margin-bottom: 24px;
}

.empty-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.wishlist-empty-state {
    max-width: 500px;
    margin: 120px auto;
    text-align: center;
    padding: 0 20px;
}

.wishlist-empty {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.empty-btn {
    max-width: 280px;
    margin: 0 auto;
}

.btn-checkout {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    background: linear-gradient(135deg, #D4AF37, #f9e076);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.btn-checkout::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: transform 0.6s ease;
}

.btn-checkout:hover::after {
    transform: translateX(240%);
}

.btn-checkout:hover {
    transform: scale(1.05);
}



/* 6 products */
.wishlist-grid {
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1400px) {
  .wishlist-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Trash button */
.wishlist-remove {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 16px;
  transition: all .2s ease;
  z-index: 5;
}

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