/** Shopify CDN: Minification failed

Line 254:10 Unexpected "@media"

**/
/* Cowgirl Collective section styles, ported from the standalone theme.
   Every rule below is confined to .cc-scope — the class Shopify puts on our
   section wrappers — so none of it can reach Horizon's own components.
   Colours inherit Horizon's palette where it has an equivalent and fall back
   to the Cowgirl Collective values, which is why they are literals here
   rather than theme settings. */
.cc-scope {
  --color-bg: var(--color-background, #FBF6EE);
  --color-bg-alt: #F1E7D8;
  --color-text: var(--color-foreground, #2A1C13);
  --color-text-soft: var(--color-foreground-muted, #6E5A4B);
  --color-accent: #A4522B;
  --color-accent-dark: #8A4524;
  --color-accent-soft: #F0E2D6;
  --color-highlight: #2F8F8A;
  --color-sale: #9E2B25;
  --color-border: #E0D3C2;
  --color-star: #C9922E;
  --font-heading: var(--font-heading--family, "Playfair Display", Georgia, serif);
  --font-heading-weight: var(--font-heading--weight, 700);
  --font-heading-style: var(--font-heading--style, normal);
  --font-body: var(--font-body--family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif);
  --font-body-weight: var(--font-body--weight, 400);
  --page-width: 1200px;
  --radius: 10px;
  color: var(--color-text);
  font-family: var(--font-body);
}

/* ==========================================================================
   Cowgirl Collective — theme.css
   Palette + type tokens are injected from settings in layout/theme.liquid.
   ========================================================================== */

/* Cow-print swatch, drawn inline so it costs no request. Used on the
   "most popular" ribbon to tie the badge back to the product's straps. */
.cc-scope {
  --cow-print: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46' viewBox='0 0 46 46'%3E%3Cg fill='%232A1C13'%3E%3Cpath d='M6 4c5-3 12 1 10 6s-11 6-13 1S1 7 6 4z'/%3E%3Cpath d='M31 2c6 0 9 6 6 9s-10 2-11-3 1-6 5-6z'/%3E%3Cpath d='M12 26c7-2 12 4 9 9s-14 4-15-2 2-6 6-7z'/%3E%3Cpath d='M35 28c5-1 9 3 8 7s-8 6-11 2 0-8 3-9z'/%3E%3C/g%3E%3C/svg%3E");
}

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

.cc-scope { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

.cc-scope {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: var(--font-body-weight);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.cc-scope img, .cc-scope svg, .cc-scope video { max-width: 100%; height: auto; display: block; }
.cc-scope button { font: inherit; color: inherit; cursor: pointer; }
.cc-scope a { color: inherit; }

.cc-scope h1, .cc-scope h2, .cc-scope h3, .cc-scope h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-style: var(--font-heading-style);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

.cc-scope h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
.cc-scope h2 { font-size: clamp(1.6rem, 4.5vw, 2.35rem); }
.cc-scope h3 { font-size: clamp(1.15rem, 3vw, 1.45rem); }

.cc-scope p { margin: 0 0 1em; }
.cc-scope p:last-child { margin-bottom: 0; }

.cc-scope .skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background: var(--color-bg);
}
.cc-scope .skip-link:focus { left: 0; top: 0; }

.cc-scope :focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.cc-scope .visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Layout ---------- */

.cc-scope .container {
  width: 100%;
  max-width: var(--page-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.cc-scope .container--narrow { max-width: 760px; }

.cc-scope .section { padding-block: clamp(2.75rem, 7vw, 4.5rem); }
.cc-scope .section--tight { padding-block: clamp(1.75rem, 4vw, 2.75rem); }
.cc-scope .section--alt { background: var(--color-bg-alt); }

.cc-scope .section__head { text-align: center; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.cc-scope .section__head p { color: var(--color-text-soft); max-width: 56ch; margin-inline: auto; }

/* Eyebrow — the small tracked-out label used above headings */
.cc-scope .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* Stitched rule — the western topstitch motif, used as a divider */
.cc-scope .stitch-rule {
  border: 0;
  height: 2px;
  background-image: linear-gradient(90deg, var(--color-accent) 0 12px, transparent 12px 22px);
  background-size: 22px 2px;
  opacity: 0.45;
  margin: 0;
}

/* ---------- Buttons ---------- */

.cc-scope .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: transform 0.12s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.cc-scope .btn--primary {
  width: 100%;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 0 0 var(--color-accent-dark);
}
.cc-scope .btn--primary:hover { background: var(--color-accent-dark); }
.cc-scope .btn--primary:active { transform: translateY(4px); box-shadow: 0 2px 0 0 var(--color-accent-dark); }
.cc-scope .btn--primary[disabled] { opacity: 0.55; cursor: not-allowed; box-shadow: none; }

.cc-scope .btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-text);
}
.cc-scope .btn--outline:hover { background: var(--color-text); color: var(--color-bg); }

@media (prefers-reduced-motion: reduce) {
  .cc-scope { scroll-behavior: auto; }
  .cc-scope .btn, .cc-scope .btn:active { transition: none; transform: none; }
}

/* ---------- Announcement bar ---------- */

.cc-scope .announcement {
  background: var(--color-text);
  color: var(--color-bg);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
}
.cc-scope .announcement__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.cc-scope .announcement__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  white-space: nowrap;
}
.cc-scope .announcement__item::after { content: "★"; color: var(--color-accent); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .cc-scope .announcement__track { animation: none; width: 100%; justify-content: center; }
  .cc-scope .announcement__group:nth-child(2) { display: none; }
}
.cc-scope .announcement__group { display: flex; }

/* ---------- Header ---------- */

.cc-scope .header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.cc-scope .header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
}
.cc-scope .header__logo {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-self: center;
  min-width: 0;
  text-decoration: none;
}
.cc-scope .header__logo img { width: auto; flex: 0 0 auto; }
.cc-scope .header__wordmark {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

/* Phones: the full-tracking wordmark plus three icon buttons overruns 390px,
   so tighten the mark and drop search (the menu still links to it). */
.cc-scope @media (max-width: 749px) {
  .header__wordmark { font-size: 0.9rem; letter-spacing: 0.11em; }
  .header__logo img { height: 26px !important; }
  /* Two classes deep so this beats .icon-btn's display regardless of order. */
  .header__actions .header__search { display: none; }
}
.cc-scope .header__nav { display: none; gap: 1.5rem; }
.cc-scope .header__nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.cc-scope .header__nav a:hover { color: var(--color-accent); }
.cc-scope .header__actions { grid-column: 3; display: flex; justify-content: flex-end; gap: 0.5rem; }

.cc-scope .icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  background: none;
  border: 0;
  padding: 0;
  text-decoration: none;
}
.cc-scope .cart-count {
  position: absolute;
  top: 0.35rem; right: 0.3rem;
  min-width: 1.1rem; height: 1.1rem;
  display: grid; place-items: center;
  padding-inline: 0.2rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 990px) {
  .cc-scope .header__inner { grid-template-columns: 1fr auto 1fr; }
  .cc-scope .header__nav { display: flex; grid-column: 1; }
}

/* Mobile drawer nav */
.cc-scope .header__menu-panel {
  display: none;
  padding: 0.5rem 0 1rem;
  border-top: 1px solid var(--color-border);
}
.cc-scope .header__menu-panel.is-open { display: block; }
.cc-scope .header__menu-panel a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
@media (min-width: 990px) {
  .cc-scope .header__menu-panel, .cc-scope .header__menu-toggle { display: none !important; }
}

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */

.cc-scope .product {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(1rem, 3vw, 2.5rem);
}
@media (min-width: 990px) {
  .cc-scope .product { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: start; }
  .cc-scope .product__gallery { position: sticky; top: 5rem; }
}

/* ---------- Gallery ---------- */

.cc-scope .gallery__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.cc-scope .gallery__viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cc-scope .gallery__viewport::-webkit-scrollbar { display: none; }
.cc-scope .gallery__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  aspect-ratio: 3 / 4;
}
.cc-scope .gallery__slide img { width: 100%; height: 100%; object-fit: cover; }

.cc-scope .gallery__flag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--color-sale);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-scope .gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.cc-scope .gallery__nav--prev { left: 0.65rem; }
.cc-scope .gallery__nav--next { right: 0.65rem; }

.cc-scope .gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 0.75rem;
}
.cc-scope .gallery__dot {
  width: 0.45rem; height: 0.45rem;
  border: 0; padding: 0;
  border-radius: 999px;
  background: var(--color-border);
}
.cc-scope .gallery__dot[aria-current="true"] { background: var(--color-accent); width: 1.4rem; }

