/* ================= 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;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.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 CART ================= */
.empty {
  padding: 80px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

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

/* ================= BUTTON ================= */
.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 {
    padding: 60px 20px;
  }

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

  /* GENERAL PADDING FIX */
  body {
    overflow-x: hidden;
  }

  header,
  .shop-header,
  .profile-header,
  .admin-header {
    padding: 16px 20px;
  }

  /* HEADINGS */
  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 22px !important;
  }

  /* WRAPPERS */
  .wishlist-wrapper,
  .shop-grid,
  .admin-wrapper,
  .profile-wrapper,
  .checkout-wrapper {
    padding: 40px 20px !important;
  }

}
@media (max-width: 600px) {

  .profile-card {
    padding: 20px;
  }

  .profile-card p {
    font-size: 14px;
  }
}

