/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fdfaf6;
  --surface: #ffffff;
  --surface-alt: #f7f3ec;
  --text: #2b2b2b;
  --text-secondary: #6b6b6b;
  --accent: #d6336c;
  --accent-dark: #a52e55;
  --accent-light: #f8d6e0;
  --border: #e0d8c8;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-hand: 'Georgia', 'Times New Roman', serif;
  --max-w: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ===== Language Toggle ===== */
.lang-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lang-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
}

.lang-btn:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent-dark); }
.lang-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 2px 8px rgba(214,51,108,0.25); }
.lang-divider { color: var(--border); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #fff7f3 0%, #ffeef0 50%, #fff 100%);
  padding: 60px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-content { max-width: 720px; margin: 0 auto; }

.hero-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 8px 30px rgba(214,51,108,0.2);
  margin-bottom: 20px;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(214,51,108,0.25);
  margin-bottom: 20px;
}

.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: var(--font-hand);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ===== Sections ===== */
section {
  padding: 56px 24px 72px;
  max-width: var(--max-w);
  margin: 0 auto;
}

section + section { border-top: 1px solid var(--border); }

h2 {
  font-family: var(--font-hand);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--accent-dark);
  margin-bottom: 20px;
}

p { color: var(--text-secondary); font-size: 1.05rem; }

/* ===== Intro ===== */
.intro-section p { max-width: 640px; }

/* ===== Products ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-info { padding: 18px 20px 22px; }

.product-name {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ===== Story ===== */
.story-section p { max-width: 680px; }

/* ===== Contact ===== */
.contact-links {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: background 0.2s ease;
}

.contact-link:hover { background: var(--accent-dark); }

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 32px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .hero { padding: 40px 16px 32px; }
  .hero h1 { font-size: 2rem; }
  section { padding: 40px 16px 56px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

/* ===== Image placeholder ===== */
.product-img {
  background: linear-gradient(135deg, #ffe8e8 0%, #ffe0e0 50%, #fff0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-hand);
  font-size: 1.4rem;
}

/* ===== Loading overlay ===== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.loading-overlay.hidden { opacity: 0; pointer-events: none; }
.loading-overlay .spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
