/** Shopify CDN: Minification failed

Line 1084:2 Unexpected ".2col_list"

**/
/* ============================================================
   Trinket Heals — Shopify Theme Styles
   Mobile-first. All breakpoints use min-width.
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-size: 18px; }
body {
  font-family: var(--font-sans);
  color: var(--brand-body);
  background: var(--brand-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  color: var(--brand-teal-deep);
}
h1 { font-size: clamp(3rem, 4vw, 5rem); }
h2 { font-size: clamp(2.5rem, 3vw, 3rem); }
h3 { font-size: clamp(2rem, 2.5vw, 2.5rem); margin-bottom: 1rem; }
h4 { font-size: clamp(1.75rem, 2vw, 2rem); margin-bottom: 1rem; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p.hb-lead { font-size: var(--button-size); line-height: 1.6; }
.visually-hidden { display: none; }

.hb-tablet {display:none!important;}
.hb-mobile {display:block!important;width:100%;}
@media screen and (min-width:768px){
  .hb-tablet {display:inline-block!important;}
  .hb-mobile {display:none!important;width:auto;}
}
@media screen and (min-width:1200px){
  .hb-tablet {display:none!important;}
}
.hb-mobile-btn{
  margin-top:1rem;
  margin-bottom:1rem;
  text-align:center;
  font-size:var(--button-size)!important;
}

/** Text Colors **/

.coral {color:var(--brand-coral);}
.orange {color:var(--brand-orange);}
.cream {color:var(--brand-cream);}
.navy {color:var(--brand-navy);}
.teal {color:var(--brand-teal);}
.teal-deep {color:var(--brand-teal-deep);}

/** Images **/

.hb_img_full {
  margin:20px;
  border-radius:20px;
  box-shadow: 10px 10px 0 var(--brand-coral);
  width:100%;
}

/* ── Skip link ────────────────────────────────────────────── */
.hb-skip {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  z-index: 9999;
  padding: .6rem 1.2rem;
  background: var(--brand-teal);
  color: #fff;
  border-radius: 0 0 .5rem .5rem;
  font-weight: 600;
  font-size: var(--eyebrow-size);
  transition: top .15s;
}
.hb-skip:focus { top: 0; }

/* ── Utilities ────────────────────────────────────────────── */
.hb-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hb-eyebrow {
  display: inline-block;
  font-size: var(--eyebrow-size);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-teal);
}
.hb-header__logo { min-width: 240px; }
.hp-section { padding: var(--section_padding); }

/* ── Buttons ──────────────────────────────────────────────── */
.hb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--button-size);
  letter-spacing: .02em;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.hb-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px rgba(10,155,138,.45); }