.cc-scope .gallery__thumbs {
  display: none;
  gap: 0.5rem;
  padding-top: 0.6rem;
}
.cc-scope .gallery__thumb {
  flex: 0 0 auto;
  width: 4.75rem;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 2px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.cc-scope .gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cc-scope .gallery__thumb[aria-current="true"] { border-color: var(--color-accent); }
@media (min-width: 750px) {
  .cc-scope .gallery__thumbs { display: flex; flex-wrap: wrap; }
  .cc-scope .gallery__dots { display: none; }
}

/* ---------- Product info column ---------- */

.cc-scope .product__info { display: flex; flex-direction: column; }

.cc-scope .rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}
.cc-scope .stars { display: inline-flex; gap: 0.1rem; color: var(--color-star); font-size: 0.95rem; letter-spacing: 0.05em; }

.cc-scope .product__title { font-size: clamp(1.5rem, 4.5vw, 2.15rem); margin-bottom: 0.6rem; }

.cc-scope .product__subtitle {
  font-size: 1.02rem;
  color: var(--color-text-soft);
  margin-bottom: 1.1rem;
}

.cc-scope .price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.cc-scope .price { font-family: var(--font-heading); font-size: 1.9rem; line-height: 1; }
.cc-scope .price--sale { color: var(--color-sale); }
.cc-scope .price__was { font-size: 1.05rem; color: var(--color-text-soft); text-decoration: line-through; }
.cc-scope .badge-save {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  background: var(--color-sale);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cc-scope .product__bullets { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.6rem; }
.cc-scope .product__bullets li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.97rem;
}
.cc-scope .product__bullets svg { margin-top: 0.28rem; color: var(--color-accent); }

