:root {
  color: #2f2751;
  background: #fbf7ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 214, 239, 0.95), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(205, 230, 255, 0.9), transparent 28%),
    radial-gradient(circle at 70% 76%, rgba(224, 210, 255, 0.9), transparent 34%),
    linear-gradient(135deg, #fff9fd 0%, #f3f0ff 48%, #eef9ff 100%);
  margin: 0;
  min-height: 100vh;
}

body::before {
  color: rgba(255, 255, 255, 0.9);
  content: "✦  ✧     ✦        ✧   ✦      ✧";
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  left: 0;
  letter-spacing: 1.2rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  text-align: center;
  text-shadow: 0 0 18px rgba(181, 155, 255, 0.65);
  top: 6rem;
  z-index: 0;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  color: #5546a0;
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: #756d9a;
  font-weight: 700;
  text-decoration: none;
}

main,
.site-header {
  position: relative;
  z-index: 1;
}

.hero {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr;
  padding: clamp(2rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.hero-text h1 {
  background: linear-gradient(135deg, #5145b5, #d36bff, #ff8acb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  max-width: 900px;
  text-shadow: 0 18px 45px rgba(170, 130, 255, 0.18);
}

p {
  color: #756d9a;
  font-size: 1.05rem;
  line-height: 1.7;
}

.eyebrow {
  color: #b06bff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button,
button {
  background: linear-gradient(135deg, #ff8acb, #9f8cff);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(159, 140, 255, 0.28);
  color: white;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  font-weight: 800;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
button:hover {
  box-shadow: 0 18px 36px rgba(255, 138, 203, 0.34);
  transform: translateY(-2px);
}

.button-dark {
  background: linear-gradient(135deg, #5a4fcf, #2f2751);
}

.hero-card,
.product-card,
.features article,
.contact {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  box-shadow: 0 24px 70px rgba(119, 91, 185, 0.18);
  backdrop-filter: blur(16px);
}

.hero-card {
  min-height: 380px;
  padding: 2rem;
  position: relative;
  text-align: center;
}

.sale-badge {
  background: linear-gradient(135deg, #5a4fcf, #ff8acb);
  border-radius: 999px;
  color: white;
  font-weight: 800;
  padding: 0.5rem 0.8rem;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}

.outfit-emoji,
.product-image {
  align-items: center;
  background: linear-gradient(135deg, #ffe4f4, #dcd2ff 55%, #dff6ff);
  border-radius: 1.2rem;
  display: flex;
  font-size: 5rem;
  justify-content: center;
}

.outfit-emoji {
  box-shadow: inset 0 0 45px rgba(255, 255, 255, 0.65);
  height: 210px;
  margin-bottom: 1.5rem;
}

.section {
  padding: 3rem clamp(1rem, 4vw, 4rem);
}

.intro {
  background: rgba(255, 255, 255, 0.28);
}

.section-heading {
  margin-bottom: 1.5rem;
  text-align: center;
}

.section h2,
.contact h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  margin: 0.25rem 0 1rem;
}

.features,
.product-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}

.features article,
.product-card {
  padding: 1.5rem;
}

.features span {
  font-size: 2rem;
}

.product-image {
  height: 180px;
  margin-bottom: 1rem;
}

.product-card strong {
  display: block;
  font-size: 1.4rem;
  margin: 1rem 0;
}

.product-card.added {
  outline: 3px solid #c9b6ff;
}

.contact {
  margin: 3rem clamp(1rem, 4vw, 4rem) 4rem;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

@media (max-width: 760px) {
  .site-header,
  .hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .features,
  .product-grid {
    grid-template-columns: 1fr;
  }

  nav {
    flex-wrap: wrap;
  }
}