.hb-btn--primary  { background: var(--brand-teal);   color: #fff; }
.hb-btn--coral    { background: var(--brand-coral);  color: #fff; }
.hb-btn--orange   { background: var(--brand-orange); color: #fff; }
.hb-btn--ghost {
  background: var(--brand-cream);
  border: 1.5px solid var(--brand-navy);
  color: var(--brand-navy);
}
.hb-btn--ghost:hover { background: rgba(255,255,255,.25); }
.hb-btn--ghost-dark {
  background: transparent;
  border: 1.5px solid var(--brand-teal-deep);
  color: var(--brand-teal-deep);
}
.hb-btn--ghost-dark:hover { background: rgba(10,155,138,.06); }

.hb-page-cta-container {
  background-color:var(--brand-cream);
  border-top:1px solid var(--brand-coral);
  padding-top:3rem;
  padding-bottom:3rem;
}

.hb-page-cta .hb-btn {
  padding:.6rem 1.25rem;
  font-size: var(--body-size);
  margin:.6rem;
}

/* ── Header ───────────────────────────────────────────────── */
.shopify-section:has(.hb-header) {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform .3s ease;
}
.shopify-section:has(.hb-header).hb-header--hidden {
  transform: translateY(-100%);
}
.hb-header {
  position: relative;
  overflow: visible;
  background: var(--brand-teal);
  border-bottom: 1px solid var(--brand-teal);
}
.hb-header .hb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1.5rem;
  position: relative;
  z-index: 22;
}
.hb-header a:first-child img { max-height: 88px; width: auto; }
.hb-header a:first-child span {
  font-family: var(--font-serif);
  font-size: var(--header-child);
  color: #fff;
  font-weight: 600;
}
.hb-header__logo span { color: #fff; }
.hb-nav a.hb-header__cta {
  color: #fff !important;
  padding: 12px 24px;
}

/* Burger — shown on mobile */
.hb-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.hb-burger span { display: block; height: 2px; border-radius: 2px; background: #fff; }

/* Desktop CTA — hidden on mobile */
.hb-header .hb-btn { display: none; }

/* Nav — hidden drawer on mobile */
.hb-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--brand-teal);
  border-bottom: 1px solid rgba(0,0,0,.1);
  padding: .5rem 1.5rem 1.25rem;
  z-index: 99;
}
.hb-nav.is-open { display: flex; }
.hb-nav a {
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: var(--eyebrow-size);
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.88);
  transition: color .15s;
  white-space: nowrap;
}
.hb-nav a:last-child { border-bottom: 0; }
.hb-nav a:hover { color: #fff; }
.hb-nav__parent { color: rgba(255,255,255,.88); }
.hb-nav__parent:hover { color: #fff; }

/* Mobile CTA inside nav */
.hb-nav__mobile-cta {
  display: inline-flex;
  margin: .75rem 0 0;
  width: 100%;
  justify-content: center;
}

/* Desktop nav — 1200px+ */
@media screen and (min-width: 1200px) {
  .hb-burger { display: none; }
  .hb-header .hb-btn { display: inline-flex; }
  .hb-nav__mobile-cta { display: none; }
  .hb-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 0;
  }
  .hb-nav a {
    padding: 0;
    border-bottom: 0;
  }
}

.hb-nav-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

/* ── Nav dropdown ─────────────────────────────────────────── */
.hb-nav__item { position: relative; border-bottom: 1px solid rgba(255,255,255,.15); }
.hb-nav__item:last-child { border-bottom: 0; }
.hb-nav__item > a,
.hb-nav__parent {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: 1.2rem 0;
  width: 100%;
  justify-content: space-between;
  font-size: var(--button-size);
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .15s;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  color: rgba(255,255,255,.88);
}
@media screen and (min-width:1200px) {
  .hb-nav__item > a,
  .hb-nav__parent {
    font-size: var(--eyebrow-size);
    padding: .7rem 0;
  }
}
.hb-nav__item > a:hover,
.hb-nav__parent:hover { color: #fff; }
.hb-nav__item > a[aria-current="page"] { color: #fff; font-weight: 700; }
.hb-nav__chevron {
  transition: transform .2s ease;
  flex-shrink: 0;
  color: rgba(255,255,255,.7);
}
.hb-nav__parent[aria-expanded="true"] .hb-nav__chevron { transform: rotate(180deg); }

/* Mobile dropdown — inline */
.hb-dropdown {
  display: none;
  position: static;
  transform: none;
  box-shadow: none;
  border-radius: .5rem;
  background: rgba(0,0,0,.15);
  padding: .25rem .5rem;
  margin: 0 0 .5rem;
  min-width: 0;
  list-style: none;
}
.hb-dropdown::before { display: none; }
.hb-dropdown.is-open { display: block; }
.hb-dropdown a {
  display: block;
  padding: .5rem .75rem;
  border-radius: .5rem;
  font-size: var(--body-size);
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: background .15s, color .15s;
}
.hb-dropdown a:hover { background: rgba(255,255,255,.1); color: #fff; }
.hb-dropdown a[aria-current="page"] { color: #fff; font-weight: 600; }

/* Curtain — desktop only */
.hb-curtain { display: none; }

/* Desktop dropdown + curtain — 1024px+ */
@media screen and (min-width: 1024px) {
  .hb-nav__item { border-bottom: 0; }
  .hb-nav__item > a,
  .hb-nav__parent { padding: 0; width: auto; justify-content: flex-start; }
  .hb-dropdown {
    position: absolute;
    top: calc(100% + .75rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: #fff;
    border-radius: .875rem;
    box-shadow: 0 16px 48px -12px rgba(0,0,0,.2), 0 0 0 1px rgba(10,155,138,.1);
    padding: .5rem;
    margin: 0;
    z-index: 200;
  }
  .hb-dropdown::before {
    display: block;
    content: '';
    position: absolute;
    top: -.45rem;
    left: 50%;
    transform: translateX(-50%);
    width: .875rem;
    height: .875rem;
    background: #fff;
    border-radius: .2rem;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
  }
  .hb-dropdown a { color: var(--brand-body); padding: .6rem .9rem; }
  .hb-dropdown a:hover { background: rgba(10,155,138,.08); color: var(--brand-teal); }
  .hb-dropdown a[aria-current="page"] { color: var(--brand-teal); font-weight: 600; }

  /* Curtain */
  .hb-curtain-clip {
    position: relative;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    overflow: visible;
    pointer-events: none;
  }
  .hb-curtain {
    display: block;
    line-height: 0;
    pointer-events: none;
    position: relative;
    width: 100%;
    overflow: visible;
    z-index: 0;
  }
  .hb-curtain svg { display: block; width: 100%; }
  .hb-curtain_img { display: block; width: 100%; background: transparent; }

  body.template--product .hb-curtain-clip {display:none;}
}

/* ── Hero ─────────────────────────────────────────────────── */
.hb-hero {
  position: relative;
  overflow: visible;
  background: var(--brand-cream);
  padding-bottom: 0;
}
.hb-hero .hb-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .hb-hero .hb-container {
    grid-template-columns: 1.05fr 1fr;
  }
}
.hb-hero .hb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(10,155,138,.3);
  background: rgba(255,255,255,.7);
  color: var(--brand-teal-deep);
}
.hb-hero .hb-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-coral);
  flex-shrink: 0;
}
.hb-hero h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); margin-top: 1.5rem; }
.hb-hero h1 em { font-style: normal; color: var(--brand-coral); }
.hb-hero p { margin-top: 1.5rem; max-width: 560px; font-size: var(--button-size); color: rgba(65,65,64,.85); margin-bottom: 0; }
.hb-hero > section > div > div > div:last-child,
.hb-hero .hb-container > div > div:last-child {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hb-hero .hb-container > div:last-child { position: relative; }
.hb-hero .hb-container > div:last-child::before {
  content: '';
  position: absolute;
  inset: -1.25rem;
  z-index: 0;
  border-radius: 2.4rem;
  background: linear-gradient(135deg, var(--brand-coral), var(--brand-orange));
  opacity: .75;
}
.hb-hero .hb-container > div:last-child img {
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-soft);
}

/* ── Hero curtain separator ───────────────────────────────── */
.hb-hero__curtain {
  position: relative;
  height: auto;
  margin-top: -2px;
  background: var(--brand-cream);
  display:none!important;
}
.hb-hero__curtain svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Welcome — deep navy ──────────────────────────────────── */
.hb-welcome {
  padding: 4rem 0 6rem 0;
  text-align: center;
  background: var(--brand-teal-deep);
  position: relative;
  position: relative;
  padding-top: 0; /* ridge provides the top spacing now */
}
.hb-mountains {
  margin-top:-6%;
  position:relative;
  z-index:999;
  display: block;
  width: 100%;
  height: 19vw;
  margin-bottom: -1px;
  background-image: url('/cdn/shop/files/blue-ridge-separator-teal.svg?v=1786650007');
  background-size: 100%;
  background-repeat: no-repeat;
  vertical-align: bottom;
  background-color:transparent;
}
.hb-welcome .hb-container { max-width: 880px; }
.hb-welcome .hb-eyebrow { color: var(--brand-coral); }
.hb-welcome h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: .85rem auto 0;
  max-width: 22ch;
  color: var(--brand-coral);
}
.hb-welcome > div > div {
  margin-top: 1.35rem;
  color: rgba(255,255,255,.75);
}
.hb-welcome > div > div:last-child {
  margin: 2.5rem auto 0;
  height: 1px;
  width: 96px;
  background: rgba(232,115,90,.45);
}
.hb-welcome p {
  font-size: var(--header-child);
}

