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

body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #111;
}

.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 36px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.profile-header button {
  padding: 8px 16px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
}

.profile-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

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

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

.profile-card {
  background: #fff;
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.08);
  text-align: left;
}

.profile-card p {
  font-size: 15px;
  margin-bottom: 16px;
}
/* ================= 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;
  }
}
