/* Base */
:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #d680a0; /* sakura pink */
  --primary-600: #bf6a8a;
  --border: #e5e7eb;
  --card: #ffffff;
  --shadow-sm: 0 3px 10px rgba(0,0,0,.06);
  --shadow-md: 0 10px 24px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { background: #fafafa; box-shadow: 0 3px 10px rgba(0,0,0,.06); transform: translateY(-1px); }
.btn.primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn.primary:hover { background: var(--primary-600); }
.btn.ghost { background: transparent; }
.btn.etsy { background: #f1641e; border-color: #f1641e; color: #fff; }
.btn.etsy:hover { background: #cf5117; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.promo-bar { background: #f8f7ff; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.promo-innerbar { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; }
.promo-link { font-weight: 700; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-logo { height: 26px; width: auto; display: block; }
.brand-name { letter-spacing: 0.2px; }
.nav { display: flex; align-items: center; gap: 14px; }
.nav a { color: var(--text); font-weight: 500; }
.nav a:hover { color: var(--primary); }

/* Hero */
.h1, h1, h2, h3 { letter-spacing: -0.02em; }
.eyebrow { display: inline-block; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; color: var(--primary); }
.lead { font-size: 18px; }
.hero {
  padding: 64px 0 40px;
  background: radial-gradient(1200px 500px at 10% -10%, #ffeaf2 0%, transparent 60%),
              linear-gradient(180deg, #fff7fb 0%, #ffffff 100%);
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 24px; }
.hero--revamp .hero-inner { grid-template-columns: 1.2fr .8fr; align-items: center; }
.hero-art { position: relative; height: 280px; }
.blob { position: absolute; border-radius: 50%; filter: blur(30px); opacity: .6; }
.blob.b1 { width: 180px; height: 180px; background: #c7b9ff; top: 10%; left: 10%; }
.blob.b2 { width: 220px; height: 220px; background: #ffd2f0; top: 30%; right: 5%; }
.blob.b3 { width: 120px; height: 120px; background: #bde0fe; bottom: 5%; left: 35%; }
.hero-text h1 { margin: 0 0 10px; font-size: 36px; line-height: 1.2; }
.hero-text p { color: var(--muted); margin: 0 0 18px; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* Sections */
.section { padding: 32px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.section-head h2 { margin: 0; }
.categories { padding-top: 12px; }
.category-tiles { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.tile { display: grid; place-items: center; gap: 6px; padding: 16px 8px; border: 1px solid var(--border); border-radius: 14px; background: #fff; cursor: pointer; font-weight: 700; color: var(--text); box-shadow: var(--shadow-sm); transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease; }
.tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #e3e4ef; }
.tile .emoji { font-size: 22px; }
.tile .t { font-size: 14px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 14px; }
.filter-btn { padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-weight: 600; color: var(--text); box-shadow: 0 1px 3px rgba(0,0,0,.05); transition: background .15s ease, box-shadow .15s ease, transform .08s ease; }
.filter-btn:hover { background: #fafafa; box-shadow: 0 3px 10px rgba(0,0,0,.06); transform: translateY(-1px); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.search-bar { margin: 8px 0 16px; }
.search-bar input[type="search"] { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border); background: #fff; outline: none; font-size: 14px; box-shadow: var(--shadow-sm); }
.search-bar input[type="search"]:focus { border-color: #d8daf2; box-shadow: 0 0 0 4px rgba(107,91,149,0.08); }
.section.promo { background: #fff7fb; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.promo-inner { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.highlights { background: #faf9ff; }
.highlight-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow-sm); transition: transform .12s ease, box-shadow .2s ease; }
.highlight-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.highlight-card .icon { font-size: 22px; }

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 720px) {
  .hero-text h1 { font-size: 44px; }
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.08); border-color: #e3e4ef; }
.product-card a { color: inherit; }
.product-media { aspect-ratio: 1/1; width: 100%; object-fit: cover; background: #f3f4f6; }
.product-card:hover .product-media { transform: scale(1.03); }
.product-media { transition: transform .25s ease; }
.product-body { padding: 12px; display: grid; gap: 8px; }
.product-title { font-weight: 600; margin: 0; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.product-price { color: var(--text); font-weight: 800; }
.chip { display: inline-block; padding: 2px 8px; font-size: 12px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); }
.badge { display: inline-block; padding: 2px 8px; font-size: 12px; border-radius: 6px; background: #fff3e8; color: #b45309; border: 1px solid #fde7d2; }
.product-actions { margin-top: 6px; }

.products-empty { text-align: center; color: var(--muted); border: 1px dashed var(--border); padding: 20px; border-radius: 12px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 16px 0; }
.footer-links { display: flex; gap: 12px; }


/* Sakura petals removed */

