:root {
  --bg: #fff8f0;
  --surface: #fff4ea;
  --surface-soft: #f5e9dc;
  --text: #2b2b2b;
  --muted: #4a2c2a;
  --accent: #daa373;
  --accent-soft: #f5b8b8;
  --accent-pink: #f7a1a1;
  --highlight: #25d366;
  --secondary: #a7c7e7;
  --warm: #c68642;
  --warm-deep: #4a2c2a;
  --radius-card: 28px;
  --shadow-card: 0 20px 50px rgba(74,44,42,0.09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(247,161,161,0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(218,163,115,0.10) 0%, transparent 50%);
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ── Floating hearts ── */
.floating-hearts {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.floating-hearts span {
  position: absolute;
  top: 15%;
  left: var(--x);
  font-size: var(--size, 1rem);
  color: var(--accent-pink);
  opacity: 0.35;
  animation: floatHeart 6s ease-in-out var(--delay, 0s) infinite;
}
@keyframes floatHeart {
  0%, 100% { transform: translateY(0) rotate(-8deg); opacity: 0.3; }
  50%       { transform: translateY(-28px) rotate(8deg); opacity: 0.55; }
}

/* ── Header ── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 2rem;
  background: rgba(255,248,240,0.94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(202,146,106,0.18);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-logo-mark { flex-shrink: 0; }

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4a2c2a, #c68642);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.brand-subtitle {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  opacity: 0.75;
}

.header-nav {
  display: flex;
  gap: 1.5rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--warm);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-link:hover { color: var(--warm); }
.nav-link:hover::after { width: 100%; }

.lang-switch { display: flex; gap: 0.4rem; }

.lang-btn {
  border: 1.5px solid rgba(198,134,66,0.25);
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: inherit;
  transition: all 0.2s;
}
.lang-btn:hover,
.lang-btn.active {
  background: var(--warm);
  color: white;
  border-color: var(--warm);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(198,134,66,0.3);
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
  gap: 2.5rem;
  padding: 3.5rem 2rem 3rem;
  max-width: 1200px;
  margin: 1.5rem auto;
  background: linear-gradient(145deg, rgba(255,248,240,0.95), rgba(245,233,220,0.95));
  border-radius: 36px;
  border: 1px solid rgba(218,163,115,0.18);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,161,161,0.15), transparent 70%);
  pointer-events: none;
}

/* Sparkle accents */
.hero-sparkle-group {
  position: absolute;
  top: 1.5rem; right: 2rem;
  display: flex; gap: 0.5rem;
}
.sparkle {
  color: var(--accent-pink);
  font-size: 0.9rem;
  animation: twinkle 2.5s ease-in-out infinite;
}
.sparkle.s1 { animation-delay: 0s; }
.sparkle.s2 { animation-delay: 0.7s; font-size: 0.7rem; }
.sparkle.s3 { animation-delay: 1.4s; color: var(--warm); }
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.3); }
}

.hero-copy { max-width: 540px; position: relative; z-index: 1; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-pink);
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before { content: '✦'; }
.eyebrow::after  { content: '✦'; }

.hero h1 {
  margin: 0.9rem 0 1rem;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.02;
  background: linear-gradient(135deg, #4a2c2a 30%, #c68642 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, background 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(135deg, #c68642, #daa373);
  color: white;
  box-shadow: 0 8px 24px rgba(198,134,66,0.3);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(198,134,66,0.4); }

.btn-outline {
  background: transparent;
  color: var(--warm);
  border: 2px solid rgba(198,134,66,0.4);
  padding: 0.85rem 1.6rem;
}
.btn-outline:hover {
  background: rgba(198,134,66,0.08);
  border-color: var(--warm);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #c68642, #daa373);
  color: white;
  box-shadow: 0 8px 24px rgba(198,134,66,0.28);
}

.hero-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(74,44,42,0.16);
  z-index: 1;
}
.hero-image-ring {
  position: absolute;
  inset: -6px;
  border-radius: 36px;
  border: 3px solid rgba(247,161,161,0.35);
  z-index: -1;
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.015); opacity: 0.9; }
}

@keyframes popOpen {
  0%   { transform: scale(0.93); opacity: 0.7; }
  65%  { transform: scale(1.01); }
  100% { transform: scale(1); opacity: 1; }
}
.pop-open { animation: popOpen 0.55s ease-out 0.1s both; }

.hero-image img { min-height: 360px; object-fit: cover; }

/* ── Wave divider ── */
.wave-divider {
  margin: -1px 0;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg { width: 100%; height: 50px; display: block; }
.wave-divider.flip { transform: scaleX(-1); }

/* ── Section header ── */
.section-header {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(247,161,161,0.2), rgba(218,163,115,0.2));
  color: var(--warm);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(218,163,115,0.2);
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
  position: relative;
  display: inline-block;
  padding: 0 1.5rem;
}
.section-header h2::before,
.section-header h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(198,134,66,0.4));
}
.section-header h2::before { right: 100%; transform: translateX(60px); }
.section-header h2::after  { left: 100%; transform: translateX(-60px); background: linear-gradient(to left, transparent, rgba(198,134,66,0.4)); }

