/** Shopify CDN: Minification failed

Line 1183:0 Unexpected "{"
Line 1184:2 Unexpected "\"sections\""
Line 1185:4 Unexpected "\"ohl-shop\""
Line 1186:6 Unexpected "\"type\""
Line 1188:8 Unexpected "\"row1\""
Line 1188:18 Unexpected "\"type\""
Line 1188:58 Expected identifier but found "\"collection_handle\""
Line 1188:156 Unexpected ","
Line 1189:18 Unexpected "\"type\""
Line 1189:58 Expected identifier but found "\"collection_handle\""
... and 42 more hidden warnings

**/
/* ─── OHL CUSTOM THEME ───────────────────────────────────────────────────────── */
:root {
  --ohl-bg: #FAF7F2;
  --ohl-fg: #1E1C28;
  --ohl-teal: #3D7A6F;
  --ohl-teal-hover: #2E6059;
  --ohl-cream: #EDE0CC;
  --ohl-orange: #E8603A;
  --ohl-amber: #F4A336;
  --ohl-border: rgba(30,28,40,0.1);
  --ohl-card: #F3EDE3;
  --ohl-radius: 14px;
}

/* ─── PAGE HERO ──────────────────────────────────────────────────────────────── */
.ohl-page-hero {
  padding: 64px 64px 48px;
  background: var(--ohl-bg);
}
.ohl-page-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 16px;
}
.ohl-page-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ohl-orange);
  opacity: 0.7;
}
.ohl-page-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ohl-fg);
  margin: 0 0 16px;
  max-width: 700px;
}
.ohl-page-hero p {
  font-size: 15px;
  opacity: 0.6;
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 749px) {
  .ohl-page-hero { padding: 40px 20px 32px; }
}

/* ─── SHOP CATEGORY GRID ─────────────────────────────────────────────────────── */
.ohl-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 64px 48px;
  background: var(--ohl-bg);
}
@media (max-width: 989px) {
  .ohl-cat-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px 32px; gap: 8px; }
}
@media (max-width: 749px) {
  .ohl-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 749px) {
  .ohl-cat-grid { padding: 0 16px 32px; gap: 8px; }
}
.ohl-cat-card {
  background: var(--ohl-card);
  border-radius: var(--ohl-radius);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: var(--ohl-fg);
}
.ohl-cat-card:hover { background: var(--ohl-cream); }
.ohl-cat-card-name { font-size: 14px; font-weight: 600; }
.ohl-cat-card-icon { font-size: 22px; }

/* ─── PRODUCT SECTION ────────────────────────────────────────────────────────── */
.ohl-section-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 48px 64px 24px;
  background: var(--ohl-bg);
}
.ohl-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ohl-fg);
  margin: 0;
}
.ohl-section-count {
  font-size: 12px;
  opacity: 0.4;
}
@media (max-width: 749px) {
  .ohl-section-header { padding: 32px 16px 16px; }
}

