:root {
  --ohs-ink: #2C1810;
  --ohs-paper: #F5EDE0;
  --ohs-white: #FFFCF7;
  --ohs-muted: #7A6558;
  --ohs-line: #E0D4C4;
  --ohs-accent: #8B4513;
  --ohs-accent-soft: #F0E4D6;
  --ohs-accent-deep: #5C2E0E;
  --ohs-cream: #E8D5B5;
  --ohs-radius: 14px;
  --ohs-radius-sm: 10px;
  --ohs-font-heading: "Fraunces", Georgia, serif;
  --ohs-font-body: "DM Sans", system-ui, sans-serif;
  --ohs-shadow: 0 18px 40px rgba(44, 24, 16, 0.08);
  --ohs-content: 1180px;
  --wp--style--global--content-size: min(100%, var(--ohs-content));
  --wp--style--global--wide-size: 100%;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none !important;
  overflow-x: hidden;
  font-family: var(--ohs-font-body);
  color: var(--ohs-ink);
  background: var(--ohs-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Kill WP / page-builder wrappers that squash the whole site into a narrow column */
#page,
.site,
.wp-site-blocks,
#wrapper,
#content,
.site-content,
.ohs-home,
.is-root-container {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.is-layout-constrained,
body .is-layout-constrained {
  max-width: none !important;
}

body .is-layout-constrained > :where(:not(.alignfull):not(.alignwide):not(.ohs-container)),
.wp-site-blocks > :where(:not(.alignfull):not(.ohs-container)) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Inner pages that put ohs-container on <main> keep a readable content width */
.site-main.ohs-container {
  width: 100%;
  max-width: var(--ohs-content) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(1.25rem, 4vw, 2rem) !important;
  padding-right: clamp(1.25rem, 4vw, 2rem) !important;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--ohs-font-heading);
  color: var(--ohs-ink);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

a { color: var(--ohs-accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.ohs-container {
  width: 100%;
  max-width: var(--ohs-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

/* Full-bleed shells — never inherit a parent max-width */
.ohs-announcement,
.ohs-header,
.ohs-hero,
.ohs-trust,
.ohs-slogan-strip,
.ohs-section,
.ohs-footer,
.ohs-cta {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* Announcement */
.ohs-announcement {
  background: var(--ohs-ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ohs-announcement__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 0;
  text-align: center;
}
.ohs-announcement p { margin: 0; }

/* Header */
.ohs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--ohs-line);
  backdrop-filter: blur(14px);
}
.ohs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  position: relative;
}
.ohs-logo {
  flex: 0 0 auto;
}
.ohs-logo img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.ohs-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.ohs-nav__list,
.ohs-nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 1.1rem;
  list-style: none !important;
  margin: 0;
  padding: 0;
}
.ohs-nav__list > li,
.ohs-nav ul > li {
  flex: 0 0 auto;
  list-style: none !important;
  margin: 0;
}
.ohs-nav__list a {
  color: var(--ohs-ink);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.ohs-nav__list a:hover { color: var(--ohs-accent-deep); text-decoration: none; }
.ohs-header__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: flex-end;
  flex: 0 0 auto;
}
.ohs-nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  order: 3;
}
.ohs-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ohs-ink);
  margin: 4px 0;
}

/* Hamburger before nav can stack/squash (in main.css so it always ships) */
@media (max-width: 1100px) {
  .ohs-nav-toggle { display: block; }
  .ohs-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex: none;
    justify-content: flex-start;
    background: #fff;
    border-bottom: 1px solid var(--ohs-line);
    padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.25rem;
    z-index: 120;
  }
  .ohs-nav.is-open { display: block; }
  .ohs-nav__list,
  .ohs-nav ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

/* Buttons */
.ohs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.ohs-btn:hover { transform: translateY(-1px); }
.ohs-btn--primary {
  background: var(--ohs-accent);
  border-color: var(--ohs-accent);
  color: #fff !important;
}
.ohs-btn--primary:hover {
  background: var(--ohs-accent-deep);
  border-color: var(--ohs-accent-deep);
  color: #fff !important;
}
.ohs-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
}
.ohs-header .ohs-btn--ghost,
.ohs-section .ohs-btn--ghost {
  border-color: var(--ohs-line);
  color: var(--ohs-ink) !important;
  background: var(--ohs-white);
}
.ohs-header .ohs-btn--ghost:hover,
.ohs-section .ohs-btn--ghost:hover {
  border-color: var(--ohs-ink);
  background: var(--ohs-paper);
}

/* Hero */
.ohs-hero {
  position: relative;
  width: 100%;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ohs-ink);
}
.ohs-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ohs-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
}
.ohs-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(44, 24, 16, 0.88) 0%, rgba(44, 24, 16, 0.42) 52%, rgba(44, 24, 16, 0.22) 100%),
    linear-gradient(180deg, rgba(44, 24, 16, 0.12) 0%, rgba(44, 24, 16, 0.72) 100%);
}
.ohs-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 4vw, 2rem) clamp(3.5rem, 8vh, 5rem);
}
.ohs-hero__mark {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}
.ohs-hero h1 {
  color: #fff !important;
  font-size: clamp(2.1rem, 5.5vw, 4.2rem);
  font-weight: 800;
  max-width: min(16ch, 100%);
  margin-bottom: 1rem;
}
.ohs-hero__subhead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 36ch;
  margin: 0;
}
.ohs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.ohs-hero .ohs-btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}
.ohs-hero .ohs-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

