:root {
  --bg: #faf8f4;
  --bg-alt: #f2ede6;
  --fg: #2c2825;
  --fg-muted: #6b6560;
  --accent: #5a7c65;
  --accent-light: #e8f0ea;
  --warm: #c4956a;
  --warm-light: #f5ebe1;
  --border: #e0dbd4;
  --radius: 12px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 em, h2 em {
  font-style: italic;
  color: var(--accent);
}

/* ── HERO ── */
.hero {
  padding: 80px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
  color: var(--fg);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.planner-stack {
  position: relative;
  width: 320px;
  height: 380px;
}

.planner-card {
  position: absolute;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  width: 220px;
  box-shadow: 0 8px 30px rgba(44,40,37,0.06);
  transition: transform 0.4s ease;
}

.planner-card:hover {
  transform: translateY(-4px) rotate(0deg) !important;
}

.card-1 {
  top: 0; left: 0;
  transform: rotate(-4deg);
  z-index: 3;
}

.card-2 {
  top: 60px; left: 80px;
  transform: rotate(2deg);
  z-index: 2;
}

.card-3 {
  top: 130px; left: 30px;
  transform: rotate(-1deg);
  z-index: 1;
}

.card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 16px;
}

.card-lines span {
  display: block;
  height: 2px;
  background: var(--bg-alt);
  margin-bottom: 10px;
  border-radius: 2px;
}

.card-lines span:nth-child(odd) { width: 100%; }
.card-lines span:nth-child(even) { width: 70%; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.card-grid span {
  display: block;
  height: 24px;
  background: var(--warm-light);
  border-radius: 4px;
}

.card-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.card-dots span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-light);
}

/* ── CATEGORIES ── */
.categories {
  padding: 100px 0;
  background: var(--bg-alt);
}

.categories h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 60px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cat-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cat-item:hover {
  box-shadow: 0 12px 40px rgba(44,40,37,0.08);
  transform: translateY(-2px);
}

.cat-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--accent);
}

.cat-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.cat-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── WHY ── */
.why {
  padding: 100px 0;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.why-big {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.why-point {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.why-point:first-child {
  padding-top: 0;
}

.why-point:last-child {
  border-bottom: none;
}

.why-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--warm);
  line-height: 1;
  flex-shrink: 0;
}

.why-point h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.why-point p {
  font-size: 15px;
  color: var(--fg-muted);
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 60px 0 100px;
}

.phil-box {
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: 60px;
}

.phil-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.phil-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.phil-box > p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin-bottom: 40px;
}

.phil-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.phil-feat {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
}

.phil-feat strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.phil-feat span {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* ── CLOSING ── */
.closing {
  padding: 100px 0;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
}

.footer-copy {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .cat-grid { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .phil-box { padding: 36px 24px; }
  .phil-features { grid-template-columns: 1fr; }
  .categories { padding: 60px 0; }
  .why { padding: 60px 0; }
  .closing { padding: 60px 0; }
}
/* ── NAVIGATION ── */
.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

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

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  text-decoration: none;
}

.nav-brand:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--accent); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: #4a6a54;
  transform: translateY(-1px);
}

.btn-primary.btn-sm { padding: 8px 16px; font-size: 13px; }

.btn-primary.btn-buy {
  display: block;
  text-align: center;
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.btn-primary.btn-download {
  display: block;
  text-align: center;
  padding: 18px 32px;
  font-size: 17px;
  border-radius: 10px;
  background: var(--accent);
}

.btn-ghost {
  display: inline-block;
  color: var(--fg-muted);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO ACTIONS ── */
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── SHOP PAGE ── */
.shop-hero {
  padding: 56px 24px 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.shop-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 12px 0 10px;
}

.shop-sub {
  font-size: 17px;
  color: var(--fg-muted);
}

.shop-section { padding: 48px 0 80px; }

/* ── CATEGORY TABS ── */
.category-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cat-tab {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--fg-muted);
  background: #fff;
  transition: all 0.2s;
}

.cat-tab:hover { border-color: var(--accent); color: var(--accent); }
.cat-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--fg);
  transition: box-shadow 0.25s, transform 0.25s;
  display: block;
}

.product-card:hover {
  box-shadow: 0 16px 48px rgba(44,40,37,0.1);
  transform: translateY(-3px);
}

