/* Momo Hammock Showcase — below product summary */
.mhs-showcase {
  font-family: inherit;
  color: #1f1d1a;
  max-width: 1040px;
  margin: 3rem auto 2rem;
  padding: 0 1rem;
  --mhs-accent: #565f3a;      /* forest green — matches hammock brand */
  --mhs-accent-dark: #3f4729;
  --mhs-bg: #fafaf7;
  --mhs-bg-soft: #f2f0e9;
  --mhs-border: #e5e1d8;
  --mhs-muted: #7a7468;
  --mhs-dark: #1f1d1a;
}
.mhs-showcase * { box-sizing: border-box; }
.mhs-showcase .mhs-show { margin: 0 0 3.5rem; }

/* Section title shared */
.mhs-section-title {
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0 0 1.2rem;
  color: var(--mhs-dark);
  line-height: 1.2;
}

/* ============ Prose (long_description rendered) ============ */
.mhs-prose {
  max-width: 72ch;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #2a2521;
}
.mhs-prose > *:first-child { margin-top: 0; }
.mhs-prose h1,
.mhs-prose h2,
.mhs-prose h3,
.mhs-prose h4 {
  color: var(--mhs-dark);
  font-weight: 700;
  letter-spacing: -.012em;
  line-height: 1.25;
  margin: 2.5rem 0 .7rem;
}
.mhs-prose h2 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin-top: 3rem; }
.mhs-prose h3 { font-size: clamp(1.15rem, 1.9vw, 1.35rem); }
.mhs-prose h4 { font-size: 1.05rem; }
.mhs-prose h2:first-child,
.mhs-prose h3:first-child { margin-top: 0; }
.mhs-prose p {
  margin: 0 0 1.15rem;
}
.mhs-prose strong { color: var(--mhs-dark); font-weight: 600; }
.mhs-prose a {
  color: var(--mhs-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.mhs-prose a:hover { color: var(--mhs-accent-dark); }
.mhs-prose ul,
.mhs-prose ol {
  margin: 0 0 1.35rem;
  padding-left: 1.5em;
}
.mhs-prose li {
  margin: 0 0 .55rem;
  line-height: 1.65;
}
.mhs-prose ul li::marker { color: var(--mhs-accent); }
.mhs-prose figure {
  margin: 1.8rem auto;
  max-width: 100%;
}
.mhs-prose figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.mhs-prose figcaption {
  font-size: .85rem;
  color: var(--mhs-muted);
  text-align: center;
  margin-top: .5rem;
  line-height: 1.5;
}
.mhs-prose blockquote {
  border-left: 3px solid var(--mhs-accent);
  padding: .2rem 0 .2rem 1.1rem;
  margin: 1.3rem 0;
  font-style: italic;
  color: #3a352f;
}
.mhs-prose iframe,
.mhs-prose .wp-block-embed {
  max-width: 100%;
}
.mhs-prose .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin: 1.5rem 0;
}
.mhs-prose .wp-block-embed__wrapper iframe,
.mhs-prose .wp-block-embed__wrapper > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.mhs-prose mark {
  background: #fff3cd;
  padding: 0 .2em;
  border-radius: 3px;
}

/* ============ Specs table ============ */
.mhs-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: .05rem;
  background: var(--mhs-border);
  border: 1px solid var(--mhs-border);
  border-radius: 14px;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}
.mhs-spec {
  display: grid;
  grid-template-columns: 1fr;
  gap: .15rem;
  padding: .95rem 1.15rem;
  background: #fff;
}
.mhs-spec dt {
  font-size: .78rem;
  font-weight: 600;
  color: var(--mhs-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
}
.mhs-spec dd {
  margin: 0;
  font-size: .95rem;
  color: var(--mhs-dark);
  line-height: 1.5;
}
@media (min-width: 640px) {
  .mhs-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .mhs-spec { grid-template-columns: 35% 1fr; align-items: baseline; gap: 1rem; }
  .mhs-spec dt { padding-top: 2px; }
}

/* ============ Reviews ============ */
.mhs-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.mhs-reviews-head .mhs-section-title { margin-bottom: .2rem; }
.mhs-reviews-meta {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  color: #3a352f;
}
.mhs-stars { color: #d4a017; font-size: 1.05rem; letter-spacing: 1px; }
.mhs-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.mhs-review-card {
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--mhs-border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.mhs-review-stars {
  color: #d4a017;
  font-size: .95rem;
  letter-spacing: 1px;
  line-height: 1;
}
.mhs-review-stars .mhs-star-dim { color: #e6dfcf; }
.mhs-review-quote {
  margin: 0;
  font-size: .94rem;
  line-height: 1.6;
  color: #2a2521;
  font-style: normal;
}
.mhs-review-quote::before {
  content: '“';
  font-size: 1.8em;
  color: var(--mhs-accent);
  line-height: 0;
  position: relative;
  top: .22em;
  margin-right: .1em;
  font-family: Georgia, serif;
}
.mhs-review-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: .3rem;
  gap: .5rem;
  flex-wrap: wrap;
}
.mhs-review-author {
  font-size: .86rem;
  font-weight: 600;
  color: var(--mhs-dark);
}
.mhs-review-verified {
  font-size: .74rem;
  color: #4f9960;
  font-weight: 500;
}
@media (min-width: 640px) { .mhs-review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .mhs-review-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }

/* ============ Companions / cross-sell ============ */
.mhs-comp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.mhs-comp-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: .85rem 1rem;
  background: #fff;
  border: 1px solid var(--mhs-border);
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
.mhs-comp-card:hover {
  border-color: var(--mhs-accent);
  box-shadow: 0 4px 14px rgba(86,95,58,.1);
  transform: translateY(-1px);
}
.mhs-comp-card.is-oos { opacity: .7; }
.mhs-comp-img-wrap {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--mhs-bg-soft);
  flex-shrink: 0;
}
.mhs-comp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mhs-comp-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--mhs-dark);
  margin-bottom: .15rem;
}
.mhs-comp-sub {
  font-size: .82rem;
  color: var(--mhs-muted);
  line-height: 1.4;
  margin-bottom: .35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mhs-comp-price {
  font-size: .92rem;
  font-weight: 500;
  color: var(--mhs-dark);
}
.mhs-comp-price .amount { font-weight: 500; }
.mhs-comp-oos {
  color: var(--mhs-muted);
  font-weight: 400;
  font-size: .82rem;
}
.mhs-comp-arrow {
  color: var(--mhs-accent);
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .15s ease, transform .15s ease;
}
.mhs-comp-card:hover .mhs-comp-arrow {
  opacity: 1;
  transform: translateX(2px);
}
@media (min-width: 640px) { .mhs-comp-grid { grid-template-columns: repeat(2, 1fr); } }

/* Responsive */
@media (max-width: 480px) {
  .mhs-showcase { padding: 0 .75rem; margin: 2rem auto 1.5rem; }
  .mhs-showcase .mhs-show { margin-bottom: 2.5rem; }
  .mhs-comp-img-wrap { width: 72px; height: 72px; }
}
