/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #111;
  min-height: 100vh;
}

/* ===== HEADER ===== */
.wishlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.back {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: 2px;
}

/* ===== MAIN ===== */
.wishlist-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

.wishlist-wrapper h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 60px;
}

/* ===== EMPTY STATE ===== */
.empty {
  padding: 80px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.empty p {
  font-size: 16px;
  margin-bottom: 24px;
}

.shop-link {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.shop-link:hover {
  background: #000;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .wishlist-wrapper h1 {
    font-size: 32px;
  }

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