:root {
  --bg: #fbf7f1;
  --panel: #fffdf9;
  --panel-alt: #f6f0e6;
  --text: #5f5149;
  --muted: #85756b;
  --line: #e8ddd1;
  --accent: #d9c36a;
  --accent-deep: #a48d3e;
  --sage: #b9c5b0;
  --shadow: 0 10px 30px rgba(111, 91, 73, 0.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); }
.section { padding: 4rem 0; }
.section-alt { background: rgba(246, 240, 230, 0.7); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
  background: rgba(251, 247, 241, 0.88);
  border-bottom: 1px solid rgba(232, 221, 209, 0.7);
}
.nav-wrap, .footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; font-size: 1.25rem; font-weight: 600; }
.brand-mark {
  width: 2rem; height: 2rem; display: inline-grid; place-items: center;
  border-radius: 50%; background: #f4ebbe; color: var(--accent-deep);
}
.nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.nav a { color: var(--muted); }
.nav a.active, .nav a:hover { color: var(--text); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--muted);
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.75rem; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 42rem; }
.hero-actions, .button-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 0.95rem 1.35rem;
  border-radius: 999px; border: 1px solid var(--line); font-weight: 600;
}
.btn-primary { background: var(--accent); border-color: #d1bc66; }
.btn-primary:hover { background: #d4bd5a; }
.btn-secondary { background: var(--panel); }
.btn.full-width { width: 100%; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.35rem;
}
.hero-card { padding: 1.25rem; background: linear-gradient(180deg, #fffdf8 0%, #f5efe6 100%); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); }
.mock-shirt {
  min-height: 380px; border-radius: 28px; background: #f3ece2; display: grid; place-items: center;
  border: 1px solid #eadfce;
}
.large-shirt { min-height: 520px; }
.mock-design { text-align: center; color: #6c5b4f; }
.mock-design .flower, .product-image, .result-art, .cart-thumb {
  width: 5.5rem; height: 5.5rem; display: grid; place-items: center; margin: 0 auto 1rem;
  border-radius: 50%; background: #f6efc9; color: #8c7839; font-size: 2rem;
}
.card-grid, .product-grid { display: grid; gap: 1.2rem; }
.four-up { grid-template-columns: repeat(4, 1fr); }
.three-up { grid-template-columns: repeat(3, 1fr); }
.product-grid { grid-template-columns: repeat(4, 1fr); }
.category-card, .step-card, .product-card, .result-card { min-height: 100%; }
.step { color: var(--accent-deep); font-weight: 700; font-size: 0.9rem; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1rem; }
.text-link { color: var(--muted); }
.product-row, .summary-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.product-row { margin-top: 1rem; }
.shop-layout, .cart-layout, .customizer-layout { display: grid; gap: 1.5rem; }
.shop-layout { grid-template-columns: 280px 1fr; }
.cart-layout { grid-template-columns: 1.2fr 0.8fr; }
.customizer-layout { grid-template-columns: 1fr 1fr; align-items: start; }
.filters { position: sticky; top: 5.4rem; }
.filter-group { margin-top: 1rem; display: grid; gap: 0.45rem; }
.form-card { display: grid; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-grid.single-gap { grid-template-columns: 1fr; }
label { display: grid; gap: 0.45rem; font-size: 0.96rem; color: var(--muted); }
input, select, textarea {
  width: 100%; padding: 0.95rem 1rem; border-radius: 16px; border: 1px solid var(--line);
  background: #fffdfa; color: var(--text); font: inherit;
}
textarea { resize: vertical; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.result-art { width: 7rem; height: 7rem; font-size: 2.4rem; }
.center-row { justify-content: center; }
.center-text { text-align: center; }
.cart-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center;
  padding: 1rem 0; border-top: 1px solid var(--line);
}
.cart-item:first-of-type { border-top: 0; }
.cart-thumb { width: 4rem; height: 4rem; margin: 0; font-size: 1.4rem; }
.total { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--line); font-weight: 700; }
.confirmation-card { padding: 2rem; }
.site-footer { border-top: 1px solid rgba(232, 221, 209, 0.7); margin-top: 2rem; }
.footer-wrap a { margin-left: 1rem; color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid, .shop-layout, .cart-layout, .customizer-layout,
  .four-up, .three-up, .product-grid, .form-grid, .check-grid {
    grid-template-columns: 1fr 1fr;
  }
  .shop-layout, .cart-layout, .customizer-layout, .hero-grid { grid-template-columns: 1fr; }
  .filters { position: static; }
}
@media (max-width: 640px) {
  .nav-wrap, .section-head, .footer-wrap, .product-row, .summary-row { align-items: flex-start; }
  .four-up, .three-up, .product-grid, .form-grid, .check-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.35rem; }
  .mock-shirt { min-height: 300px; }
}
.logo {
  width: 220px;
  height: 80px;
  background-image: url("images/logo-bloomco.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
.site-logo {
  display: block;
  max-height: 72px;
  width: auto;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.95rem;
  opacity: 0.8;
}

.builder-cta-wrap {
  margin-top: 28px;
  text-align: center;
}

.btn-large {
  padding: 14px 24px;
}

.footer-brand p {
  margin: 0 0 6px 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