/* Trust */
.ohs-trust {
  background: var(--ohs-ink);
  color: #fff;
  padding: 1.15rem 0;
}
.ohs-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.ohs-trust__item strong {
  display: block;
  color: #9fe1cb;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.ohs-trust__item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

/* Sections */
.ohs-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  width: 100%;
}
.ohs-section--paper,
.ohs-section--cream { background: var(--ohs-paper); }
.ohs-section--ink {
  background: var(--ohs-ink);
  color: #fff;
}
.ohs-section--ink h2,
.ohs-section--ink h3 { color: #fff; }
.ohs-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}
.ohs-section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}
.ohs-section__lead {
  margin: 0 auto;
  color: var(--ohs-muted);
  font-size: 1.05rem;
  max-width: 48ch;
}
.ohs-section--ink .ohs-section__lead { color: rgba(255, 255, 255, 0.72); }

.ohs-slogan {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ohs-coral);
}
.ohs-slogan--center { text-align: center; }
.ohs-slogan--on-dark { color: #9fe1cb; }
.ohs-slogan--hero { color: var(--ohs-cream); margin-bottom: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; font-weight: 700; }

/* Product grid */
.ohs-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.ohs-product-card {
  background: var(--ohs-white);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  overflow: hidden;
  box-shadow: var(--ohs-shadow);
  transition: transform 0.2s ease;
}
.ohs-product-card:hover { transform: translateY(-4px); }
.ohs-product-card__img {
  aspect-ratio: 1;
  background: var(--ohs-paper);
  overflow: hidden;
}
.ohs-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ohs-product-card__body { padding: 1.1rem 1.15rem 1.3rem; }
.ohs-product-card__body h3 {
  font-size: 1.05rem;
  margin: 0.35rem 0 0.4rem;
}
.ohs-product-card__price {
  margin: 0;
  font-weight: 700;
  color: var(--ohs-accent-deep);
}
.ohs-badge {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--ohs-accent-soft);
  color: var(--ohs-accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ohs-section__cta {
  text-align: center;
  margin-top: 2rem;
}

/* Collection tiles */
.ohs-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.ohs-collection-tile {
  position: relative;
  min-height: 340px;
  border-radius: var(--ohs-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none !important;
  box-shadow: var(--ohs-shadow);
}
.ohs-collection-tile__media {
  position: absolute;
  inset: 0;
}
.ohs-collection-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ohs-collection-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 24, 16, 0.05) 20%, rgba(44, 24, 16, 0.82) 100%);
}
.ohs-collection-tile__body {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
}
.ohs-collection-tile h3 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 0 0.4rem;
}
.ohs-collection-tile p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 28ch;
}
.ohs-collection-tile span {
  font-weight: 700;
  color: var(--ohs-cream);
}