/* ─── PRODUCT CARDS ──────────────────────────────────────────────────────────── */
.ohl-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 64px 48px;
  background: var(--ohl-bg);
}
@media (min-width: 990px) {
  .ohl-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 749px) {
  .ohl-product-grid { padding: 0 16px 32px; gap: 10px; }
}
.ohl-product-card {
  background: var(--ohl-card);
  border-radius: var(--ohl-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.ohl-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(30,28,40,0.1);
}
.ohl-card-img {
  background: var(--ohl-cream);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.ohl-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.ohl-card-badges {
  position: absolute;
  top: 10px; left: 10px; right: 10px;
  display: flex;
  justify-content: space-between;
}
.ohl-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
  padding: 3px 7px;
  border-radius: 20px;
  color: var(--ohl-fg);
}
.ohl-badge.green { background: rgba(61,122,111,0.15); color: var(--ohl-teal); }
.ohl-card-body { padding: 14px 16px 16px; }
.ohl-card-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 4px;
}
.ohl-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ohl-fg);
  margin-bottom: 4px;
}
.ohl-card-desc {
  font-size: 12px;
  opacity: 0.55;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.ohl-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ohl-card-sizes { font-size: 11px; opacity: 0.4; }
.ohl-card-price { font-size: 16px; font-weight: 700; color: var(--ohl-fg); }

/* ─── PRODUCT POPUP ──────────────────────────────────────────────────────────── */
.ohl-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(30,28,40,0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.ohl-popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.ohl-popup {
  background: var(--ohl-bg);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  transform: scale(0.95) translateY(12px);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.ohl-popup-overlay.open .ohl-popup {
  transform: scale(1) translateY(0);
}
.ohl-popup-img {
  background: var(--ohl-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 32px;
  position: relative;
}
.ohl-popup-img img {
  width: 100%;
  max-width: 260px;
  object-fit: contain;
}
.ohl-popup-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  max-height: 90vh;
}
.ohl-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(30,28,40,0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ohl-popup-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ohl-teal);
}
.ohl-popup-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--ohl-fg);
  margin: 0;
  line-height: 1.2;
}
.ohl-popup-desc {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.6;
  margin: 0;
}
.ohl-popup-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ohl-variant-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--ohl-border);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--ohl-fg);
}
.ohl-variant-btn.active {
  background: var(--ohl-teal);
  color: #fff;
  border-color: var(--ohl-teal);
}
.ohl-popup-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--ohl-fg);
}
.ohl-popup-price span {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.45;
  margin-left: 4px;
}
.ohl-popup-add-btn {
  width: 100%;
  padding: 14px;
  background: var(--ohl-teal);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ohl-popup-add-btn:hover { background: var(--ohl-teal-hover); }
.ohl-popup-add-btn.added { background: #4A8B7A; }
.ohl-popup-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ohl-popup-secondary a {
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--ohl-border);
  color: var(--ohl-fg);
  transition: all 0.15s;
}
.ohl-popup-secondary a:hover {
  background: var(--ohl-teal);
  color: #fff;
  border-color: var(--ohl-teal);
}
.ohl-popup-disclaimer {
  font-size: 10px;
  opacity: 0.35;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 749px) {
  .ohl-popup { grid-template-columns: 1fr; }
  .ohl-popup-img { min-height: 220px; }
}

/* ─── AGE GATE ───────────────────────────────────────────────────────────────── */
.ohl-age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ohl-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.3s;
}
.ohl-age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}
.ohl-age-gate-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 16px 48px rgba(30,28,40,0.12);
}
.ohl-age-gate-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 24px;
}
.ohl-age-gate h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ohl-fg);
}
.ohl-age-gate p {
  font-size: 13px;
  opacity: 0.55;
  line-height: 1.6;
  margin: 0 0 24px;
}
.ohl-dob-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.ohl-dob-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 8px;
}
.ohl-dob-row input {
  flex: 1;
  padding: 12px;
  border: 1.5px solid var(--ohl-border);
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
  background: var(--ohl-bg);
  color: var(--ohl-fg);
  outline: none;
}
.ohl-dob-row input:focus { border-color: var(--ohl-teal); }
.ohl-age-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.5;
  cursor: pointer;
}
.ohl-age-enter-btn {
  width: 100%;
  padding: 15px;
  background: var(--ohl-teal);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
}
.ohl-age-enter-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ohl-age-enter-btn:not(:disabled):hover { background: var(--ohl-teal-hover); }
.ohl-age-leave {
  display: block;
  text-align: center;
  font-size: 11px;
  opacity: 0.4;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
}

