/* ============================================================
   CasketMart — Homepage v3
   Matches design handoff exactly.
   assets/css/home.css
   ============================================================ */

/* ══ HERO B (teal full-bleed) ══════════════════════════════ */
.cm-heroB {
  background: var(--teal);
  padding: 36px 0 0;
  position: relative;
  overflow: hidden;
}
.cm-heroB__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
  padding-bottom: 56px;
}
.cm-heroB__copy .eyebrow { margin-bottom: 22px; }
.cm-heroB__copy h1 { margin: 0 0 22px; }
.cm-heroB__lede {
  font-size: 18px;
  line-height: 1.6;
  color: #B7CFC9;
  max-width: 480px;
  margin-bottom: 30px;
}
.cm-heroB__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cm-heroB__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cm-hb-quick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--teal-line);
  color: #E7F0EE;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 999px;
  transition: background .15s;
  text-decoration: none;
}
.cm-hb-quick span { color: var(--gold-bright); font-weight: 500; }
.cm-hb-quick:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Hero card (right side) */
.cm-heroB__media { display: grid; place-items: center; }
.cm-heroB__card {
  position: relative;
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 30px 30px 22px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--sh-lg);
}
.cm-hb-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.cm-heroB__prod { padding: 18px 0; }
.cm-heroB__prod img {
  width: 100%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 26px rgba(40,30,12,.18));
}
.cm-heroB__prod-placeholder {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--line-2);
  font-family: var(--serif);
  font-size: 3rem;
}
.cm-hb-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.cm-hb-info-text { display: flex; flex-direction: column; gap: 2px; }
.cm-hb-info-line {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}
.cm-hb-info-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}
.cm-hb-info-price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}
/* Strip WooCommerce price wrapper styles */
.cm-hb-info-price .woocommerce-Price-amount { font: inherit; color: inherit; }
.cm-hb-info-price ins { text-decoration: none; }
.cm-hb-info-price del { display: none; }

/* Hero stats strip */
.cm-heroB__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--teal-line);
  padding: 26px 0 30px;
}
.cm-hb-stat { display: flex; flex-direction: column; gap: 3px; }
.cm-hb-stat strong {
  font-family: var(--serif);
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
.cm-hb-stat span { font-size: 13.5px; color: #9DBAB4; }

@media (max-width: 900px) {
  .cm-heroB__inner { grid-template-columns: 1fr; gap: 32px; }
  .cm-heroB__card  { max-width: 100%; }
  .cm-heroB__stats { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ══ SHOP BY CATEGORY ══════════════════════════════════════ */
.cm-cat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.cm-cat-head h2 { font-size: clamp(28px, 3.2vw, 40px); margin-top: 12px; }

.cm-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cm-cat-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .25s, border-color .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.cm-cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--line-2);
  color: inherit;
}
.cm-cat-media {
  background: linear-gradient(180deg, #fff, var(--cream));
  padding: 14px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cm-cat-media img {
  max-height: 100%;
  width: auto;
  mix-blend-mode: multiply;
}
.cm-cat-media-placeholder {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--line-2);
}
.cm-cat-info { padding: 18px 20px 20px; }
.cm-cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cm-cat-row h3 { font-size: 19px; }
.cm-cat-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  transition: background .18s, color .18s;
  flex-shrink: 0;
}
.cm-cat-tile:hover .cm-cat-arrow { background: var(--gold); color: #fff; }
.cm-cat-info p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin-bottom: 12px; }
.cm-cat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 13px;
  font-weight: 600;
}
.cm-cat-from { color: var(--gold-deep); font-weight: 700; }

@media (max-width: 960px) { .cm-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cm-cat-grid { grid-template-columns: 1fr; } }

/* ══ PRODUCT CARD (home + shop shared) ════════════════════ */
.cm-pcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
  text-decoration: none;
  color: inherit;
}
.cm-pcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--line-2);
  color: inherit;
}
.cm-pcard-media {
  position: relative;
  padding: 18px 18px 6px;
  background: linear-gradient(180deg, #fff, var(--cream));
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cm-pcard-media img {
  max-height: 180px;
  width: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 8px 16px rgba(40,30,12,.12));
}
.cm-pcard-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  white-space: nowrap;
}
.cm-pcard-tag.is-save {
  background: var(--gold-tint);
  color: var(--gold-deep);
}
.cm-pcard-body {
  padding: 6px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cm-pcard-line {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.cm-pcard-name {
  font-family: var(--serif);
  font-size: 22px;
  margin: 5px 0 4px;
  color: var(--ink);
}
.cm-pcard-meta { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
.cm-pcard-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cm-pcard-price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}
.cm-pcard-price .woocommerce-Price-amount { font: inherit; color: inherit; }
.cm-pcard-price ins { text-decoration: none; }
.cm-pcard-price del { display: none; font-size: 14px; color: var(--ink-3); text-decoration: line-through; }
.cm-pcard-add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  border: 1.5px solid var(--line-2);
  padding: 9px 16px;
  border-radius: 999px;
  transition: all .15s;
  background: none;
  cursor: pointer;
  font-family: var(--sans);
}
.cm-pcard-add:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

/* Product grid — 4 cols, responsive */
.cm-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .cm-prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .cm-prod-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .cm-prod-grid { grid-template-columns: 1fr; } }