/* Brew method tiles (homepage) */
.ohs-brew-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.ohs-brew-tile {
  position: relative;
  min-height: 300px;
  border-radius: var(--ohs-radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none !important;
  box-shadow: var(--ohs-shadow);
}
.ohs-brew-tile__media { position: absolute; inset: 0; }
.ohs-brew-tile__media img { width: 100%; height: 100%; object-fit: cover; }
.ohs-brew-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 24, 16, 0.08) 15%, rgba(44, 24, 16, 0.85) 100%);
}
.ohs-brew-tile__body { position: relative; z-index: 1; padding: 1.5rem; }
.ohs-brew-tile h3 { color: #fff; font-size: 1.55rem; margin: 0 0 0.35rem; }
.ohs-brew-tile p { margin: 0 0 0.75rem; color: rgba(255, 252, 247, 0.88); max-width: 32ch; font-size: 0.95rem; }
.ohs-brew-tile span { font-weight: 700; color: var(--ohs-cream); }
@media (max-width: 768px) {
  .ohs-brew-grid { grid-template-columns: 1fr; }
}

/* Why grid */
.ohs-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.ohs-why-card {
  background: var(--ohs-white);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  padding: 1.5rem;
}
.ohs-why-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.ohs-why-card p { margin: 0; color: var(--ohs-muted); }

/* Lifestyle split (homepage) */
.ohs-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
.ohs-split--flip { direction: rtl; }
.ohs-split--flip > * { direction: ltr; }
.ohs-split__media {
  border-radius: var(--ohs-radius);
  overflow: hidden;
  box-shadow: var(--ohs-shadow);
  min-height: 280px;
}
.ohs-split__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.ohs-split__copy .ohs-section__title,
.ohs-split__copy .ohs-slogan { text-align: left; }
.ohs-split__copy .ohs-section__lead {
  margin: 0 0 1.25rem;
  text-align: left;
  max-width: 42ch;
}
.ohs-split__copy ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--ohs-muted);
}
.ohs-split--after-why { margin-top: 3rem; }
@media (max-width: 900px) {
  .ohs-split,
  .ohs-split--flip { grid-template-columns: 1fr; direction: ltr; }
}

/* Process */
.ohs-process {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
.ohs-process__copy .ohs-section__title,
.ohs-process__copy .ohs-slogan { text-align: left; }
.ohs-process__copy .ohs-section__lead {
  margin: 0 0 1.25rem;
  text-align: left;
}
.ohs-process ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--ohs-muted);
}
.ohs-process__media {
  border-radius: var(--ohs-radius);
  overflow: hidden;
  box-shadow: var(--ohs-shadow);
}
.ohs-process__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* FAQ */
.ohs-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.ohs-faq {
  background: var(--ohs-white);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius-sm);
  padding: 1rem 1.15rem;
}
.ohs-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--ohs-font-heading);
}
.ohs-faq p {
  margin: 0.75rem 0 0;
  color: var(--ohs-muted);
}

/* CTA */
.ohs-cta {
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(224, 122, 95, 0.28), transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(47, 158, 148, 0.28), transparent 40%),
    var(--ohs-ink);
}
.ohs-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.ohs-cta p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

/* Slogan strip */
.ohs-slogan-strip {
  overflow: hidden;
  background: linear-gradient(90deg, #12233f 0%, #1f6f69 50%, #e07a5f 100%);
  color: #fff;
  padding: 0.8rem 0;
}
.ohs-slogan-strip__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: ohs-marquee 34s linear infinite;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ohs-slogan-strip__item { white-space: nowrap; }
.ohs-slogan-strip__item::after {
  content: " · ";
  margin-left: 2.5rem;
  opacity: 0.55;
}
@keyframes ohs-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ohs-slogan-strip__track { animation: none; }
}