/* Divider Styling */
.hb-welcome__ridge {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.hb-welcome__ridge svg {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(80px, 12vw, 180px);
}

.hb-welcome__ridge path {
  /* Fill must exactly match the background of the FOLLOWING section */
}

/* Push the welcome content down away from the ridge */
.hb-welcome .hb-container {
  padding-top: 4rem;
}

/* ── Team ────────────────────────────────────── */

.hb_team_container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; 
}
.hb_team_container:first-of-type {
  padding-bottom:1rem;
  border-bottom:1px solid var(--brand-teal);
  margin-bottom:2rem;
}
@media screen and (min-width:1024px) {
  .hb_team_container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem; 
  }
}

/* ── Featured Sessions ────────────────────────────────────── */
.hb-sessions { background: var(--brand-cream); padding: 6rem 0; position: relative; }
.hb-sessions > div > div:first-child {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.hb-sessions > div > div:first-child h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin-top: .75rem; max-width: 560px; }
.hb-sessions > div > div:first-child > div:last-child { max-width: 420px; color: rgba(65,65,64,.75); }
.hb-sessions > div > div:last-child {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.hb-sessions article {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 10px 40px -22px rgba(0,0,0,.2);
  transition: transform .22s ease, box-shadow .22s ease;
}
.hb-sessions article:hover { transform: translateY(-4px); box-shadow: 0 18px 55px -24px rgba(0,0,0,.28); }
.hb-sessions article > div:first-child {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10,155,138,.12), rgba(201,74,42,.12));
}
.hb-sessions article > div:first-child img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.hb-sessions article:hover > div:first-child img { transform: scale(1.045); }
.hb-sessions article > div:last-child { display: flex; flex: 1; flex-direction: column; padding: 1.75rem; }
.hb-sessions article h3 { font-size: var(--header-child); }
.hb-sessions article p { margin-top: .8rem; flex: 1; font-size: var(--eyebrow-size); color: rgba(65,65,64,.75); margin-bottom: 0; }
.hb-sessions article a:last-child { display: inline-block; margin-top: 1.25rem; color: var(--brand-coral); font-weight: 700; font-size: var(--eyebrow-size); transition: color .15s; }
.hb-sessions article a:last-child:hover { color: var(--brand-teal); }