/* Wider product grid (8 products, 4+4) */
.cm-prod-grid-wide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .cm-prod-grid-wide { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .cm-prod-grid-wide { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .cm-prod-grid-wide { grid-template-columns: 1fr; } }

/* ══ PRICING COMPARISON ════════════════════════════════════ */
.cm-compare {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.cm-compare__copy h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 18px 0 18px;
}
.cm-compare__copy h2 em { font-style: italic; color: var(--gold-bright); }
.cm-compare__copy p {
  color: #B7CFC9;
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 480px;
}
.cm-compare__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Card */
.cm-compare__card {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 30px 30px 26px;
  box-shadow: var(--sh-lg);
}
.cm-cc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cm-cc-head > span:first-child {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
}
.cm-cc-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 600;
}
.cm-cc-legend-item { display: flex; align-items: center; gap: 6px; }
.cm-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.cm-dot-us   { background: var(--teal); }
.cm-dot-them { background: var(--cream-3); border: 1px solid var(--line-2); }

.cm-cc-row {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.cm-cc-row:first-of-type { border-top: 0; }
.cm-cc-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 9px;
}
.cm-cc-bars { display: flex; flex-direction: column; gap: 7px; }
.cm-cc-bar {
  background: var(--cream-2);
  border-radius: 6px;
  height: 30px;
  overflow: hidden;
}
.cm-cc-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 11px;
  min-width: 62px;
  width: 0;
  transition: width 1.1s cubic-bezier(.2,.7,.2,1);
}
.cm-cc-fill span { font-size: 12.5px; font-weight: 700; }
.cm-cc-fill-us   { background: var(--teal); }
.cm-cc-fill-us   span { color: #fff; }
.cm-cc-fill-them { background: var(--cream-3); }
.cm-cc-fill-them span { color: var(--ink-2); }
.cm-cc-save {
  margin-top: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  text-align: right;
}
.cm-cc-foot {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 18px;
  line-height: 1.5;
}

@media (max-width: 900px) { .cm-compare { grid-template-columns: 1fr; gap: 34px; } }

/* ══ VALUE PROPS ═══════════════════════════════════════════ */
.cm-vp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cm-vp-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--sh-sm);
}
.cm-vp-ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.cm-vp-ic svg { width: 26px; height: 26px; }
.cm-vp-card h3 { font-size: 21px; margin-bottom: 10px; }
.cm-vp-card p  { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }

@media (max-width: 960px) { .cm-vp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .cm-vp-grid { grid-template-columns: 1fr; } }

/* ══ GOOGLE REVIEWS ════════════════════════════════════════ */
.cm-reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}
.cm-reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cm-reviews-score {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cm-reviews-score strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.cm-reviews-meta { display: flex; flex-direction: column; gap: 4px; }
.cm-reviews-meta p { font-size: 14px; color: var(--ink-2); }
.cm-reviews-note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 440px;
}

/* Google G mark */
.cm-gmark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cm-gmark-g {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--teal);
  font-size: 22px;
  line-height: 1;
}

.cm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cm-review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 26px 28px;
  box-shadow: var(--sh-sm);
}
.cm-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cm-review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 19px;
  flex-shrink: 0;
}
.cm-review-who { flex: 1; }
.cm-review-who strong { display: block; font-size: 15px; color: var(--ink); }
.cm-review-who span   { font-size: 12.5px; color: var(--ink-3); }
.cm-review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-top: 12px;
  text-wrap: pretty;
}

