:root {
  --accent: #c9457b;
  --accent-dark: #9c3260;
  --ink: #2b2230;
  --muted: #6f6470;
  --bg: #fffaf9;
  --card-bg: #ffffff;
  --border: #f0dfe4;
  --radius: 14px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--accent-dark); }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.brand__logo {
  height: 56px;
  display: block;
}

.main-nav a {
  display: inline-block;
  margin-left: 8px;
  padding: 12px 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  box-sizing: border-box;
  line-height: 20px;
}

.main-nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  background: linear-gradient(135deg, #fdeef3, #fff8f6);
  padding: 64px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 12px;
  color: var(--accent-dark);
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 28px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s ease;
}

.btn:hover { background: var(--accent-dark); color: #fff; }

/* Sections */
.section { padding: 56px 20px; }
.section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--accent-dark);
  margin-bottom: 36px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(201, 69, 123, 0.12);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-card__body { padding: 16px; }
.product-card__body h3 { margin: 0 0 6px; font-size: 1.05rem; }
.product-card__price { color: var(--accent-dark); font-weight: 700; }

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail img {
  width: 100%;
  border-radius: var(--radius);
}

.product-detail h1 { color: var(--accent-dark); margin-top: 0; }
.product-detail__price { font-size: 1.5rem; font-weight: 700; color: var(--accent-dark); }
.product-detail__desc { white-space: pre-line; color: var(--muted); }

@media (max-width: 720px) {
  .product-detail { grid-template-columns: 1fr; }
}

/* About */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-block img { width: 100%; border-radius: var(--radius); }

@media (max-width: 720px) {
  .about-block { grid-template-columns: 1fr; }
}

/* Legal pages */
.legal .section { max-width: 800px; margin: 0 auto; }
.legal h1 { color: var(--accent-dark); }
.legal h2 { text-align: left; font-size: 1.3rem; margin-top: 32px; }

/* Contact */
.contact-info { text-align: center; }
.contact-info a { font-size: 1.2rem; font-weight: 600; }

/* Footer */
.site-footer {
  background: #2b2230;
  color: #ddd0d6;
  margin-top: 40px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  padding: 48px 20px 24px;
}

.footer-logo { height: 48px; margin-bottom: 12px; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.site-footer a {
  display: inline-block;
  color: #ddd0d6;
  text-decoration: none;
  padding: 10px 0;
  min-height: 44px;
  box-sizing: border-box;
  line-height: 24px;
}
.site-footer a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #a9a0a5;
}
