:root {
  --rose: #c62030;
  --rose-dark: #a51321;
  --rose-soft: #fbe8e8;
  --cream: #fff7f3;
  --sand: #f5e7de;
  --ink: #3a2b2b;
  --muted: #7a6d6a;
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(73, 32, 32, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 460px at 80% -60%, #ffe9f0 20%, transparent 60%),
    radial-gradient(880px 520px at 10% -35%, #ffeef4 25%, transparent 60%),
    var(--cream);
}

.blog-shell {
  width: 100%;
  max-width: 1200px;
  margin: 124px auto 56px;
  padding-inline: 20px;
  display: grid;
  gap: 24px;
}

.blog-head {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: 0;
  justify-items: start;
  text-align: left;
}

.blog-head h1,
.post-detail h1,
.section-head h2,
.post-body h2 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  color: #3b2623;
}

.blog-head h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
}

.blog-head p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.blog-convert {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid #ecd8d1;
  border-radius: 16px;
  background: linear-gradient(145deg, #fffdfc 0%, #fff2f5 100%);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.blog-convert-kicker {
  margin: 0;
  color: var(--rose-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

.blog-convert h2 {
  margin: 2px 0 4px;
  font-family: "Playfair Display", serif;
  font-size: clamp(19px, 2.3vw, 24px);
  line-height: 1.15;
  color: #3b2623;
}

.blog-convert-copy p {
  margin: 0;
  color: #5d4d4a;
  font-size: 14px;
}

.blog-convert-copy .blog-convert-kicker {
  color: var(--rose-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

.blog-convert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-convert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #e4cfca;
  background: #fff;
  color: #5a3f3a;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.blog-convert-btn.primary {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.blog-convert-btn:hover {
  transform: translateY(-1px);
}

.blog-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #eddad4;
  color: #765f59;
  font-size: 12px;
  font-weight: 600;
}

.back-link {
  width: fit-content;
  color: var(--rose-dark);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.back-link:hover {
  border-color: #e8b6bd;
}

.post-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.post-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-product-panel {
  width: 100%;
  margin-top: 0;
  background: linear-gradient(135deg, #fffaf8 0%, #fff1f4 100%);
  border: 1px solid #ead9d1;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.blog-product-panel-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-kicker {
  margin: 0;
  grid-column: 1 / -1;
  color: var(--rose-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.blog-product-panel-head h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
  color: #3b2623;
}

.blog-product-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-product-inline-card {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid #efdfd8;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform .16s ease, box-shadow .16s ease;
}

.blog-product-inline-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(73, 32, 32, 0.1);
}

.blog-product-inline-card img {
  width: 100%;
  height: 128px;
  border-radius: 9px;
  object-fit: cover;
}

.blog-product-inline-card img.is-fallback {
  object-fit: contain;
  background: #fff;
  padding: 14px;
}

.blog-product-inline-card strong {
  font-size: 13px;
  line-height: 1.25;
  min-height: 2.3em;
}

.blog-product-inline-price {
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 13px;
}

.blog-product-inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-top: 2px;
  padding: 0 9px;
  border-radius: 8px;
  background: #fff3f4;
  color: var(--rose-dark);
  border: 1px solid #f1d7d8;
  font-size: 12px;
  font-weight: 700;
}

.post-card,
.post-detail,
.related-products,
.state-box {
  background: var(--card);
  border: 1px solid #ead9d1;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.post-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.post-card.no-cover .post-body {
  padding-top: 22px;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(73, 32, 32, 0.12);
}

.cover-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  max-height: 155px;
  overflow: hidden;
}

.cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.cover-wrap img.is-fallback {
  object-fit: contain;
  background: #fff;
  padding: 16px;
}

.post-card:hover .cover-wrap img {
  transform: scale(1.03);
}

.post-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.date {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.post-body h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.post-body p {
  margin: 0;
  color: #5a4b48;
  font-size: 14px;
  line-height: 1.4;
  flex: 1 1 auto;
}

.read-more {
  margin-top: auto;
  font-weight: 700;
  font-size: 13px;
  color: var(--rose-dark) !important;
}

.state-box {
  margin-top: 14px;
  padding: 16px;
}

.state-box.error {
  border-color: #e7b7b7;
  background: #fff2f2;
  color: #8a1d1d;
}

.detail-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.blog-shell.detail-shell {
  width: min(980px, 100%);
  padding-inline: 26px;
  margin-left: auto;
  margin-right: auto;
}

.post-detail {
  padding: 30px;
}

.detail-cover {
  width: min(100%, 920px);
  max-height: 360px;
  margin: 18px 0 22px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #efdfd8;
}

.excerpt {
  margin: 0 0 14px;
  color: #5b4a47;
  font-size: 21px;
}

.content {
  font-size: 17px;
  line-height: 1.68;
}

.content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.content h2,
.content h3 {
  margin-top: 1.25em;
}

.content p {
  margin: 0 0 1em;
}

.related-products {
  padding: 14px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cta-link {
  color: var(--rose-dark);
  text-decoration: none;
  font-weight: 700;
}

.cta-link:hover {
  text-decoration: underline;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.product-card {
  border: 1px solid #efdfd8;
  border-radius: 12px;
  padding: 9px;
  background: #fff;
}

.product-card a {
  color: inherit;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: 9px;
  background: #fff;
}

.product-card img.is-fallback {
  object-fit: contain;
  padding: 14px;
}

.product-card h3 {
  margin: 7px 0 5px;
  font-size: 15px;
  line-height: 1.25;
}

.price { margin: 0; }

.sale {
  margin-right: 8px;
  color: var(--rose-dark);
  font-weight: 700;
}

.old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 14px;
}

@media (max-width: 760px) {
  .blog-shell {
    margin-top: 16px;
    padding-inline: 14px;
    gap: 16px;
  }

  .blog-shell.detail-shell {
    padding-inline: 14px;
  }

  .blog-head p {
    font-size: 17px;
  }

  .blog-head {
    max-width: none;
    padding-inline: 0;
  }

  .blog-convert {
    max-width: 100%;
    margin: 0;
    padding: 14px;
  }

  .post-detail {
    padding: 22px;
  }

  .content {
    font-size: 17px;
  }

  .post-body h2 {
    font-size: 22px;
  }

  .post-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .blog-product-panel-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .blog-product-inline-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-product-inline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
