:root {
  --bg: #fdf9f3;
  --surface: #ffffff;
  --ink: #2d2a32;
  --muted: #6f6a78;
  --primary: #e85d75;
  --primary-dark: #d14a62;
  --secondary: #2ec4b6;
  --secondary-dark: #21a396;
  --accent: #ffb703;
  --radius: 18px;
  --shadow: 0 6px 24px rgba(45, 42, 50, 0.09);
  --shadow-sm: 0 2px 10px rgba(45, 42, 50, 0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 249, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 42, 50, 0.07);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-size: 1.15rem; font-weight: 700; }
.logo-icon { font-size: 1.6rem; }
.logo strong { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: 0.95rem;
  padding: 8px 14px; border-radius: 999px; transition: background 0.2s;
}
.nav-links a:hover { background: rgba(232, 93, 117, 0.1); color: var(--primary-dark); }
.nav-cta { background: var(--secondary); color: #fff !important; }
.nav-cta:hover { background: var(--secondary-dark) !important; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fff1e6 0%, #ffe8ec 55%, #e8f9f7 100%);
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }

.hero-badge {
  display: inline-block; background: #fff; padding: 6px 16px; border-radius: 999px;
  font-weight: 800; font-size: 0.85rem; color: var(--primary-dark);
  box-shadow: var(--shadow-sm); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.accent { color: var(--primary); }
.accent2 { color: var(--secondary-dark); }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 28px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 800; font-size: 1rem; text-decoration: none; cursor: pointer;
  border: none; font-family: inherit; transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px rgba(232, 93, 117, 0.35); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }

.hero-card {
  background: #fff; border-radius: 24px; padding: 30px; box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-emoji { font-size: 2.4rem; margin-bottom: 14px; }
.hero-perks { list-style: none; display: grid; gap: 12px; font-weight: 700; }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 50px; }

/* ---------- sections ---------- */
.section { padding: 70px 0; }
.section-alt { background: #fff; }

.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 10px; }
.section-title::after {
  content: ''; display: block; width: 56px; height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); margin-top: 10px;
}
.section-sub { color: var(--muted); margin-bottom: 30px; max-width: 640px; }

/* ---------- filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #fff; border: 2px solid rgba(45, 42, 50, 0.1); border-radius: 999px;
  padding: 7px 18px; font-weight: 800; font-size: 0.9rem; cursor: pointer;
  font-family: inherit; color: var(--ink); transition: all 0.2s;
}
.chip:hover { border-color: var(--primary); color: var(--primary-dark); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.search {
  padding: 10px 18px; border-radius: 999px; border: 2px solid rgba(45, 42, 50, 0.1);
  font-family: inherit; font-size: 0.95rem; min-width: 220px; background: #fff; outline: none;
}
.search:focus { border-color: var(--secondary); }

.chips-sub { margin: -14px 0 24px; }
.chip-sub { font-size: 0.82rem; padding: 5px 14px; background: var(--bg); }
.chip-sub.active { background: var(--secondary); border-color: var(--secondary); color: #fff; }

.show-more { text-align: center; margin-top: 32px; }
.btn-more {
  background: #96c11f; color: #fff; box-shadow: 0 6px 18px rgba(150, 193, 31, 0.35);
  border-radius: 10px;
}
.btn-more:hover { background: #85ac1b; }

/* ---------- product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }

.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-img { position: relative; aspect-ratio: 4 / 3; background: #f3eee7; overflow: hidden; cursor: pointer; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-img .no-photo { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3rem; opacity: 0.4; }

.badge-sold {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff;
  font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 999px;
}
.badge-cat {
  position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.92); color: var(--ink);
  font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 999px;
}
.card.sold .card-img img { filter: grayscale(1) opacity(0.6); }

.card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-name { font-weight: 800; font-size: 1.05rem; }
.card-meta { color: var(--muted); font-size: 0.88rem; }
.card-desc { color: var(--muted); font-size: 0.88rem; }
.card-price { margin-top: auto; padding-top: 8px; font-weight: 900; font-size: 1.2rem; color: var(--secondary-dark); }

.empty-msg { text-align: center; color: var(--muted); font-size: 1.05rem; padding: 40px 0; }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-text p { margin-bottom: 14px; color: var(--muted); }
.about-text p strong { color: var(--ink); }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature {
  background: var(--bg); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm);
}
.feature span { font-size: 1.8rem; }
.feature h3 { font-size: 1rem; margin: 8px 0 4px; }
.feature p { font-size: 0.85rem; color: var(--muted); }

/* ---------- hours ---------- */
.hours-wrap { max-width: 560px; }
.hours { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.hours td { padding: 13px 22px; border-bottom: 1px solid rgba(45, 42, 50, 0.06); font-weight: 700; }
.hours tr:last-child td { border-bottom: none; }
.hours td:last-child { text-align: right; color: var(--muted); font-weight: 600; }
.hours tr.today { background: rgba(46, 196, 182, 0.1); }
.hours tr.today td { color: var(--secondary-dark); font-weight: 800; }
.hours-note { margin-top: 14px; color: var(--muted); font-size: 0.9rem; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.4fr; gap: 36px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; background: var(--bg); padding: 18px 20px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-icon { font-size: 1.5rem; }
.contact-item a { color: var(--secondary-dark); font-weight: 800; text-decoration: none; }

.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.map iframe { width: 100%; height: 360px; border: 0; display: block; background: #eaf2ef; }
.map-link {
  display: block; text-align: center; padding: 12px; font-weight: 800;
  color: var(--secondary-dark); text-decoration: none; background: #fff;
}
.map-link:hover { background: #f2faf8; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 26px 0; font-size: 0.9rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-admin { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-admin:hover { color: #fff; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(20, 18, 24, 0.88);
  display: flex; align-items: center; justify-content: center; padding: 30px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; background: none; border: none;
  color: #fff; font-size: 1.8rem; cursor: pointer;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-inner, .about, .contact { grid-template-columns: 1fr; }
  .hero-card { transform: none; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg); flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; gap: 4px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; text-align: center; padding: 12px; }
  .filters { flex-direction: column; align-items: stretch; }
  .search { width: 100%; }
}