@media (max-width: 860px) { .cm-reviews-grid { grid-template-columns: 1fr; } }

/* ══ SUPPORT CTA ════════════════════════════════════════════ */
.cm-support {
  background: linear-gradient(120deg, var(--teal), var(--teal-2));
  border-radius: var(--r-xl);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 46px;
  align-items: center;
  color: #EAF1EF;
  box-shadow: var(--sh-lg);
}
.cm-support__left h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  margin: 16px 0 14px;
}
.cm-support__left p {
  color: #B7CFC9;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.cm-support-hours {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: #DCE9E6;
  margin-top: 8px;
}
.cm-support-hours svg { color: var(--gold-bright); width: 15px; height: 15px; }

.cm-support__right { display: flex; flex-direction: column; gap: 14px; }
.cm-support-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow .15s;
}
.cm-support-phone:hover { box-shadow: var(--sh); color: var(--ink); }
.cm-sp-ic {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-tint);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cm-sp-ic svg { width: 22px; height: 22px; }
.cm-support-phone-text { flex: 1; }
.cm-support-phone-text em {
  font-style: normal;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
}
.cm-support-phone-text strong {
  font-family: var(--serif);
  font-size: 25px;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}
.cm-support-phone-text span {
  font-size: 13px;
  color: var(--ink-2);
}

@media (max-width: 820px) {
  .cm-support { grid-template-columns: 1fr; padding: 36px 30px; gap: 30px; }
}

/* ══ FAQ ════════════════════════════════════════════════════ */
.cm-faq {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: start;
}
.cm-faq__left h2 { font-size: clamp(28px, 3.2vw, 38px); margin: 14px 0 14px; }
.cm-faq__left p  { font-size: 16px; color: var(--ink-2); margin-bottom: 24px; }
.cm-faq__items { display: flex; flex-direction: column; gap: 6px; }
.cm-faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.cm-faq-item.is-open {
  border-color: var(--line-2);
  box-shadow: var(--sh-sm);
}
.cm-faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  font-family: var(--sans);
  cursor: pointer;
}
.cm-faq-q:hover { color: var(--gold-deep); }
.cm-faq-chev {
  flex-shrink: 0;
  color: var(--gold-deep);
  transition: transform .25s;
}
.cm-faq-item.is-open .cm-faq-chev { transform: rotate(180deg); }
.cm-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.cm-faq-item.is-open .cm-faq-a { max-height: 300px; }
.cm-faq-a p {
  padding: 8px 18px 14px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-2);
}
@media (max-width: 820px) { .cm-faq { grid-template-columns: 1fr; gap: 30px; } }
/* ══ ECO BAND ═══════════════════════════════════════════════ */
.cm-eco {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cm-eco__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 0;
}
.cm-eco__ic {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #E4EDE4;
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cm-eco__ic svg { width: 24px; height: 24px; }
.cm-eco__text { font-size: 16px; color: var(--ink-2); }
.cm-eco__text strong { color: var(--ink); font-weight: 600; }

/* ══ BLOG CARDS ═════════════════════════════════════════════ */
.cm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cm-blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.cm-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--line-2);
  color: inherit;
}
.cm-blog-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--cream-2);
  flex-shrink: 0;
}
.cm-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.cm-blog-card:hover .cm-blog-card__img img { transform: scale(1.04); }
.cm-blog-card__img-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--line-2);
}
.cm-blog-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cm-blog-card__meta {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.cm-blog-card__body h3 {
  font-size: 21px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cm-blog-card__body p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.cm-blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
  transition: gap .15s;
  margin-top: auto;
}
.cm-blog-card__more svg { width: 16px; height: 16px; }
.cm-blog-card:hover .cm-blog-card__more { gap: 10px; }

@media (max-width: 860px) { .cm-blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .cm-blog-grid { grid-template-columns: 1fr; } }

/* ══ MISC / HELPERS ═════════════════════════════════════════ */
/* WooCommerce price normalisation across all page types */
.woocommerce-Price-currencySymbol { font-weight: inherit; }
bdi { font: inherit; }

/* Seminar CTA block */
.cm-seminar-cta { position: relative; overflow: hidden; }