/* Product thumbnail areas */
.product-thumb {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-thumb--planners { background: var(--accent-light); }
.product-thumb--calendars { background: var(--warm-light); }
.product-thumb--budget { background: #eef4f0; }
.product-thumb--accessories { background: #f7f2ee; }
.product-thumb--bundles { background: #f0ede8; }

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-badge--warm { background: var(--warm); }

/* Thumbnail designs */
.thumb-lines {
  padding: 20px 24px;
  width: 160px;
}

.thumb-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}

.thumb-lines span {
  display: block;
  height: 2px;
  background: rgba(90,124,101,0.2);
  margin-bottom: 10px;
  border-radius: 2px;
}

.thumb-lines span:nth-child(odd) { width: 100%; }
.thumb-lines span:nth-child(even) { width: 65%; }

.thumb-calendar { padding: 16px 20px; }
.thumb-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-top: 8px;
}

.thumb-cal-grid span {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: rgba(196,149,106,0.15);
  font-size: 8px;
  color: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.thumb-budget { padding: 16px 24px; width: 180px; }
.thumb-rows { margin-top: 8px; }
.thumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.r-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--fg-muted);
  min-width: 46px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.r-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.5;
}
.r-bar--full { width: 80px; opacity: 0.7; }
.r-bar--60 { width: 48px; }
.r-bar--40 { width: 32px; }
.r-bar--25 { width: 20px; background: var(--warm); opacity: 0.6; }

.thumb-bundle {
  position: relative;
  width: 150px;
  height: 130px;
}

.thumb-stack-card {
  position: absolute;
  width: 120px;
  height: 88px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(44,40,37,0.06);
}

.ts-1 { top: 0; left: 0; transform: rotate(-5deg); }
.ts-2 { top: 18px; left: 20px; transform: rotate(2deg); }
.ts-3 {
  top: 36px; left: 10px; transform: rotate(-1deg);
  padding: 16px;
  z-index: 3;
}

.ts-3 span {
  display: block;
  height: 2px;
  background: var(--accent-light);
  margin-bottom: 8px;
  border-radius: 2px;
  width: 100%;
}

.thumb-accessory { padding: 20px 24px; }
.thumb-dot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.thumb-dot-grid span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(90,124,101,0.25);
}

.thumb-dot-grid span.filled {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 0.7;
}

/* Product card info section */
.product-info {
  padding: 20px 22px 22px;
}

.product-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
}

.product-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* Trust bar */
.shop-trust {
  padding: 40px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.trust-icon {
  font-size: 22px;
  color: var(--accent);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 50%;
}

.trust-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.trust-item span {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── PRODUCT DETAIL PAGE ── */
.product-detail-page { padding: 32px 0 80px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--fg-muted);
}

.breadcrumb a {
  color: var(--fg-muted);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--border); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
}

/* Product preview illustration */
.product-preview {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 12px 40px rgba(44,40,37,0.08);
  min-height: 400px;
  display: flex;
  align-items: stretch;
}

.product-preview--planners { background: var(--accent-light); }
.product-preview--calendars { background: var(--warm-light); }
.product-preview--budget { background: #eef4f0; }
.product-preview--accessories { background: #f7f2ee; }
.product-preview--bundles { background: #f0ede8; }

.preview-planner, .preview-calendar, .preview-budget, .preview-bundle, .preview-accessory {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(90,124,101,0.2);
}

.preview-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
}

.preview-type, .preview-month {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.preview-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  flex: 1;
}

.preview-day {}
.preview-day-name {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.preview-day-lines span {
  display: block;
  height: 1.5px;
  background: rgba(90,124,101,0.2);
  margin-bottom: 8px;
  border-radius: 1px;
  width: 100%;
}

.preview-notes-row {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(90,124,101,0.15);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.preview-notes-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  flex-shrink: 0;
}

.preview-notes-lines { flex: 1; }
.preview-notes-lines span {
  display: block;
  height: 1.5px;
  background: rgba(90,124,101,0.2);
  margin-bottom: 8px;
}

.preview-cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.preview-cal-header span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-align: center;
  padding: 4px 2px;
}

.preview-cal-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  flex: 1;
}

.preview-cal-cell {
  background: rgba(255,255,255,0.5);
  border-radius: 4px;
  min-height: 32px;
  padding: 4px;
}

.preview-cal-cell.prev-month { background: rgba(255,255,255,0.2); }

.cell-num {
  font-size: 9px;
  color: var(--fg-muted);
  font-weight: 500;
}

.preview-budget-table { flex: 1; }
.pbt-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(90,124,101,0.15);
  font-size: 10px;
  color: var(--fg-muted);
}