/* ─── CART PAGE ───────────────────────────────────────────────────────────────── */
.ohl-cart-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 0 64px 64px;
  background: var(--ohl-bg);
  align-items: start;
}
@media (max-width: 989px) {
  .ohl-cart-wrap { grid-template-columns: 1fr; padding: 0 16px 48px; }
}
.ohl-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--ohl-border);
}
.ohl-cart-item-img {
  width: 64px; height: 64px;
  background: var(--ohl-cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
}
.ohl-cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.ohl-cart-item-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ohl-cart-item-lot { font-size: 11px; opacity: 0.45; margin-bottom: 10px; }
.ohl-cart-qty-row { display: flex; align-items: center; gap: 8px; }
.ohl-cart-qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ohl-border);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.ohl-cart-qty-btn:hover { background: var(--ohl-teal); color: #fff; border-color: var(--ohl-teal); }
.ohl-cart-qty-num { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.ohl-cart-remove { font-size: 11px; opacity: 0.35; cursor: pointer; background: none; border: none; color: inherit; text-decoration: underline; padding: 0; }
.ohl-cart-item-price { font-size: 15px; font-weight: 700; white-space: nowrap; }
.ohl-cart-summary {
  background: var(--ohl-card);
  border-radius: var(--ohl-radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.ohl-cart-summary h3 { font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.ohl-cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.65;
  margin-bottom: 8px;
}
.ohl-cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ohl-border);
}
.ohl-cart-checkout-btn {
  width: 100%;
  margin-top: 16px;
  padding: 15px;
  background: var(--ohl-teal);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.ohl-cart-checkout-btn:hover { background: var(--ohl-teal-hover); }
.ohl-cart-empty {
  text-align: center;
  padding: 80px 20px;
}
.ohl-cart-empty h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.ohl-cart-empty p { opacity: 0.55; margin-bottom: 24px; }

/* ─── DISCLAIMER BAR ─────────────────────────────────────────────────────────── */
.ohl-disclaimer-bar {
  background: var(--ohl-fg);
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
}

/* ─── WA BUBBLE ──────────────────────────────────────────────────────────────── */
.ohl-wa-bubble {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 8000;
  transition: transform 0.2s;
}
.ohl-wa-bubble:hover { transform: scale(1.08); }
.ohl-wa-bubble svg { width: 26px; height: 26px; fill: #fff; }

/* ─── BTN HELPERS ────────────────────────────────────────────────────────────── */
.ohl-btn-solid {
  display: inline-block;
  padding: 12px 24px;
  background: var(--ohl-teal);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.ohl-btn-solid:hover { background: var(--ohl-teal-hover); color: #fff; }
.ohl-btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border: 1.5px solid var(--ohl-border);
  color: var(--ohl-fg);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.ohl-btn-outline:hover { background: var(--ohl-fg); color: #fff; }
/* ─── HORIZON OVERRIDES ──────────────────────────────────────────────────────── */

/* Force page background everywhere */
body,
.shopify-section,
main,
.main-content {
  background-color: var(--ohl-bg) !important;
}

/* Make sections flush — no extra Horizon padding fighting our sections */
.shopify-section:has(.ohl-page-hero),
.shopify-section:has(.ohl-cat-grid),
.shopify-section:has(.ohl-disclaimer-bar) {
  background: var(--ohl-bg);
  padding: 0 !important;
  margin: 0 !important;
}

/* Kill the gap between hero and category grid */
.shopify-section + .shopify-section { margin-top: 0 !important; }

/* Header — match brand feel */
.header-wrapper,
header-section,
.section-header {
  background: var(--ohl-bg) !important;
  border-bottom: 1px solid var(--ohl-border) !important;
  box-shadow: none !important;
}

/* Logo text style */
.header__heading-link,
.header__heading {
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: var(--ohl-fg) !important;
}

/* Nav links */
.header__menu-item,
.header__active-menu-item {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ohl-fg) !important;
  opacity: 0.7;
}
.header__menu-item:hover { opacity: 1; }

/* Announcement bar */
.announcement-bar {
  background: var(--ohl-fg) !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

/* Footer */
.footer {
  background: var(--ohl-fg) !important;
  color: rgba(255,255,255,0.5) !important;
}
.footer a { color: rgba(255,255,255,0.5) !important; }
.footer a:hover { color: #fff !important; }
.footer__heading { color: #fff !important; }

/* Horizon collection/product page backgrounds */
.collection,
.product,
.page-width {
  background: var(--ohl-bg) !important;
}

/* Product cards in native Horizon collection grid */
.card-wrapper .card {
  background: var(--ohl-card) !important;
  border-radius: var(--ohl-radius) !important;
  border: none !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.card-wrapper .card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 32px rgba(30,28,40,0.1) !important;
}
.card__heading a {
  color: var(--ohl-fg) !important;
  font-weight: 700 !important;
}

/* Buttons — override Horizon defaults */
.btn, button[type="submit"], .button {
  border-radius: 50px !important;
}
/* ─── BUTTON COLOR OVERRIDES ─────────────────────────────────────────────────── */
/* Add to cart + Buy it now buttons */
.btn--primary,
.button--primary,
[data-testid="Checkout-button"],
.cart__checkout-button,
form[action="/cart/add"] button[type="submit"],
.product-form__submit,
.shopify-payment-button__button--unbranded {
  background: var(--ohl-teal) !important;
  color: #fff !important;
  border-color: var(--ohl-teal) !important;
  border-radius: 50px !important;
}
.btn--primary:hover,
.button--primary:hover,
.product-form__submit:hover {
  background: var(--ohl-teal-hover) !important;
  border-color: var(--ohl-teal-hover) !important;
}

/* Buy it now (accelerated checkout) */
.shopify-payment-button__button {
  border-radius: 50px !important;
}

/* ─── COLLECTION GRID FIX ────────────────────────────────────────────────────── */
/* Cap at 4 columns */
.collection-grid,
.product-grid,
ul.grid.product-grid,
.grid.grid--4-col-desktop {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 989px) {
  .collection-grid,
  .product-grid,
  ul.grid.product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ─── COLLECTION PRODUCT CARD POLISH ────────────────────────────────────────── */
.card-wrapper {
  border-radius: var(--ohl-radius) !important;
  overflow: hidden;
}
.card--product {
  background: var(--ohl-card) !important;
  border-radius: var(--ohl-radius) !important;
  border: none !important;
  box-shadow: none !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.card--product:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 32px rgba(30,28,40,0.1) !important;
}
.card__media {
  background: var(--ohl-cream) !important;
  border-radius: var(--ohl-radius) var(--ohl-radius) 0 0 !important;
}
.card__information { padding: 12px 14px 16px !important; }
.card__heading { font-size: 14px !important; font-weight: 700 !important; }
.price__regular .price-item { font-weight: 700 !important; color: var(--ohl-fg) !important; }

/* ─── PRODUCT PAGE POLISH ────────────────────────────────────────────────────── */
.product__media-wrapper {
  background: var(--ohl-cream) !important;
  border-radius: var(--ohl-radius) !important;
}
.product__info-wrapper { padding-left: 32px !important; }
.product__title { font-size: 28px !important; font-weight: 700 !important; }
.quantity__button { border-radius: 50px !important; }

/* ─── STORE NAME IN HEADER ───────────────────────────────────────────────────── */
.header__heading-link span {
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}
/* ─── HERO SPLIT LAYOUT ──────────────────────────────────────────────────────── */
.ohl-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 70vh;
  padding: 64px 64px 48px !important;
}
.ohl-hero-left { display: flex; flex-direction: column; }
.ohl-hero-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.ohl-hero-disclaimer {
  margin-top: 20px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  opacity: 0.35 !important;
}
.ohl-hero-right { position: relative; }
.ohl-hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ohl-cream);
}
.ohl-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.ohl-hero-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: var(--ohl-fg);
}
.ohl-hero-badge::before { content: none; }
@media (max-width: 989px) {
  .ohl-hero-split {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 40px 20px 32px !important;
    gap: 24px !important;
  }
  .ohl-hero-right {
    display: block !important;
    width: 100%;
  }
  .ohl-hero-img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
  }
  .ohl-hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* ─── FEATURE CARDS ──────────────────────────────────────────────────────────── */
.ohl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 989px) {
  .ohl-features-grid { grid-template-columns: 1fr; }
  .ohl-features-section { padding-left: 20px !important; padding-right: 20px !important; }
}
.ohl-feature-card {
  border-radius: var(--ohl-radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1.5px solid transparent;
  transition: box-shadow 0.2s;
}
.ohl-feature-card:hover { box-shadow: 0 6px 24px rgba(30,28,40,0.08); }
.ohl-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ohl-feature-body { display: flex; flex-direction: column; gap: 6px; }
.ohl-feature-title { font-size: 15px; font-weight: 700; }
.ohl-feature-desc { font-size: 13px; opacity: 0.6; line-height: 1.6; }
.ohl-feature-link {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
}
.ohl-feature-link:hover { text-decoration: underline; }
/* ─── FEATURED PRODUCTS ──────────────────────────────────────────────────────── */
.ohl-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.ohl-featured-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
}
.ohl-featured-view-all {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.ohl-featured-view-all:hover { text-decoration: underline; }
.ohl-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 989px) {
  .ohl-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .ohl-featured-products { padding-left: 20px !important; padding-right: 20px !important; }
}
.ohl-featured-card {
  border-radius: var(--ohl-radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ohl-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(30,28,40,0.1);
}
.ohl-featured-card-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ohl-featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}
.ohl-featured-card-body { padding: 14px 16px 18px; }
.ohl-featured-card-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.ohl-featured-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ohl-featured-card-price { font-size: 14px; font-weight: 600; }
.ohl-featured-card-view { font-size: 12px; font-weight: 600; }
/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.ohl-footer { width: 100%; }
.ohl-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 64px 48px;
}
@media (max-width: 989px) {
  .ohl-footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 20px 32px; gap: 32px; }
}
@media (max-width: 749px) {
  .ohl-footer-inner { grid-template-columns: 1fr; }
}
.ohl-footer-logo { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.ohl-footer-tagline { font-size: 13px; opacity: 0.5; line-height: 1.6; margin: 0 0 16px; max-width: 280px; }
.ohl-footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-decoration: none;
  margin-top: 20px;
  opacity: 0.55;
  transition: opacity 0.15s;
}
.ohl-footer-instagram:hover { opacity: 1; }
.ohl-footer-instagram-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ohl-footer-mid-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 4px;
}
.ohl-footer-meta { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.3; }
.ohl-footer-mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 64px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  gap: 20px;
  flex-wrap: wrap;
  background: inherit;
}
@media (max-width: 749px) { .ohl-footer-mid { padding: 20px; } }
.ohl-footer-mid-text { font-size: 14px; }
.ohl-footer-mid-text strong { font-weight: 700; }
.ohl-footer-mid-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.ohl-footer-mid-btn:hover { opacity: 0.85; }
.ohl-footer-col-heading { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.4; margin-bottom: 16px; }
.ohl-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ohl-footer-links a { font-size: 13px; text-decoration: none; opacity: 0.6; transition: opacity 0.15s; }
.ohl-footer-links a:hover { opacity: 1; }
.ohl-footer-bottom { border-top: 1px solid; padding: 24px 64px; background: inherit; }
@media (max-width: 749px) { .ohl-footer-bottom { padding: 24px 20px; } }
.ohl-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.ohl-footer-legal { font-size: 12px; opacity: 0.4; }
.ohl-footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.ohl-footer-bottom-links a { font-size: 11px; opacity: 0.4; text-decoration: none; transition: opacity 0.15s; }
.ohl-footer-bottom-links a:hover { opacity: 0.8; }
.ohl-footer-disclaimer { font-size: 10px; opacity: 0.25; letter-spacing: 0.05em; text-transform: uppercase; }

/* Hide Horizon default footer */
body > footer { display: none !important; }
/* ─── SHOP PAGE ──────────────────────────────────────────────────────────────── */
.ohl-shop-page { width: 100%; }
.ohl-shop-hero { margin-bottom: 48px; }
.ohl-shop-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 8px;
}
.ohl-shop-sub { font-size: 13px; opacity: 0.45; margin: 0; }
.ohl-shop-group { margin-bottom: 48px; }

