:root {
  --pink: #e91e63;
  --purple: #9c27b0;
  --orange: #ff9800;
  --dark: #2c1a3a;
  --light: #fff8f0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
header {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  padding: 3rem 0;
  text-align: center;
}
header h1 { font-size: 2.8rem; margin-bottom: 0.3rem; }
.tagline { font-size: 1.25rem; opacity: 0.95; }
section { margin: 3.5rem 0; }
h2 { color: var(--purple); margin-bottom: 1.5rem; font-size: 1.9rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-top: 5px solid var(--orange);
}
.card h3 { color: var(--pink); margin-bottom: 0.5rem; }
.card a { color: var(--purple); font-weight: 600; }
button, .btn {
  background: var(--pink);
  color: white;
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s;
}
button:hover { transform: translateY(-2px); background: #c2185b; }
form label { display: block; margin: 1rem 0 0.3rem; font-weight: 500; }
input, textarea {
  width: 100%;
  padding: 0.7rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
.modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
}
.modal.hidden { display: none; }
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  width: 90%; max-width: 420px;
  position: relative;
}
.close { position: absolute; top: 1rem; right: 1.2rem; font-size: 1.8rem; cursor: pointer; }
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 4rem;
}
#payment-methods { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; }
#payment-methods li {
  background: white;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}