.pbt-header span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.pbt-total {
  border-top: 2px solid rgba(90,124,101,0.3);
  border-bottom: none;
  font-weight: 700;
  color: var(--fg);
}

.pbt-line {
  display: block;
  height: 1.5px;
  background: rgba(90,124,101,0.2);
  border-radius: 1px;
  margin-top: 8px;
}

.preview-bundle {
  gap: 6px;
}

.pbi-item {
  font-size: 12px;
  color: var(--fg-muted);
  padding: 6px 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 6px;
  border-left: 3px solid var(--accent);
}

.preview-habit-grid { flex: 1; }
.phg-header {
  display: grid;
  grid-template-columns: 60px repeat(10, 1fr);
  gap: 3px;
  margin-bottom: 8px;
}

.phg-header span {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-align: center;
}

.phg-header .phg-habit { text-align: left; }

.phg-row {
  display: grid;
  grid-template-columns: 60px repeat(10, 1fr);
  gap: 3px;
  margin-bottom: 6px;
}

.phg-name {
  font-size: 9px;
  color: var(--fg-muted);
  padding-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.phg-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(90,124,101,0.25);
  margin: 0 auto;
}

.phg-dot.filled {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 0.6;
}

.product-format-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.format-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
}

/* Product detail info */
.product-cat-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.product-detail-name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-detail-tagline {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  font-style: italic;
}

.product-detail-price {
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--fg);
  margin-bottom: 24px;
}

.price-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-muted);
  margin-left: 8px;
}

.product-detail-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.product-guarantee {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guarantee-item {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
}

/* Related products */
.related-section { border-top: 1px solid var(--border); padding-top: 48px; }
.related-section h2 { font-size: 1.5rem; margin-bottom: 28px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  display: block;
  text-decoration: none;
  color: var(--fg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.related-card:hover {
  box-shadow: 0 8px 28px rgba(44,40,37,0.08);
  transform: translateY(-2px);
}

.related-thumb {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.related-thumb--planners { background: var(--accent-light); }
.related-thumb--calendars { background: var(--warm-light); }
.related-thumb--budget { background: #eef4f0; }
.related-thumb--accessories { background: #f7f2ee; }
.related-thumb--bundles { background: #f0ede8; }

.related-thumb span {
  display: block;
  width: 40px;
  height: 52px;
  background: rgba(255,255,255,0.6);
  border-radius: 4px;
  border: 1px solid rgba(90,124,101,0.2);
}

.related-name {
  padding: 12px 14px 4px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.related-price {
  padding: 0 14px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 0;
  color: var(--fg-muted);
}

.empty-state p { margin-bottom: 24px; font-size: 17px; }

/* ── DOWNLOAD PAGE ── */
.download-page {
  padding: 60px 0 100px;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: flex-start;
}

.download-card {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 16px 60px rgba(44,40,37,0.07);
  position: relative;
  overflow: hidden;
}

.download-card--error { border-color: #e8b4a0; }

.dl-confetti {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 18px;
  color: var(--accent);
  opacity: 0.3;
}

.dl-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  background: var(--bg-alt);
  color: var(--fg-muted);
}

.dl-icon--success {
  background: var(--accent-light);
  color: var(--accent);
}

.download-card h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.dl-email {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.dl-product-name {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.dl-actions {
  margin-bottom: 36px;
}

.dl-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.dl-instructions {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-bottom: 24px;
  text-align: left;
}

.dl-step {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.dl-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dl-step-text {
  font-size: 14px;
  color: var(--fg-muted);
  padding-top: 4px;
  line-height: 1.5;
}

.dl-footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}

.dl-footer-note a { color: var(--accent); text-decoration: none; }
.dl-footer-note a:hover { text-decoration: underline; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .category-tabs { gap: 6px; }
  .cat-tab { padding: 6px 14px; font-size: 13px; }
  .download-card { padding: 36px 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .related-grid { grid-template-columns: 1fr; }
  .product-detail-page { padding: 24px 0 60px; }
}