.ohl-shop-group-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ohl-border);
  flex-direction: column;
}
.ohl-shop-group-header-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}
.ohl-shop-group-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  text-decoration: none;
  margin: 0;
  line-height: 1.2;
}
.ohl-shop-group-count {
  font-size: 11px;
  font-weight: 400;
  margin-left: 8px;
  opacity: 0.4;
}
.ohl-shop-group-view {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.ohl-shop-group-view:hover { text-decoration: underline; }
.ohl-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 989px) {
  .ohl-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .ohl-shop-page { padding-left: 20px !important; padding-right: 20px !important; }
}
.ohl-shop-card {
  border-radius: var(--ohl-radius);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ohl-shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(30,28,40,0.1);
}
.ohl-shop-card-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.ohl-shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}
.ohl-shop-card-body { padding: 12px 14px 16px; }
.ohl-shop-card-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.ohl-shop-card-price { font-size: 13px; font-weight: 600; opacity: 0.5; }
.ohl-shop-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; padding-top: 4px; border-top: 1px solid var(--ohl-border); }
.ohl-shop-card-lot { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.ohl-shop-card-hplc { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; }
.ohl-shop-card-desc { font-size: 12px; opacity: 0.55; line-height: 1.5; margin: 4px 0 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ohl-shop-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.ohl-shop-card-sizes { font-size: 11px; opacity: 0.4; text-transform: uppercase; letter-spacing: 0.06em; }
.ohl-shop-card-price { font-size: 15px; font-weight: 700; }
{
  "sections": {
    "ohl-shop": {
      "type": "ohl-shop-page",
      "blocks": {
        "row1": { "type": "collection_row", "settings": { "collection_handle": "recovery", "icon": "💪", "tags": "Tissue · Gut · Skin · Connective" } },
        "row2": { "type": "collection_row", "settings": { "collection_handle": "weight", "icon": "⚖️", "tags": "Metabolic · GLP-1 · Fat Loss" } },
        "row3": { "type": "collection_row", "settings": { "collection_handle": "longevity", "icon": "🧬", "tags": "Cellular · Anti-Ageing · NAD+" } },
        "row4": { "type": "collection_row", "settings": { "collection_handle": "cognitive", "icon": "🧠", "tags": "Focus · Memory · Neuroprotection" } },
        "row5": { "type": "collection_row", "settings": { "collection_handle": "sleep", "icon": "😴", "tags": "Sleep · Recovery · Circadian" } },
        "row6": { "type": "collection_row", "settings": { "collection_handle": "performance", "icon": "🏋️", "tags": "Strength · Endurance · Growth" } },
        "row7": { "type": "collection_row", "settings": { "collection_handle": "sexual-health", "icon": "❤️", "tags": "Libido · Function · Hormonal" } },
        "row8": { "type": "collection_row", "settings": { "collection_handle": "tan", "icon": "☀️", "tags": "Melanin · Skin · UV" } },
        "row9": { "type": "collection_row", "settings": { "collection_handle": "topical", "icon": "💧", "tags": "Skin · Hair · Topical" } },
        "row10": { "type": "collection_row", "settings": { "collection_handle": "pens-supplies", "icon": "🔬", "tags": "Equipment · Supplies · Reconstitution" } }
      },
      "block_order": ["row1","row2","row3","row4","row5","row6","row7","row8","row9","row10"],
      "settings": {}
    }
  },
  "order": ["ohl-shop"]
}
/* ─── ABOUT PAGE ─────────────────────────────────────────────────────────────── */
.ohl-about-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0 0 16px;
}
.ohl-about-heading {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 800px;
}
.ohl-about-body {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.6;
  max-width: 560px;
  margin: 0;
}
.ohl-about-img-wrap { position: relative; }
.ohl-about-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  max-height: 520px;
}
.ohl-about-caption {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
  margin: 10px 0 0;
}
.ohl-about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
@media (max-width: 749px) {
  .ohl-about-pillars { grid-template-columns: 1fr; gap: 32px; }
  .ohl-about, .ohl-about-hero, .ohl-about-img-wrap, .ohl-about-facility-wrap, .ohl-about-cta, .ohl-about-pillars {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.ohl-about-pillar-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  margin: 0 0 10px;
}
.ohl-about-pillar-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
}
.ohl-about-pillar-body {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.6;
  margin: 0;
}
.ohl-about-facility {
  border-radius: 16px;
  padding: 40px;
}
.ohl-about-facility-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  margin: 8px 0 32px;
}
.ohl-about-facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 749px) {
  .ohl-about-facility-grid { grid-template-columns: 1fr; gap: 20px; }
}
.ohl-about-facility-key {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0 0 6px;
}
.ohl-about-facility-val {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  white-space: pre-line;
}
.ohl-about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* ─── CONTACT PAGE ───────────────────────────────────────────────────────────── */
.ohl-contact-hero {
  padding: 80px 64px 48px;
}
.ohl-contact-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 0 0 16px;
}
.ohl-contact-heading {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  max-width: 700px;
}
.ohl-contact-body {
  padding: 0 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ohl-contact-quick {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 16px;
  flex-wrap: wrap;
}
.ohl-contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 0 0 6px;
}
.ohl-contact-quick-text {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}
.ohl-contact-form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px;
  border-radius: 16px;
}
@media (max-width: 749px) {
  .ohl-contact-form-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}