/* ── Promise Banner ───────────────────────────────────────── */
.hb-promise {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
  text-align: center;
  background: var(--brand-coral);
  color: #fff;
}
.hb-promise .hb-container { position: relative; z-index: 1; max-width: 800px; }
.hb-promise .hb-eyebrow { color: rgba(255,255,255,.75); }
.hb-promise h2 { font-size: clamp(2.1rem, 4.5vw, 4rem); color: #fff; margin: 1rem auto 0; }
.hb-promise p { font-size: var(--button-size); color: rgba(255,255,255,.82); margin: 1.5rem auto 0; max-width: 600px; margin-bottom: 0; }

.hb-promise-mountain {
  margin-top:0;
  position:relative;
  z-index:999;
  display: block;
  width: 100%;
  height: 14vw;
  margin-bottom: -1px;
  background-image: url('/cdn/shop/files/blue-ridge-separator-coral-2.svg?v=1787701371');
  background-size: 100%;
  background-repeat: no-repeat;
  vertical-align: bottom;
  background-color:transparent;
}

/* ── Page Hero ────────────────────────────────────────────── */
.hb-hero-page {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  position: relative;
  background-color:var(--brand-navy);
}
.hb-hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,94,85,.7), rgba(6,94,85,.3));
  display:none;
}
.hb-hero-page .hb-container { 
  position: relative; 
  z-index: 1; 
  display:grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
}
.hb-hero-page__content { max-width: 680px; }
.hb-hero-page .hb-eyebrow { color: rgba(255,255,255,.85); }
.hb-hero-page h1 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.5rem); margin: .5rem 0 1rem; }
.hb-hero-page p { color: rgba(255,255,255,.9); font-size: var(--button-size); max-width: 560px; }
.hb-hero-page__buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hb-hero-img-container .hb-hero-inset {
    position: relative;
    z-index: 1;
    border-radius: 2rem;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    width: 100%;
    box-shadow: var(--shadow-soft);
    max-width: 100%;
    height: auto;
    display: block;
}
.hb-hero-img-container img::before {
  content: '';
    position: absolute;
    inset: -1.25rem;
    z-index: 0;
    border-radius: 2.4rem;
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-orange));
    opacity: .75;
}
@media screen and (min-width: 1024px) {
  .hb-hero-page .hb-container { 
    grid-template-columns: 1fr 1.25fr;
  }
}