/* ---------- Bundle selector ---------- */

.cc-scope .bundle {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0; /* fieldset default box would fight the cards */
}
.cc-scope .bundle__legend {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  padding: 0;
  margin-bottom: 0.15rem;
}

.cc-scope .bundle__option { position: relative; display: block; }
.cc-scope .bundle__option input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}

.cc-scope .bundle__card {
  display: grid;
  grid-template-columns: 1.4rem 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1rem 1rem 0.9rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.cc-scope .bundle__option:hover .bundle__card { border-color: var(--color-accent-soft); }
.cc-scope .bundle__option input:checked + .bundle__card {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
}
.cc-scope .bundle__option input:focus-visible + .bundle__card { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.cc-scope .bundle__radio {
  width: 1.2rem; height: 1.2rem;
  border: 2px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  position: relative;
}
.cc-scope .bundle__option input:checked + .bundle__card .bundle__radio { border-color: var(--color-accent); }
.cc-scope .bundle__option input:checked + .bundle__card .bundle__radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: var(--color-accent);
}

.cc-scope .bundle__label { font-weight: 700; font-size: 1rem; line-height: 1.3; }
.cc-scope .bundle__note { display: block; font-size: 0.83rem; font-weight: 400; color: var(--color-text-soft); }
.cc-scope .bundle__prices { text-align: right; line-height: 1.3; }
.cc-scope .bundle__price { font-weight: 700; font-size: 1.05rem; }
.cc-scope .bundle__compare { display: block; font-size: 0.82rem; color: var(--color-text-soft); text-decoration: line-through; }
.cc-scope .bundle__save { display: block; font-size: 0.78rem; font-weight: 700; color: var(--color-sale); }

.cc-scope .bundle__ribbon {
  position: absolute;
  top: -0.6rem;
  right: 0.9rem;
  z-index: 2;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-bg);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* Cow-print sits in a padded frame around the label rather than behind it —
   behind the text it turns the words to mush at this size. */
.cc-scope .bundle__ribbon--cow {
  background-color: #fff;
  background-image: var(--cow-print);
  background-size: 40px 40px;
  padding: 0.18rem;
  border: 1.5px solid var(--color-text);
}
.cc-scope .bundle__ribbon--cow span {
  display: block;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-bg);
}