.ohl-contact-form-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}
.ohl-contact-form-body {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.75;
  margin: 0 0 24px;
}
.ohl-contact-form-note {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.4;
  margin: 0;
  line-height: 1.8;
}
.ohl-contact-form-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ohl-contact-input,
.ohl-contact-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}
.ohl-contact-textarea { resize: vertical; }
.ohl-contact-submit {
  padding: 13px 24px;
  border-radius: 50px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
  align-self: flex-start;
}
.ohl-contact-submit:hover { opacity: 0.85; }
.ohl-contact-success {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}
.ohl-contact-insta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-radius: 16px;
  flex-wrap: wrap;
}
.ohl-contact-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 749px) {
  .ohl-contact-bottom-grid { grid-template-columns: 1fr; }
  .ohl-contact-hero { padding: 48px 20px 32px; }
  .ohl-contact-body { padding: 0 20px 48px; }
}
.ohl-contact-bottom-card {
  padding: 28px 32px;
  border-radius: 16px;
  text-decoration: none;
  display: block;
  transition: opacity 0.15s;
}
.ohl-contact-bottom-card:hover { opacity: 0.8; }
.ohl-contact-bottom-link {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
/* ─── STOCK & SALE BADGES ────────────────────────────────────────────────────── */
.ohl-card-badge-row {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
  flex-wrap: wrap;
}
.ohl-stock-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.ohl-stock-badge--in {
  background: rgba(61,122,111,0.15);
  color: #3D7A6F;
}
.ohl-stock-badge--out {
  background: rgba(30,28,40,0.08);
  color: rgba(30,28,40,0.45);
}
.ohl-stock-badge--sale {
  background: rgba(232,96,58,0.15);
  color: #E8603A;
}
.ohl-popup-add-btn--oos {
  background: var(--ohl-border) !important;
  color: rgba(30,28,40,0.4) !important;
  cursor: not-allowed !important;
}
{
  "sections": {
    "ohl-cart": {
      "type": "ohl-custom-cart",
      "settings": {}
    },
    "ohl-footer": {
      "type": "ohl-footer",
      "settings": {
        "bg_color": "#1E1C28",
        "logo_color": "#ffffff",
        "text_color": "#ffffff",
        "muted_color": "rgba(255,255,255,0.4)",
        "link_color": "rgba(255,255,255,0.6)",
        "border_color": "rgba(255,255,255,0.1)",
        "tagline": "An independent research-compound supplier. Lot-traceable certificates of analysis on every release. For laboratory research use only.",
        "meta": "UK · 18+ VERIFIED",
        "legal_text": "© 2026 Steroids & Peptides UK",
        "disclaimer": "For laboratory research use only · Not for human or veterinary use · No dosing guidance provided · UK 18+ verified"
      },
      "blocks": {
        "col1": { "type": "link_column", "settings": { "heading": "Shop", "heading_color": "#ffffff", "link1_label": "Recovery", "link1_url": "/collections/recovery", "link2_label": "Weight", "link2_url": "/collections/weight", "link3_label": "Longevity", "link3_url": "/collections/longevity", "link4_label": "All compounds", "link4_url": "/pages/shop", "link5_label": "Pens & Supplies", "link5_url": "/collections/pens-supplies" } },
        "col2": { "type": "link_column", "settings": { "heading": "Learn", "heading_color": "#ffffff", "link1_label": "About Us", "link1_url": "/pages/about", "link2_label": "Contact", "link2_url": "/pages/contact", "link3_label": "Contact", "link3_url": "/pages/contact", "link4_label": "Contact", "link4_url": "/pages/contact", "link5_label": "Contact", "link5_url": "/pages/contact" } }
      },
      "block_order": ["col1", "col2"]
    }
  },
  "order": ["ohl-cart", "ohl-footer"]
}