/* ── Contact CTA ──────────────────────────────────────────── */
.hb-cta { padding: 6rem 0; background: #fff; }
.hb-cta .hb-container { max-width: 760px; }
.hb-cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); text-align: center; }
.hb-cta p { text-align: center; font-size: var(--eyebrow-size); color: rgba(65,65,64,.8); max-width: 520px; margin-left: auto; margin-right: auto; }
.hb-cta > div > div:last-child { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hb-cta .hb-btn { width: 100%; }
@media screen and (min-width: 1024px) {
  .hb-cta .hb-btn { width: auto; }
}

/* ── Section wave separators ──────────────────────────────── */
.hb-wave { display: block; width: 100%; overflow: hidden; line-height: 0; margin-bottom: -2px; }
.hb-wave svg { display: block; width: 100%; }

/* ── 404 ──────────────────────────────────────────────────── */
.hb-404 {
  padding: 8rem 1.5rem;
  text-align: center;
  background: var(--brand-cream);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.hb-404 .hb-container { max-width: 560px; }
.hb-404 .hb-eyebrow { font-size: var(--eyebrow-size); letter-spacing: .4em; color: var(--brand-coral); margin-bottom: .5rem; }
.hb-404 h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin: .5rem 0 1.25rem; }
.hb-404 > div > p:last-of-type { font-size: var(--header-child); color: rgba(65,65,64,.75); }
.hb-404__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Page template ────────────────────────────────────────── */
.hb-page { padding: 5rem 0 7rem; background: #fff; }
.hb-page .hb-container { max-width: 1200px; }
.hb-page h1 { font-size: clamp(3rem, 4vw, 5rem); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(10,155,138,.15); }
.hb-page__content { font-size: var(--body-size); line-height: 1.8; color: rgba(65,65,64,.88); }
.hb-page__content h2 { font-size: clamp(2.5rem, 2.5vw, 3rem); margin: 0 0 .75rem; }
.hb-page__content h3 { font-size: clamp(2rem, 2.5vw, 2.5rem); }
.hb-page__content p  { margin-bottom: 1.25rem; }
.hb-page__content a  { color: var(--brand-teal); text-decoration: underline; }
.hb-page__content ul,
.hb-page__content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.hb-page__content li { margin-bottom: .4rem; }

/* ── Collection ───────────────────────────────────────────── */
.hb-collection {
  padding-top: 5rem;
  padding-bottom: 7rem;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .hb-collection { padding-top: 8rem; }
}
.hb-collection__head { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(10,155,138,.15); }
.hb-collection__head h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.hb-collection__desc { margin-top: 1rem; font-size: var(--button-size); color: rgba(65,65,64,.8); max-width: 680px; }
.hb-collection__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.hb-collection__empty { font-size: var(--button-size); color: rgba(65,65,64,.6); font-style: italic; }

/* Collection toolbar */
.hb-collection__toolbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hb-collection__search { width: 100%; }
.hb-collection__sort { width: 100%; }
@media screen and (min-width: 601px) {
  .hb-collection__toolbar { flex-direction: row; justify-content: flex-end; align-items: center; }
  .hb-collection__search { width: 200px; }
  .hb-collection__sort { width: auto; }
}
.hb-collection__search {
  padding: .65rem 1rem;
  border: 1.5px solid rgba(10,155,138,.25);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: var(--body-size);
  color: var(--brand-body);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.hb-collection__search:focus { outline: none; border-color: var(--brand-teal); box-shadow: 0 0 0 3px rgba(10,155,138,.12); }
.hb-collection__sort {
  padding: .65rem 2.25rem .65rem 1rem;
  border: 1.5px solid rgba(10,155,138,.25);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: var(--body-size);
  color: var(--brand-body);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A9B8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 1rem center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.hb-collection__sort:focus { outline: none; border-color: var(--brand-teal); box-shadow: 0 0 0 3px rgba(10,155,138,.12); }

/* Product cards */
.hb-product-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px -16px rgba(0,0,0,.2);
  transition: transform .22s ease, box-shadow .22s ease;
  color: var(--brand-body);
}
.hb-product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px -18px rgba(0,0,0,.28); }
.hb-product-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--brand-cream); }
.hb-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hb-product-card:hover .hb-product-card__media img { transform: scale(1.04); }
.hb-product-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.hb-product-card__body h3 { font-size: var(--header-child); }
.hb-product-card__price { margin-top: .4rem; font-weight: 600; color: var(--brand-teal); font-size: var(--eyebrow-size); }

