:root {
  --ivory: #fffaf0;
  --champagne: #f4e4c1;
  --soft-gold: #b98d42;
  --deep-ink: #2f2925;
  --warm-stone: #776b60;
  --line: #ead9bd;
  --paper: #fffdf8;
  --shadow: 0 18px 50px rgba(77, 58, 35, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--deep-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  width: 100%;
}

.site-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 22px 44px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--soft-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5rem);
}

h2 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--warm-stone);
  font-size: 1.08rem;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-card__image {
  display: grid;
  min-height: 240px;
  padding: 22px;
  place-items: center;
  background: linear-gradient(135deg, #fffdf8, #f7ead1);
  text-decoration: none;
}

.product-card__image img {
  height: 220px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-card__body {
  padding: 22px;
}

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

.product-card p:last-child {
  margin-bottom: 0;
  color: var(--warm-stone);
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(185, 141, 66, 0.42);
  border-radius: 6px;
  color: var(--deep-ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.card-link:active,
.cta-button:active {
  transform: scale(0.99);
}

.image-placeholder {
  width: 100%;
  min-height: 220px;
  border: 1px dashed var(--soft-gold);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(185, 141, 66, 0.16), rgba(255, 250, 240, 0.55)),
    repeating-linear-gradient(45deg, rgba(185, 141, 66, 0.08) 0 10px, transparent 10px 20px);
}

.image-placeholder-large {
  min-height: 420px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 20px;
  color: var(--warm-stone);
  text-align: center;
}

.product-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 70px;
}

.breadcrumb {
  margin-bottom: 26px;
  color: var(--warm-stone);
  font-size: 0.95rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.product-detail__image {
  display: grid;
  min-height: 360px;
  padding: 26px;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-detail__image img {
  max-height: 520px;
  object-fit: contain;
}

.product-detail__content .lead {
  color: var(--warm-stone);
  font-size: 1.1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  padding: 14px 22px;
  background: var(--soft-gold);
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.trial-note,
.affiliate-disclosure {
  color: var(--warm-stone);
}

.trial-note {
  margin: 12px 0 22px;
  font-size: 0.95rem;
}

.affiliate-disclosure {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (min-width: 680px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 141, 66, 0.62);
    box-shadow: 0 24px 58px rgba(77, 58, 35, 0.16);
  }

  .product-card:hover .product-card__image img {
    transform: scale(1.015);
  }

  .card-link:hover {
    background: rgba(185, 141, 66, 0.1);
    border-color: rgba(185, 141, 66, 0.72);
  }
}

@media (min-width: 900px) {
  .product-detail {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  }

  .cta-button {
    width: auto;
  }
}
