/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(249,168,212,0.35) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(236,72,153,0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(251,207,232,0.2) 0%, transparent 70%);
}

.hero-deco {
  position: absolute;
  font-size: 6rem;
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
}
.hero-deco:nth-child(1) { top: 5%;    left: 3%;  font-size: 5rem; }
.hero-deco:nth-child(2) { top: 10%;   right: 5%; font-size: 4rem; }
.hero-deco:nth-child(3) { bottom: 12%; left: 8%; font-size: 3.5rem; }
.hero-deco:nth-child(4) { bottom: 8%; right: 6%; font-size: 5rem; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: var(--pink-mid);
  color: var(--pink-dk);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--pink); }

.hero-tagline {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(236,72,153,0.35);
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236,72,153,0.45);
}

/* ── Sections ── */
section { padding: 5rem 1.5rem; }
.container { max-width: 900px; margin: 0 auto; }

/* ── About ── */
.about-section { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  aspect-ratio: 1;
  background: var(--pink-lt);
  border-radius: var(--radius);
  border: 2px dashed var(--pink-acc);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a2535;
  font-weight: 300;
}
.about-text p + p { margin-top: 1rem; }

.about-sig {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--pink);
  margin-top: 1.5rem;
}

/* ── Products ── */
.products-section { background: var(--pink-lt); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(249,168,212,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(236,72,153,0.15);
}

.product-img {
  background: var(--pink-lt);
  height: 200px;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  border-bottom: 1px solid var(--pink-mid);
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--pink);
  font-family: 'Playfair Display', serif;
}

.product-btn {
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--pink-lt);
  color: var(--pink);
  border: 1.5px solid var(--pink-acc);
  padding: 6px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.product-btn:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }

/* ── Order section ── */
.order-section { background: var(--white); text-align: center; }

.order-card {
  max-width: 560px;
  margin: 2.5rem auto 0;
  background: var(--pink-lt);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--pink-mid);
}

.order-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a2535;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.order-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--pink-acc);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pink);
  text-decoration: none;
  transition: all 0.2s;
}
.order-email:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--pink-lt);
  border-top: 1px solid var(--pink-mid);
  font-size: 0.8rem;
  color: var(--muted);
}
footer strong { color: var(--pink); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
}