/* ── Product ──────────────────────────────────────────────── */
.hb-product { padding: 5rem 0 7rem; background: #fff; }
.hb-product__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media screen and (min-width: 1024px) {
  .hb-product__inner { grid-template-columns: 1fr 1fr; }
}
.hb-product__media img { border-radius: 1.5rem; width: 100%; box-shadow: var(--shadow-soft); }
.hb-product__media-placeholder { aspect-ratio: 1; border-radius: 1.5rem; background: var(--brand-cream); }
.hb-product__info .hb-eyebrow { color: var(--brand-orange); margin-bottom: .5rem; }
.hb-product__info h1 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: .75rem; }
.hb-product__price { font-size: var(--header-child); font-weight: 700; color: var(--brand-teal); margin-bottom: 1.25rem; }
.hb-product__desc { font-size: var(--body-size); line-height: 1.8; color: rgba(65,65,64,.85); margin-bottom: 1.75rem; }
.hb-product__variant-select {
  display: block;
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(10,155,138,.3);
  border-radius: .75rem;
  font-family: var(--font-sans);
  font-size: var(--body-size);
  color: var(--brand-body);
  background: #fff;
  margin-bottom: 1.25rem;
  cursor: pointer;
}
.hb-product__add { width: 100%; margin-top: .25rem; }
.hb-product__add:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Contact ──────────────────────────────────────────────── */
.hb-contact { padding: 5rem 0 7rem; background: #fff; }
@media screen and (min-width: 1024px) {
  body.template--page:not(.home) .shopify-section .hb-contact { padding-top: 8rem; }
}
.hb-contact__inner { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media screen and (min-width: 1024px) {
  .hb-contact__inner { grid-template-columns: 1fr 1.4fr; }
}
.hb-contact__info .hb-eyebrow { color: var(--brand-orange); margin-bottom: .5rem; }
.hb-contact__info h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; }
.hb-contact__intro { font-size: var(--button-size); color: rgba(65,65,64,.82); line-height: 1.8; margin-bottom: 2rem; }
.hb-contact__details { list-style: none; margin: 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.hb-contact__details li { display: flex; align-items: flex-start; gap: .75rem; font-size: var(--eyebrow-size); color: rgba(65,65,64,.85); }
.hb-contact__details svg { color: var(--brand-teal); flex-shrink: 0; margin-top: .1rem; }
.hb-contact__details a { color: var(--brand-teal); }
.hb-contact__details a:hover { text-decoration: underline; }
.hb-contact__note { font-size: var(--body-size); font-style: italic; color: rgba(65,65,64,.65); border-left: 3px solid rgba(10,155,138,.25); padding-left: 1rem; margin: 0; }
.hb-contact__form-wrap { background: var(--brand-cream); border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow-soft); }
@media screen and (min-width: 1024px) {
  .hb-contact__form-wrap { padding: 2.5rem; }
}
.hb-contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.hb-form__row { display: flex; flex-direction: column; gap: 1.25rem; }
@media screen and (min-width: 1024px) {
  .hb-form__row--2col { flex-direction: row; }
  .hb-form__row--2col > * { flex: 1; min-width: 0; }
}
.hb-form__field { display: flex; flex-direction: column; gap: .4rem; }
.hb-form__field label { font-size: var(--body-size); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-teal-deep); }
.hb-form__field label span { color: var(--brand-coral); }
.hb-form__field input,
.hb-form__field select,
.hb-form__field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid rgba(10,155,138,.25);
  border-radius: .75rem;
  font-family: var(--font-sans);
  font-size: var(--body-size);
  color: var(--brand-body);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.hb-form__field input:focus,