/* ---------- Add to cart + trust ---------- */

.cc-scope .product__cta { display: grid; gap: 0.7rem; }
.cc-scope .product__cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: var(--color-text-soft);
}
.cc-scope .stock-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 999px;
  background: #2f8f5b;
  box-shadow: 0 0 0 0 rgba(47, 143, 91, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(47, 143, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 143, 91, 0); }
}
@media (prefers-reduced-motion: reduce) { .cc-scope .stock-dot { animation: none; } }

.cc-scope .payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.35rem;
  opacity: 0.75;
}
.cc-scope .payment-icons svg { height: 1.5rem; width: auto; }

.cc-scope .product__assurances {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.cc-scope .assurance { display: grid; grid-template-columns: 1.6rem 1fr; gap: 0.7rem; align-items: start; font-size: 0.9rem; }
.cc-scope .assurance svg { color: var(--color-accent); margin-top: 0.15rem; }
.cc-scope .assurance strong { display: block; }

/* ---------- Sticky mobile ATC ---------- */

.cc-scope .sticky-atc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.09);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.cc-scope .sticky-atc.is-visible { transform: translateY(0); }
.cc-scope .sticky-atc__img { width: 3rem; height: 3rem; border-radius: 8px; object-fit: cover; flex: 0 0 auto; }
.cc-scope .sticky-atc__meta { min-width: 0; flex: 1; line-height: 1.25; }
.cc-scope .sticky-atc__name {
  font-size: 0.8rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cc-scope .sticky-atc__price { font-size: 0.84rem; color: var(--color-text-soft); }
.cc-scope .sticky-atc .btn { width: auto; flex: 0 0 auto; min-height: 2.9rem; padding-inline: 1.25rem; box-shadow: 0 4px 0 0 var(--color-accent-dark); }
@media (min-width: 990px) { .cc-scope .sticky-atc { display: none; } }

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

/* Featured testimonial */
.cc-scope .testimonial {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--color-bg-alt);
}
@media (min-width: 750px) { .cc-scope .testimonial { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }
.cc-scope .testimonial__img { border-radius: var(--radius); aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.cc-scope .testimonial__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.35;
  margin: 0.5rem 0 1rem;
}
.cc-scope .testimonial__who { font-size: 0.9rem; color: var(--color-text-soft); }
.cc-scope .testimonial__who strong { color: var(--color-text); }
.cc-scope .verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #2f8f5b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Story blocks — alternating image / copy */
.cc-scope .story { display: grid; gap: clamp(1.25rem, 4vw, 2.75rem); align-items: center; }
@media (min-width: 750px) {
  .cc-scope .story { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cc-scope .story--reverse .story__media { order: 2; }
}
.cc-scope .story__media { border-radius: var(--radius); overflow: hidden; background: var(--color-bg-alt); }
.cc-scope .story__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cc-scope .story__body p { color: var(--color-text-soft); }
.cc-scope .story__body p strong { color: var(--color-text); }
.cc-scope .story__list { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: 0.55rem; }
.cc-scope .story__list li { display: grid; grid-template-columns: 1.35rem 1fr; gap: 0.6rem; font-size: 0.95rem; }
.cc-scope .story__list svg { margin-top: 0.28rem; color: var(--color-accent); }

/* Stats band */
.cc-scope .stats { display: grid; gap: 1.75rem; text-align: center; }
@media (min-width: 750px) { .cc-scope .stats { grid-template-columns: repeat(3, 1fr); } }
.cc-scope .stat__figure {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  line-height: 1;
  color: var(--color-accent);
}
.cc-scope .stat__label { font-size: 0.95rem; color: var(--color-text-soft); max-width: 30ch; margin-inline: auto; }
.cc-scope .stats__footnote { text-align: center; font-size: 0.78rem; color: var(--color-text-soft); margin-top: 1.75rem; }

/* Trust icons */
.cc-scope .trust { display: grid; gap: 1.5rem; text-align: center; }
@media (min-width: 750px) { .cc-scope .trust { grid-template-columns: repeat(3, 1fr); } }
.cc-scope .trust__item svg { margin: 0 auto 0.65rem; color: var(--color-accent); }
.cc-scope .trust__item strong { display: block; margin-bottom: 0.2rem; }
.cc-scope .trust__item span { font-size: 0.88rem; color: var(--color-text-soft); }

/* Comparison table */
.cc-scope .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cc-scope .compare {
  width: 100%;
  min-width: 520px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
}
.cc-scope .compare th, .cc-scope .compare td { padding: 0.85rem 0.75rem; text-align: center; }
.cc-scope .compare thead th { font-family: var(--font-heading); font-size: 1rem; }
.cc-scope .compare tbody th { text-align: left; font-weight: 400; color: var(--color-text-soft); }
.cc-scope .compare tbody tr + tr th, .cc-scope .compare tbody tr + tr td { border-top: 1px solid var(--color-border); }
.cc-scope .compare .col-ours {
  background: var(--color-accent-soft);
  border-inline: 2px solid var(--color-accent);
}
.cc-scope .compare thead .col-ours { border-top: 2px solid var(--color-accent); border-radius: var(--radius) var(--radius) 0 0; }
.cc-scope .compare tbody tr:last-child .col-ours { border-bottom: 2px solid var(--color-accent); border-radius: 0 0 var(--radius) var(--radius); }
.cc-scope .compare .yes { color: #2f8f5b; font-weight: 700; }
.cc-scope .compare .no { color: var(--color-text-soft); }

/* FAQ accordion */
.cc-scope .faq { display: grid; gap: 0.6rem; }
.cc-scope .faq__item { border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-bg); overflow: hidden; }
.cc-scope .faq__item[open] { border-color: var(--color-accent); }
.cc-scope .faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.cc-scope .faq__q::-webkit-details-marker { display: none; }
.cc-scope .faq__q::after {
  content: "+";
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-accent);
  flex: 0 0 auto;
}
.cc-scope .faq__item[open] .faq__q::after { content: "–"; }
.cc-scope .faq__a { padding: 0 1.15rem 1.15rem; color: var(--color-text-soft); }

/* Shipping table */
.cc-scope .shipping-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; margin-top: 0.5rem; }
.cc-scope .shipping-table th, .cc-scope .shipping-table td { padding: 0.6rem 0.5rem; text-align: left; border-bottom: 1px solid var(--color-border); }
.cc-scope .shipping-table th { font-weight: 700; }
.cc-scope .shipping-table td:last-child { text-align: right; white-space: nowrap; }