/* Footer */
.ohs-footer {
  background: #0d1a30;
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.75rem;
}
.ohs-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.ohs-footer__brand p { margin: 0.75rem 0 0; max-width: 28ch; }
.ohs-footer h3 {
  color: #9fe1cb;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.ohs-footer ul { list-style: none; margin: 0; padding: 0; }
.ohs-footer li { margin-bottom: 0.4rem; }
.ohs-footer a { color: rgba(255, 255, 255, 0.78); }
.ohs-footer a:hover { color: #fff; }
.ohs-footer__closer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  text-align: center;
}
.ohs-footer__closer .ohs-slogan { color: #9fe1cb; }
.ohs-footer__bottom {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
}

/* Woo single */
.ohs-woocommerce,
.ohs-single,
.ohs-page,
.ohs-archive,
.ohs-search,
.ohs-404 { padding: 2.5rem 0 4rem; }

.ohs-page__article { max-width: 760px; }
.ohs-page__header { margin-bottom: 1.5rem; }
.ohs-page__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0;
}
.ohs-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ohs-ink) !important;
  margin: 0 0 1.5rem;
}
.ohs-page-figure {
  margin: 0 0 1.75rem;
  border-radius: var(--ohs-radius);
  overflow: hidden;
  background: var(--ohs-paper);
}
.ohs-page-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.ohs-page-figure figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.88rem;
  color: var(--ohs-muted);
}
.ohs-page-cta {
  margin-top: 2.75rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--ohs-radius);
  background:
    radial-gradient(ellipse at 15% 0%, rgba(224, 122, 95, 0.22), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(47, 158, 148, 0.22), transparent 45%),
    var(--ohs-ink);
  color: #fff;
  text-align: center;
}
.ohs-page-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.35rem 0 0.65rem;
}
.ohs-page-cta p { color: rgba(255, 255, 255, 0.78); }
.ohs-page-cta .ohs-slogan { color: var(--ohs-cream); }
.ohs-page-cta .ohs-btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}
.ohs-shop-intro { margin-bottom: 2rem; max-width: none; }
.ohs-meta { color: var(--ohs-muted); font-size: 0.9rem; margin: 0.35rem 0 0; }
.ohs-page__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ohs-line);
  color: var(--ohs-muted);
  font-size: 0.92rem;
}
.ohs-featured-image {
  margin: 0 0 1.5rem;
  border-radius: var(--ohs-radius);
  overflow: hidden;
}
.ohs-prose { max-width: 68ch; }
.ohs-prose h2 { font-size: 1.35rem; margin: 1.75rem 0 0.65rem; }
.ohs-prose h3 { font-size: 1.15rem; margin: 1.4rem 0 0.5rem; }
.ohs-prose p, .ohs-prose li { color: var(--ohs-muted); }
.ohs-prose ul, .ohs-prose ol { padding-left: 1.2rem; }
.ohs-prose .ohs-btn { margin: 0.35rem 0.5rem 0.35rem 0; }
.ohs-prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.ohs-prose th,
.ohs-prose td {
  border-bottom: 1px solid var(--ohs-line);
  padding: 0.65rem 0.4rem;
  text-align: left;
}
.ohs-callout {
  background: var(--ohs-paper);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius-sm);
  padding: 1rem 1.15rem;
  color: var(--ohs-ink) !important;
}
.ohs-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.ohs-post-card {
  background: var(--ohs-white);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  padding: 1.25rem;
  box-shadow: var(--ohs-shadow);
}
.ohs-post-card__title { font-size: 1.2rem; margin: 0.5rem 0; }
.ohs-empty-state { text-align: center; padding: 3rem 0; max-width: 40ch; margin: 0 auto; }
.ohs-btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.25rem; }
.ohs-archive-header { text-align: center; margin-bottom: 2rem; }

@media (max-width: 700px) {
  .ohs-post-grid { grid-template-columns: 1fr; }
}
.ohs-single-product__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.ohs-single-product__media {
  background: var(--ohs-paper);
  border-radius: var(--ohs-radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.ohs-single-product__media .woocommerce-product-gallery,
.ohs-single-product__media .woocommerce-product-gallery__wrapper,
.ohs-single-product__media .woocommerce-product-gallery__image {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.ohs-single-product__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}
.ohs-single-product__summary .ohs-eyebrow,
.ohs-eyebrow {
  color: var(--ohs-accent-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
}
.ohs-single-product__lead { color: var(--ohs-muted); font-size: 1.05rem; }
.ohs-single-product__trust {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--ohs-muted);
}
.ohs-single-product__details {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ohs-line);
}
.ohs-variant-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
}
.ohs-variant-table th,
.ohs-variant-table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--ohs-line);
}

/* WooCommerce loops inherit */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: var(--ohs-white);
  border: 1px solid var(--ohs-line);
  border-radius: var(--ohs-radius);
  overflow: hidden;
  padding: 0 0 1rem !important;
  box-shadow: var(--ohs-shadow);
}
.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 0 0.85rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--ohs-font-heading);
  font-size: 1.05rem !important;
  padding: 0 1rem;
}
.woocommerce ul.products li.product .price {
  padding: 0 1rem;
  color: var(--ohs-accent-deep);
  font-weight: 700;
}
.woocommerce ul.products li.product .button {
  margin: 0.85rem 1rem 0;
  background: var(--ohs-accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
}
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--ohs-accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  padding: 0.9rem 1.5rem !important;
}

/* Footer address + legal */
.ohs-footer__address,.ohs-footer__legal{display:block;margin:1.25rem 0;font-style:normal;font-size:.9rem;line-height:1.5}.ohs-footer__legal a{margin:0 .25rem}