.hb-form__field select:focus,
.hb-form__field textarea:focus { outline: none; border-color: var(--brand-teal); box-shadow: 0 0 0 3px rgba(10,155,138,.12); }
.hb-form__field textarea { resize: vertical; min-height: 130px; }
.hb-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A9B8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.hb-form__submit { width: 100%; margin-top: .25rem; }
.hb-contact__success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(10,155,138,.1);
  border: 1.5px solid rgba(10,155,138,.3);
  border-radius: .875rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--brand-teal-deep);
}
.hb-contact__success svg { flex-shrink: 0; color: var(--brand-teal); margin-top: .1rem; }
.hb-contact__success strong { display: block; font-size: var(--body-size); margin-bottom: .25rem; }
.hb-contact__success p { margin: 0; font-size: var(--body-size); color: rgba(65,65,64,.8); }
.errors { color: var(--brand-coral); font-size: var(--body-size); margin-bottom: 1rem; }
.errors ul { padding-left: 1.25rem; margin: .5rem 0 0; }

/* ── Cart ─────────────────────────────────────────────────── */
.hb-cart { padding: 5rem 0 7rem; background: #fff; }
.hb-cart h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(10,155,138,.15); }
.hb-cart__form { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media screen and (min-width: 1024px) {
  .hb-cart__form { grid-template-columns: 1.6fr 1fr; }
}
.hb-cart__items { display: flex; flex-direction: column; gap: 1.5rem; }
.hb-cart__item { display: grid; grid-template-columns: 100px 1fr auto; gap: 1.5rem; align-items: start; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(10,155,138,.1); }
.hb-cart__item-img { border-radius: .75rem; width: 100px; height: 100px; object-fit: cover; }
.hb-cart__item-title { font-family: var(--font-serif); font-size: var(--eyebrow-size); color: var(--brand-teal-deep); }
.hb-cart__item-variant { font-size: var(--body-size); color: rgba(65,65,64,.6); margin: .25rem 0; }
.hb-cart__item-price { font-weight: 600; color: var(--brand-teal); margin: .25rem 0; }
.hb-cart__item-qty { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; font-size: var(--body-size); }
.hb-cart__qty-input { width: 56px; padding: .35rem .5rem; border: 1.5px solid rgba(10,155,138,.25); border-radius: .5rem; font-family: var(--font-sans); text-align: center; }
.hb-cart__remove { font-size: var(--eyebrow-size); color: rgba(65,65,64,.4); line-height: 1; transition: color .15s; }
.hb-cart__remove:hover { color: var(--brand-coral); }
.hb-cart__summary { background: var(--brand-cream); border-radius: 1.25rem; padding: 2rem; position: sticky; top: 120px; }
.hb-cart__subtotal { display: flex; justify-content: space-between; font-size: var(--eyebrow-size); font-weight: 600; margin-bottom: .75rem; }
.hb-cart__note { font-size: var(--body-size); color: rgba(65,65,64,.6); margin-bottom: 1.5rem; }
.hb-cart__actions { display: flex; flex-direction: column; gap: .75rem; }
.hb-cart__actions .hb-btn { width: 100%; }
.hb-cart__empty { text-align: center; padding: 4rem 0; }
.hb-cart__empty p { font-size: var(--eyebrow-size); color: rgba(65,65,64,.6); margin-bottom: 1.5rem; }

/* ── Collection Grid section ──────────────────────────────── */
.hb-col-grid { overflow: hidden; }
.hb-col-grid__inner { display: grid; grid-template-columns: repeat(2, 1fr); min-height: 500px; }
@media screen and (min-width: 598px) {
  .hb-col-grid__inner { grid-template-columns: repeat(3, 1fr); min-height: 600px; }
}
@media screen and (min-width: 1024px) {
  .hb-col-grid__inner { grid-template-columns: repeat(6, 1fr); min-height: 480px; }
}
.hb-col-grid__item {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-cream);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: flex .4s ease;
}
.hb-col-grid__item:hover { flex: 1.6; }
.hb-col-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  transition: background .3s ease;
}
.hb-col-grid__item:hover .hb-col-grid__overlay { background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%); }
.hb-col-grid__label { position: relative; z-index: 1; padding: 1.25rem 1rem; display: flex; flex-direction: column; gap: .3rem; width: 100%; }
.hb-col-grid__eyebrow { font-size: var(--eyebrow-size); letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); font-family: var(--font-sans); font-weight: 600; }
.hb-col-grid__title { font-family: var(--font-serif); font-size: clamp(1.1rem, 1.8vw, 1.6rem); color: #fff; font-weight: 500; line-height: 1.1; white-space: nowrap; }
.hb-col-grid__cta { display: inline-block; font-size: var(--eyebrow-size); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0); font-family: var(--font-sans); border-bottom: 1.5px solid rgba(255,255,255,0); padding-bottom: .1rem; margin-top: .25rem; transition: color .3s ease, border-color .3s ease; white-space: nowrap; }
.hb-col-grid__item:hover .hb-col-grid__cta { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.5); }


/*** Horses ***/

.horses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
  }

  @media (min-width: 700px) {
    .horses-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .horse-card {
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px -20px rgba(0,0,0,.2);
    transition: transform .22s ease, box-shadow .22s ease;
  }

  .horse-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,.28);
  }

  .horse-card__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--brand-cream);
  }

  .horse-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .6s ease;
  }

  .horse-card:hover .horse-card__media img {
    transform: scale(1.04);
  }

  .horse-card__body {
    padding: 1.5rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .horse-card__breed {
    font-family: var(--font-sans);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-coral);
    margin: 0 0 .4rem;
  }

  .horse-card__name {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--brand-teal-deep);
    margin: 0 0 1rem;
    line-height: 1.1;
  }

  .horse-card__bio {
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(65,65,64,.8);
    margin: 0;
    flex: 1;
  }

  .horses-intro {
    max-width: 640px;
    margin: 0 auto 1rem;
    text-align: center;
    font-size: 1.05rem;
    color: rgba(65,65,64,.75);
    line-height: 1.7;
    margin:10px auto!important;
  }
  .col2-list,
  .2col_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; 
    list-style: none;
    padding: 0;
  }