/* Reviews */
.cc-scope .reviews__summary {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
}
@media (min-width: 750px) { .cc-scope .reviews__summary { grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr); } }
.cc-scope .reviews__score { text-align: center; }
.cc-scope .reviews__score-number { font-family: var(--font-heading); font-size: 3rem; line-height: 1; }
.cc-scope .reviews__count { font-size: 0.86rem; color: var(--color-text-soft); }
.cc-scope .bar-row { display: grid; grid-template-columns: 3.5rem 1fr 2.75rem; gap: 0.6rem; align-items: center; font-size: 0.82rem; }
.cc-scope .bar { height: 0.5rem; border-radius: 999px; background: var(--color-border); overflow: hidden; }
.cc-scope .bar span { display: block; height: 100%; background: var(--color-star); }

.cc-scope .review-grid { display: grid; gap: 1rem; }
@media (min-width: 750px) { .cc-scope .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 990px) { .cc-scope .review-grid { grid-template-columns: repeat(3, 1fr); } }
.cc-scope .review-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.15rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
}
.cc-scope .review-card__img { border-radius: calc(var(--radius) - 2px); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.cc-scope .review-card__title { font-weight: 700; }
.cc-scope .review-card__body { font-size: 0.93rem; color: var(--color-text-soft); margin: 0; }
.cc-scope .review-card__who { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; margin-top: auto; padding-top: 0.4rem; }

.cc-scope .reviews__empty {
  padding: 2rem 1.25rem;
  text-align: center;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-soft);
}

/* Guarantee */
.cc-scope .guarantee {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
  padding: clamp(1.75rem, 5vw, 3rem);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  background: var(--color-bg);
}
.cc-scope .guarantee__seal { margin-inline: auto; color: var(--color-accent); }
.cc-scope .guarantee p { color: var(--color-text-soft); max-width: 58ch; margin-inline: auto; }

