/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary: #e07c7c;
  --accent: #f6d6d6;
  --dark: #1f2937;
  --light: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, #fff, #fff8f8);
}

a { color: inherit; text-decoration: none; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header / Nav */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(8px);
  border-bottom: 1px solid #f1e9e9;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; letter-spacing: 0.3px; }
.menu a {
  margin-left: 18px; padding: 8px 12px; border-radius: 999px;
  transition: background .2s ease;
}
.menu a:hover { background: var(--accent); }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center;
  padding: 48px 0 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 1.2rem + 3vw, 3.2rem);
  line-height: 1.1;
}
.hero p { color: #4b5563; font-size: 1.08rem; }
.cta { display: inline-block; background: var(--primary); color: white; padding: 12px 20px; border-radius: 14px; box-shadow: var(--shadow); }
.cta:hover { transform: translateY(-1px); }

.hero-card {
  background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/3; }

/* Product grid */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0 8px;
}
.card {
  background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.card .info { padding: 14px; display: flex; align-items: center; justify-content: space-between; }
.price { font-weight: 600; color: var(--primary); }

/* Section headers */
.section-title {
  display: flex; align-items: center; justify-content: space-between; margin-top: 8px;
}
.section-title h2 {
  font-family: 'Playfair Display', serif; margin: 0;
}

/* Footer */
footer {
  margin-top: 44px; padding: 28px 0; border-top: 1px solid #f1e9e9; color: #6b7280;
}

/* Floating buttons */
.fab {
  position: fixed; right: 18px; z-index: 20; border-radius: 999px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow); background: white; color: var(--dark);
}
.fab-cart { bottom: 86px; }
.fab-whatsapp { bottom: 24px; background: var(--primary); color: white; }
.fab svg { width: 20px; height: 20px; }

/* Product page */
.product { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; margin-top: 20px; }
.product img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.product h1 { font-family: 'Playfair Display', serif; margin: 0 0 6px; }
.product p { color: #4b5563; }
.product .buy { display: flex; gap: 12px; margin-top: 14px; }
.button { background: var(--primary); color: white; padding: 12px 18px; border-radius: 12px; border: 0; cursor: pointer; font-weight: 600; }
.button.secondary { background: black; color: white; }

/* Utilities */
.badge { background: var(--accent); color: #7c3a3a; padding: 6px 10px; border-radius: 999px; font-size: .85rem; }
.muted { color: #6b7280; }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .card img { height: 220px; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}
