:root {
  --rose: #D43F7B;
  --rose-dark: #B82D65;
  --rose-light: #F8E5EE;
  --blush: #FFF0F5;
  --cream: #FFFBF7;
  --gold: #C8A46B;
  --gold-light: #E8D5A8;
  --dark: #1A0F15;
  --muted: #8A6B78;
  --border: #F0E4EB;
  --card: #FFFFFF;
  --shadow: 0 2px 20px rgba(212,63,123,0.08);
  --shadow-lg: 0 8px 40px rgba(212,63,123,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { color: var(--rose); text-decoration:none; }
.container { max-width: 1120px; margin:0 auto; padding:0 24px; }

/* ── Header ── */
.header {
  position: fixed; top:0; left:0; right:0; z-index:100;
  height: 72px;
  background: rgba(255,251,247,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height:100%;
}
.logo {
  display: flex; align-items: center; gap: 12px; text-decoration:none;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 700; font-family: var(--font-display);
  box-shadow: 0 2px 8px rgba(212,63,123,0.3);
}
.logo-name {
  font-size: 20px; font-weight: 700; font-family: var(--font-display);
  color: var(--dark); letter-spacing: -0.01em;
}
.logo-name span { color: var(--rose); }

.nav { display: flex; gap: 4px; }
.nav-link {
  padding: 8px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: all 0.2s;
}
.nav-link:hover { background: var(--rose-light); color: var(--rose); }
.nav-link.active { background: var(--rose); color: #fff; font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-toggle {
  padding: 6px 12px; border: 1.5px solid var(--border); border-radius: 8px;
  background: transparent; font-size: 13px; font-weight: 500; cursor: pointer;
  color: var(--muted); transition: all 0.2s; min-height: 36px;
  font-family: var(--font-sans);
}
.lang-toggle:hover { border-color: var(--rose); color: var(--rose); }
.wa-header-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  color: #25D366; transition: background 0.2s;
}
.wa-header-btn:hover { background: var(--rose-light); }
.menu-toggle {
  display: none; background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--dark);
  width: 44px; height: 44px; align-items: center; justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600; text-decoration:none;
  border: none; cursor: pointer; min-height: 50px;
  transition: all 0.3s; font-family: var(--font-sans);
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(212,63,123,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,63,123,0.35); }
.btn-outline {
  background: transparent; color: var(--rose);
  border: 1.5px solid var(--rose);
}
.btn-outline:hover { background: var(--rose-light); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #B6904D);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,164,107,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,164,107,0.35); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: 120px; padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
}
.page-hero p { color: var(--muted); margin-top: 8px; }
.page-hero-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px; margin: 16px auto 0;
}

/* ── Section ── */
.section { padding: 80px 0; }
.section-blush { background: var(--blush); }
.section-white { background: #fff; }
.section-head {
  text-align: center; margin-bottom: 48px; max-width: 560px; margin-inline: auto;
}
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  font-family: var(--font-sans);
}
.eyebrow-rose { color: var(--rose); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 16px; }

/* Product emoji display (for products page) */
.product-emoji-wrap {
  background: linear-gradient(135deg, var(--rose-light), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-emoji-wrap .product-emoji {
  font-size: 56px;
  opacity: 0.7;
  line-height: 1;
  pointer-events: none;
}

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.products-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.35s;
}
.product-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: var(--rose-light);
}
.product-image {
  position: relative; padding-top: 100%;
  background: var(--blush);
  overflow: hidden;
}
.product-image img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s;
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--rose); color: #fff;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product-info { padding: 20px; }
.product-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; margin-bottom: 6px;
}
.product-desc { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }
.product-price { font-size: 15px; font-weight: 600; color: var(--rose); margin-bottom: 16px; }
.product-order-btn {
  width: 100%; padding: 12px; font-size: 13px; min-height: 44px;
  border-radius: 50px;
}

/* ── About ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--rose-light); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700; margin-bottom: 16px;
}
.about-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.7; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--card); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), var(--blush));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; color: var(--rose);
  border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-location { font-size: 12px; color: var(--muted); }

/* ── Contact / Order Page ── */
.form-card {
  max-width: 560px; margin: 0 auto;
  background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 40px;
}
.form-card label {
  display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--dark);
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  transition: border-color 0.2s; margin-bottom: 20px;
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none; border-color: var(--rose);
}

/* ── Footer ── */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 22px; color: #fff; margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  font-size: 14px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact p { font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.6); }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.social-links a:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.footer-bottom {
  padding: 24px 0;
  text-align: center; font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── Mobile ── */
@media (max-width: 900px) {
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: var(--cream); flex-direction: column; padding: 16px;
    border-bottom: 1px solid var(--border); gap: 4px; }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .products-grid { grid-template-columns: 1fr; }
  .products-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