/* ---------- Footer ---------- */

.cc-scope .footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding-block: clamp(2.5rem, 6vw, 3.5rem) 1.5rem;
}
.cc-scope .footer__grid { display: grid; gap: 2rem; }
@media (min-width: 750px) { .cc-scope .footer__grid { grid-template-columns: 1.2fr 1fr 1.4fr; } }
.cc-scope .footer h3 {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.cc-scope .footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.cc-scope .footer a { text-decoration: none; opacity: 0.8; font-size: 0.92rem; }
.cc-scope .footer a:hover { opacity: 1; text-decoration: underline; }
.cc-scope .footer__blurb { font-size: 0.92rem; opacity: 0.8; max-width: 34ch; }
.cc-scope .footer__signup { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.cc-scope .footer__signup input {
  flex: 1 1 12rem;
  min-height: 3rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  font: inherit;
}
.cc-scope .footer__signup input::placeholder { color: rgba(255, 255, 255, 0.55); }
.cc-scope .footer__signup button {
  min-height: 3rem;
  padding-inline: 1.25rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.cc-scope .footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  opacity: 0.75;
}
.cc-scope .footer .payment-icons { opacity: 0.85; justify-content: flex-start; }

/* ---------- Cart drawer ---------- */

.cc-scope .drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
}
.cc-scope .drawer.is-open { visibility: visible; }
.cc-scope .drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 28, 19, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cc-scope .drawer.is-open .drawer__overlay { opacity: 1; }
.cc-scope .drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(26rem, 100%);
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}
.cc-scope .drawer.is-open .drawer__panel { transform: translateX(0); }
.cc-scope .drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.cc-scope .drawer__head h2 { margin: 0; font-size: 1.1rem; }
.cc-scope .drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.cc-scope .drawer__foot { padding: 1.25rem; border-top: 1px solid var(--color-border); display: grid; gap: 0.6rem; }
.cc-scope .drawer__total { display: flex; justify-content: space-between; font-weight: 700; }
.cc-scope .drawer__note { text-align: center; font-size: 0.8rem; color: var(--color-text-soft); }

.cc-scope .line-item { display: grid; grid-template-columns: 4.25rem 1fr; gap: 0.85rem; padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
.cc-scope .line-item:last-child { border-bottom: 0; margin-bottom: 0; }
.cc-scope .line-item img { border-radius: 8px; aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.cc-scope .line-item__name { font-weight: 700; font-size: 0.92rem; }
.cc-scope .line-item__variant { font-size: 0.82rem; color: var(--color-text-soft); }
.cc-scope .line-item__row { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; gap: 0.5rem; }
.cc-scope .qty { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius); }
.cc-scope .qty button { width: 2rem; height: 2rem; border: 0; background: none; line-height: 1; }
.cc-scope .qty span { min-width: 1.75rem; text-align: center; font-size: 0.9rem; }
.cc-scope .line-item__remove { background: none; border: 0; padding: 0; font-size: 0.78rem; color: var(--color-text-soft); text-decoration: underline; }

/* ---------- Misc page templates ---------- */

.cc-scope .rte h2 { margin-top: 1.75rem; }
.cc-scope .rte ul, .cc-scope .rte ol { padding-left: 1.25rem; }
.cc-scope .rte a { color: var(--color-accent); }
.cc-scope .rte table { width: 100%; border-collapse: collapse; }
.cc-scope .rte td, .cc-scope .rte th { padding: 0.5rem; border-bottom: 1px solid var(--color-border); }

.cc-scope .page-hero { text-align: center; padding-block: clamp(2rem, 5vw, 3.5rem) 0; }

.cc-scope .form-field { display: grid; gap: 0.35rem; margin-bottom: 1rem; }
.cc-scope .form-field label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.cc-scope .form-field input, .cc-scope .form-field textarea {
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: inherit;
  font: inherit;
}
.cc-scope .form-field textarea { min-height: 8rem; resize: vertical; }

.cc-scope .form-success {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent);
  margin-bottom: 1.25rem;
}
.cc-scope .form-error { color: var(--color-sale); font-size: 0.9rem; }
/* sync-probe 043eaad */