.section-subtitle {
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  opacity: 0.75;
  font-style: italic;
}

/* ── Full-width background band (wraps products + contact) ── */
.section-band {
  background: var(--surface-soft);
}

/* ── Products ── */
.products {
  padding: 3rem 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px) rotate(-0.5deg);
  box-shadow: 0 32px 64px rgba(74,44,42,0.16);
}

.product-ribbon {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--accent-pink), #f7b8d4);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(247,161,161,0.4);
  z-index: 1;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.product-card:hover img { transform: scale(1.06); }

.product-copy {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-copy h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}
.product-copy p {
  margin: 0 0 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  font-size: 0.9rem;
  opacity: 0.85;
}
.product-price {
  margin-top: auto;
  display: inline-flex;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(247,161,161,0.15), rgba(218,163,115,0.15));
  color: var(--warm);
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(198,134,66,0.18);
}

/* ── Love banner ── */
.love-banner {
  background: linear-gradient(135deg, #4a2c2a, #6b3a35);
  color: #f5e9dc;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.love-banner span:first-child,
.love-banner span:last-child {
  color: var(--accent-pink);
  font-size: 1rem;
  animation: heartBeat 1.5s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15%       { transform: scale(1.25); }
  30%       { transform: scale(1); }
  45%       { transform: scale(1.15); }
}

/* ── Order ── */
.order {
  padding: 3rem 2rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.order-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.order-details {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.order-text {
  margin: 0 0 1.4rem;
  color: var(--muted);
  line-height: 1.8;
}

.order-list {
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.order-list li {
  padding: 0.5rem 0 0.5rem 1.6rem;
  position: relative;
  line-height: 1.6;
}
.order-list li::before {
  content: '♥';
  position: absolute;
  left: 0;
  color: var(--accent-pink);
  font-size: 0.75rem;
  top: 0.65rem;
}

.order-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.order-image img { min-height: 400px; object-fit: cover; }

/* ── Contact section ── */
.contact {
  padding: 3rem 2rem 4rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

/* Honeypot */
.hp-field { position: absolute; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cf-field { margin-bottom: 1.1rem; }
.cf-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cf-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(202,146,106,0.25);
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.9rem;
  background: rgba(255,248,240,0.7);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cf-input:focus {
  outline: none;
  border-color: var(--warm);
  box-shadow: 0 0 0 3px rgba(198,134,66,0.12);
  background: #fff;
}
.cf-textarea { min-height: 120px; resize: vertical; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  display: none;
}
.form-status.success { display: block; background: #fdf0f7; color: #9d2b6b; border: 1px solid rgba(247,161,161,0.4); }
.form-status.error   { display: block; background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.contact-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
}
.contact-deco-img {
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(74,44,42,0.12);
  max-height: 280px;
  object-fit: cover;
}
.contact-hearts {
  display: flex;
  gap: 0.75rem;
  font-size: 1.4rem;
}
.contact-hearts span:nth-child(1) { color: var(--accent-pink); animation: heartBeat 2s 0s infinite; }
.contact-hearts span:nth-child(2) { color: var(--warm); animation: heartBeat 2s 0.4s infinite; font-size: 1.8rem; }
.contact-hearts span:nth-child(3) { color: var(--accent-pink); animation: heartBeat 2s 0.8s infinite; }

/* ── Footer ── */
.site-footer {
  padding: 2.5rem 1.5rem 1.5rem;
  background: var(--warm-deep);
  color: #f5e9dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.footer-card {
  background: rgba(255,248,240,0.07);
  border: 1px solid rgba(255,248,240,0.1);
  border-radius: 20px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: #f5e9dc;
  transition: all 0.25s;
}
.footer-card:hover {
  background: rgba(255,248,240,0.12);
  transform: translateY(-3px);
}
.footer-icon { width: 1.4rem; height: 1.4rem; margin-bottom: 0.3rem; }
.footer-note p, .footer-follow p { margin: 0; font-size: 0.8rem; line-height: 1.5; }

.footer-whatsapp {
  background: linear-gradient(135deg, var(--warm), #daa373);
  border: none;
  color: #fff;
}
.footer-whatsapp:hover { background: linear-gradient(135deg, #b9751c, #c8875a); }
.footer-whatsapp span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-whatsapp strong { font-size: 0.9rem; }

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.45;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero, .order-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-deco { display: none; }
  .hero { gap: 1.5rem; margin: 1rem; }
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}

@media (max-width: 680px) {
  .site-header { flex-direction: column; align-items: flex-start; padding: 0.75rem 1.25rem; }
  .hero { padding-top: 1.5rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .hero-image img, .order-image img { min-height: 240px; }
}

@media (max-width: 480px) {
  .site-header, .hero, .products, .order, .contact { padding-left: 1rem; padding-right: 1rem; }
  .lang-btn { padding: 0.4rem 0.7rem; font-size: 0.78rem; }
  .product-grid { grid-template-columns: 1fr; }
}
