/** Shopify CDN: Minification failed

Line 43:0 All "@import" rules must come first

**/
/* ============================================================
   F24 — PDP shared stylesheet
   Mobile-first. Brand: Identidad A (amarillo + Anton).
   Load via {{ 'f24-pdp.css' | asset_url | stylesheet_tag }}
   ============================================================ */

:root {
  --f24-yellow: #FFD500;
  --f24-yellow-soft: #FFF1B8;
  --f24-black:  #0A0A0A;
  --f24-cream:  #F5EFE0;
  --f24-white:  #FFFFFF;
  --f24-orange: #FF5C00;
  --f24-red:    #C8102E;
  --f24-green:  #00A859;
  --f24-blue:   #0066CC;
  --f24-gray-900: #1A1A1A;
  --f24-gray-700: #4A4A4A;
  --f24-gray-500: #7A7A7A;
  --f24-gray-300: #C4C4C4;
  --f24-gray-100: #F0F0F0;

  --f24-font-display: 'Anton', 'Archivo Black', 'Impact', sans-serif;
  --f24-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --f24-space-1: 4px;
  --f24-space-2: 8px;
  --f24-space-3: 12px;
  --f24-space-4: 16px;
  --f24-space-6: 24px;
  --f24-space-8: 32px;
  --f24-space-12: 48px;
  --f24-space-16: 64px;
}

/* Fonts — Google Fonts swap-friendly. Theme.liquid will provide @import or preconnect ideally,
   but as a safe fallback we import here. */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* =================================================================
   SCROLL-TRIGGERED ANIMATIONS
   Gated by .f24-js (set by JS before paint) so no-JS users see content.
   ================================================================= */

/* Section/eyebrow/heading fade-up */
.f24-js .f24-anim {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.f24-js .f24-anim.f24-anim--in {
  opacity: 1;
  transform: translateY(0);
}

/* Variant: slide from left (for side-panels) */
.f24-js .f24-anim--left {
  opacity: 0;
  transform: translateX(-44px);
}
.f24-js .f24-anim--left.f24-anim--in {
  opacity: 1;
  transform: translateX(0);
}

/* Variant: scale-in (for media frames) */
.f24-js .f24-anim--scale {
  opacity: 0;
  transform: scale(0.96);
}
.f24-js .f24-anim--scale.f24-anim--in {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.f24-js .f24-anim-child {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.f24-js .f24-anim-child.f24-anim--in {
  opacity: 1;
  transform: translateY(0);
}

/* Count-up: avoid layout shift while ticking */
.f24-js [data-count] { font-variant-numeric: tabular-nums; }

/* Respect user preference */
@media (prefers-reduced-motion: reduce) {
  .f24-js .f24-anim,
  .f24-js .f24-anim-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============= section shell ============= */
.f24-pdp {
  font-family: var(--f24-font-body);
  color: var(--f24-black);
  --f24-container-max: 1200px;
}
.f24-pdp__container {
  max-width: var(--f24-container-max);
  margin: 0 auto;
  padding-inline: var(--f24-space-4);
}
@media (min-width: 768px) {
  .f24-pdp__container { padding-inline: var(--f24-space-8); }
}
.f24-pdp__section { padding-block: var(--f24-space-12); }
@media (min-width: 768px) {
  .f24-pdp__section { padding-block: var(--f24-space-16); }
}

/* Eyebrow + heading patterns */
.f24-pdp__eyebrow {
  font-family: var(--f24-font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--f24-black);
  background: var(--f24-yellow);
  display: inline-block;
  padding: 4px 10px 5px;
  margin-bottom: var(--f24-space-3);
}
.f24-pdp__h2 {
  font-family: var(--f24-font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.02;
  margin: 0 0 var(--f24-space-4);
  color: var(--f24-black);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.f24-pdp__lead {
  font-family: var(--f24-font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--f24-gray-700);
  max-width: 62ch;
}

/* ============= KEY SPECS ============= */
.f24-keyspecs { background: var(--f24-black); color: var(--f24-white); }
.f24-keyspecs .f24-pdp__eyebrow { background: var(--f24-yellow); color: var(--f24-black); }
.f24-keyspecs .f24-pdp__h2 { color: var(--f24-white); }
.f24-keyspecs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--f24-space-3);
  margin-top: var(--f24-space-6);
}
@media (min-width: 640px) { .f24-keyspecs__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .f24-keyspecs__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.f24-keyspecs__card {
  background: var(--f24-gray-900);
  border: 1px solid #2a2a2a;
  padding: var(--f24-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--f24-space-1);
  position: relative;
  overflow: hidden;
}
.f24-keyspecs__card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--f24-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
/* Underline draws when card scrolls into view, AND still on hover for desktop */
.f24-keyspecs__card.f24-anim--in::after,
.f24-keyspecs__card:hover::after { transform: scaleX(1); }
.f24-keyspecs__icon {
  width: 28px; height: 28px;
  color: var(--f24-yellow);
  margin-bottom: var(--f24-space-2);
}
.f24-keyspecs__val {
  font-family: var(--f24-font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  color: var(--f24-white);
  letter-spacing: -0.01em;
}
.f24-keyspecs__val sup,
.f24-keyspecs__val small {
  font-size: 0.45em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--f24-yellow);
  font-family: var(--f24-font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.f24-keyspecs__label {
  font-family: var(--f24-font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--f24-gray-300);
  font-weight: 600;
}

/* ============= BULLETS DE VENTA ============= */
.f24-bullets { background: var(--f24-cream); }
.f24-bullets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--f24-space-4);
  margin-top: var(--f24-space-6);
}
@media (min-width: 640px) { .f24-bullets__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .f24-bullets__grid { grid-template-columns: repeat(4, 1fr); } }
.f24-bullets__card {
  background: var(--f24-white);
  padding: var(--f24-space-6);
  border-left: 4px solid var(--f24-yellow);
  display: flex;
  flex-direction: column;
  gap: var(--f24-space-2);
  min-height: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.f24-bullets__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10,10,10,0.06);
}
.f24-bullets__num {
  font-family: var(--f24-font-display);
  font-size: 22px;
  color: var(--f24-black);
  background: var(--f24-yellow);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--f24-space-2);
}
.f24-bullets__h {
  font-family: var(--f24-font-display);
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--f24-black);
  margin: 0;
}
.f24-bullets__p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--f24-gray-700);
  margin: 0;
}

/* ============= BODY (descripción larga) — EDITORIAL MAGAZINE ============= */
.f24-body { background: var(--f24-white); position: relative; overflow: hidden; }

/* Subtle decorative diagonal stripe — sits behind heading area */
.f24-body::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 55%; height: 200px;
  background: linear-gradient(135deg, var(--f24-yellow) 0%, var(--f24-yellow) 60%, transparent 60.1%);
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.f24-body > * { position: relative; z-index: 1; }

.f24-body__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--f24-space-8);
  margin-top: var(--f24-space-6);
}
@media (min-width: 1024px) {
  .f24-body__wrap { grid-template-columns: 1.55fr 1fr; align-items: start; gap: var(--f24-space-12); }
}

.f24-body__prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--f24-gray-900);
  max-width: 65ch;
}
.f24-body__prose p { margin: 0 0 var(--f24-space-4); }
.f24-body__prose strong { color: var(--f24-black); font-weight: 700; }

/* ===== Stats strip (horizontal mini-cards entre H2 y body) ===== */
.f24-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-block: var(--f24-space-6);
  background: var(--f24-cream);
  border-top: 1px solid var(--f24-gray-300);
  border-bottom: 1px solid var(--f24-gray-300);
}
.f24-stats-strip__item {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 2px;
  padding: var(--f24-space-4) var(--f24-space-3);
  border-right: 1px solid var(--f24-gray-300);
  position: relative;
}
.f24-stats-strip__item:last-child { border-right: none; }
.f24-stats-strip__item::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--f24-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.f24-stats-strip.f24-anim--in .f24-stats-strip__item::after { transform: scaleX(1); }
.f24-stats-strip__val {
  font-family: var(--f24-font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1;
  color: var(--f24-black);
  letter-spacing: -0.005em;
}
.f24-stats-strip__val small {
  font-size: 0.5em;
  margin-left: 4px;
  font-family: var(--f24-font-body);
  font-weight: 700;
  color: var(--f24-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.f24-stats-strip__label {
  font-family: var(--f24-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--f24-gray-500);
}
@media (max-width: 520px) {
  .f24-stats-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .f24-stats-strip__item { padding: var(--f24-space-3) 8px; }
  .f24-stats-strip__val { font-size: 19px; }
  .f24-stats-strip__val small { font-size: 0.45em; margin-left: 2px; }
  .f24-stats-strip__label { font-size: 9px; letter-spacing: 0.06em; }
}

/* ===== Pull-quote (inyectado por JS después del 2do <p>) ===== */
.f24-pull-quote {
  margin-block: var(--f24-space-8);
  padding: var(--f24-space-4) 0 var(--f24-space-4) var(--f24-space-6);
  position: relative;
  border-left: 6px solid var(--f24-yellow);
  max-width: 60ch;
}
.f24-pull-quote__mark {
  position: absolute;
  left: 18px;
  top: -14px;
  font-family: var(--f24-font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--f24-yellow);
  pointer-events: none;
  user-select: none;
}
.f24-pull-quote__text {
  font-family: var(--f24-font-display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--f24-black);
  margin: 0;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}
/* On-scroll subtle reveal — uses the same f24-anim hooks */
.f24-js .f24-pull-quote { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.f24-js .f24-pull-quote.f24-anim--in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .f24-js .f24-pull-quote { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Lists in body */
.f24-body__prose ul {
  list-style: none;
  padding: 0;
  margin: var(--f24-space-3) 0 var(--f24-space-6);
}
.f24-body__prose ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: var(--f24-space-2);
}
.f24-body__prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 3px;
  background: var(--f24-yellow);
}

/* ORDERED list = "ALERTA / Antes de usarla" warning box */
.f24-body__prose ol {
  list-style: none;
  padding: var(--f24-space-6) var(--f24-space-6) var(--f24-space-4);
  margin: var(--f24-space-6) 0;
  background: var(--f24-cream);
  border-left: 6px solid var(--f24-yellow);
  position: relative;
  counter-reset: f24-alert;
}
.f24-body__prose ol::before {
  content: 'ATENCIÓN';
  position: absolute;
  top: -10px;
  left: var(--f24-space-4);
  background: var(--f24-yellow);
  color: var(--f24-black);
  font-family: var(--f24-font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 4px 10px 5px;
}
.f24-body__prose ol li {
  counter-increment: f24-alert;
  position: relative;
  padding-left: 56px;
  padding-block: var(--f24-space-3);
  min-height: 48px;
  margin: 0;
  border-bottom: 1px dashed var(--f24-gray-300);
}
.f24-body__prose ol li:last-child { border-bottom: none; }
.f24-body__prose ol li::before {
  content: counter(f24-alert, decimal-leading-zero);
  position: absolute;
  left: 0; top: var(--f24-space-3);
  font-family: var(--f24-font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--f24-black);
  background: var(--f24-yellow);
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
}

/* ============ Cases of use side card (rediseñada) ============ */
.f24-cases {
  background: var(--f24-cream);
  padding: var(--f24-space-6);
  position: relative;
  border-top: 6px solid var(--f24-yellow);
}
.f24-cases__eyebrow {
  display: inline-block;
  background: var(--f24-black);
  color: var(--f24-yellow);
  font-family: var(--f24-font-display);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px 5px;
  margin-bottom: var(--f24-space-3);
}
.f24-cases__h {
  font-family: var(--f24-font-display);
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--f24-black);
  margin: 0 0 var(--f24-space-4);
}
.f24-cases__list {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: f24-case;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--f24-space-2);
}
.f24-cases__item {
  counter-increment: f24-case;
  background: var(--f24-white);
  padding: var(--f24-space-3) var(--f24-space-4) var(--f24-space-3) 52px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--f24-gray-900);
  border-left: 3px solid var(--f24-yellow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.f24-cases__item::before {
  content: counter(f24-case, decimal-leading-zero);
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f24-font-display);
  font-size: 20px;
  color: var(--f24-gray-300);
  line-height: 1;
}
.f24-cases__item:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(10,10,10,0.06);
}
.f24-cases__item:hover::before { color: var(--f24-black); }

@media (min-width: 1024px) {
  .f24-cases {
    position: sticky;
    top: 100px;
  }
}

/* ============= VIDEO ============= */
.f24-video { background: var(--f24-black); color: var(--f24-white); }
.f24-video .f24-pdp__h2 { color: var(--f24-white); }
.f24-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  margin-top: var(--f24-space-6);
  border: 4px solid var(--f24-yellow);
}
.f24-video__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============= SPECS TABLE ============= */
.f24-specs { background: var(--f24-cream); }
.f24-specs__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--f24-space-6);
  background: var(--f24-white);
  border: 1px solid var(--f24-gray-300);
}
.f24-specs__table caption {
  text-align: left;
  font-family: var(--f24-font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--f24-gray-700);
  margin-bottom: var(--f24-space-2);
  caption-side: top;
}
.f24-specs__group {
  background: var(--f24-black);
  color: var(--f24-yellow);
  font-family: var(--f24-font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.f24-specs__group th {
  text-align: left;
  padding: 10px var(--f24-space-4);
}
.f24-specs__table th[scope="row"] {
  text-align: left;
  padding: 12px var(--f24-space-4);
  width: 50%;
  background: var(--f24-white);
  color: var(--f24-gray-700);
  font-weight: 500;
  font-size: 14px;
  border-top: 1px solid var(--f24-gray-100);
}
.f24-specs__table td {
  padding: 12px var(--f24-space-4);
  background: var(--f24-white);
  color: var(--f24-black);
  font-weight: 600;
  font-size: 14px;
  border-top: 1px solid var(--f24-gray-100);
}
.f24-specs__table tr:hover th[scope="row"],
.f24-specs__table tr:hover td { background: var(--f24-yellow-soft); }

/* ============= WARRANTY + SHIPPING ============= */
.f24-warranty { background: var(--f24-white); }
.f24-warranty__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--f24-space-4);
  margin-top: var(--f24-space-6);
}
@media (min-width: 768px) { .f24-warranty__grid { grid-template-columns: 1fr 1fr; } }
.f24-warranty__card {
  background: var(--f24-cream);
  padding: var(--f24-space-6);
  border-top: 4px solid var(--f24-yellow);
  display: flex;
  gap: var(--f24-space-4);
}
.f24-warranty__icon {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  background: var(--f24-black);
  color: var(--f24-yellow);
  display: inline-flex; align-items: center; justify-content: center;
}
.f24-warranty__icon svg { width: 24px; height: 24px; }
.f24-warranty__body h3 {
  font-family: var(--f24-font-display);
  font-size: 22px;
  margin: 0 0 var(--f24-space-1);
  text-transform: uppercase;
  color: var(--f24-black);
}
.f24-warranty__sub {
  font-family: var(--f24-font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--f24-orange);
  font-weight: 700;
  margin: 0 0 var(--f24-space-2);
}
.f24-warranty__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--f24-gray-700);
  margin: 0;
}

/* ============= FAQ accordion ============= */
.f24-faq { background: var(--f24-cream); }
.f24-faq__list { margin-top: var(--f24-space-6); }
.f24-faq__item {
  background: var(--f24-white);
  border-bottom: 1px solid var(--f24-gray-100);
}
.f24-faq__item:first-child { border-top: 1px solid var(--f24-gray-100); }
.f24-faq__item summary {
  cursor: pointer;
  padding: var(--f24-space-4) var(--f24-space-6);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--f24-space-4);
  list-style: none;
  font-family: var(--f24-font-display);
  font-size: 17px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--f24-black);
}
.f24-faq__item summary::-webkit-details-marker { display: none; }
.f24-faq__plus {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  position: relative;
  background: var(--f24-yellow);
  transition: transform 200ms ease;
}
.f24-faq__plus::before,
.f24-faq__plus::after {
  content: '';
  position: absolute;
  background: var(--f24-black);
}
.f24-faq__plus::before { left: 4px; right: 4px; top: 11px; height: 2px; }
.f24-faq__plus::after  { top: 4px; bottom: 4px; left: 11px; width: 2px; }
.f24-faq__item[open] .f24-faq__plus { transform: rotate(45deg); }
.f24-faq__body {
  padding: 0 var(--f24-space-6) var(--f24-space-6);
  font-size: 15px;
  line-height: 1.6;
  color: var(--f24-gray-700);
}

/* ============= BUYBOX overrides (theme product-information) =============
   Lightweight skin: enlarge product H1, brand the price, soften body width.
   These selectors target Horizon's default product page structure. */
.template-product .product-information,
.template-product [class*="product-information"] { /* fallback */ }

.template-product main h1,
.template-product .product-title,
.template-product h1.product-title {
  font-family: var(--f24-font-display) !important;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.05;
  text-transform: none;
  letter-spacing: -0.01em;
}

/* Categoría chip injected via custom-liquid block */
.f24-buybox-chips {
  display: flex; flex-wrap: wrap;
  gap: var(--f24-space-2);
  margin-top: var(--f24-space-2);
  margin-bottom: var(--f24-space-3);
}
.f24-buybox-chip {
  display: inline-flex;
  align-items: center;
  background: var(--f24-black);
  color: var(--f24-yellow);
  font-family: var(--f24-font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 5px 10px 6px;
  line-height: 1;
}
.f24-buybox-eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--f24-yellow);
  color: var(--f24-black);
  font-family: var(--f24-font-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 5px 10px 6px;
  line-height: 1;
  margin-bottom: var(--f24-space-3);
}
.f24-buybox-pitch {
  font-family: var(--f24-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--f24-gray-700);
  margin: 0 0 var(--f24-space-4);
  max-width: 50ch;
}
.f24-buybox-trust {
  display: flex; flex-wrap: wrap;
  gap: var(--f24-space-4);
  margin-top: var(--f24-space-6);
  padding-top: var(--f24-space-4);
  border-top: 1px solid var(--f24-gray-100);
}
.f24-buybox-trust__item {
  display: flex; align-items: center; gap: var(--f24-space-2);
  font-size: 13px;
  color: var(--f24-gray-700);
}
.f24-buybox-trust__item svg {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  color: var(--f24-green);
}
.f24-buybox-trust__item strong {
  color: var(--f24-black);
  font-weight: 600;
}

/* ===== Discount badge — bold sale callout under the price ===== */
.f24-discount-badge {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: var(--f24-space-3) 0 var(--f24-space-4);
  max-width: 100%;
  border: 2px solid var(--f24-black);
  background: var(--f24-yellow);
  position: relative;
  overflow: hidden;
}
.f24-discount-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 14px,
    rgba(10, 10, 10, 0.05) 14px,
    rgba(10, 10, 10, 0.05) 16px
  );
  pointer-events: none;
}
.f24-discount-badge__num {
  flex: 0 0 auto;
  font-family: var(--f24-font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1;
  color: var(--f24-black);
  background: var(--f24-yellow);
  padding: 10px 16px 12px;
  display: inline-flex;
  align-items: center;
  border-right: 2px solid var(--f24-black);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.f24-discount-badge__copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 8px 14px;
  background: var(--f24-black);
  color: var(--f24-yellow);
  position: relative;
  z-index: 1;
}
.f24-discount-badge__label {
  font-family: var(--f24-font-display);
  font-size: 14px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--f24-yellow);
}
.f24-discount-badge__save {
  font-family: var(--f24-font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

/* Sale price emphasis — Horizon renders compare-at price as <s>, sale price as the main value.
   We boost the sale price visual weight and color the strikethrough properly. */
.template-product .price--on-sale .price-item--sale,
.template-product .price__sale,
.template-product .price__current,
.template-product .price .price-item:not(.price-item--regular) {
  color: var(--f24-black) !important;
  font-family: var(--f24-font-display) !important;
  font-size: clamp(28px, 3.4vw, 38px) !important;
  font-weight: 400 !important;
  letter-spacing: -0.005em !important;
  line-height: 1 !important;
}
.template-product .price__sale s,
.template-product .price s,
.template-product .price-item--regular,
.template-product .price__regular .price-item {
  color: var(--f24-gray-500) !important;
  font-size: 14px !important;
  text-decoration: line-through;
  font-weight: 500 !important;
  margin-right: 8px;
}

/* SKU below title — small */
.f24-buybox-sku {
  font-family: var(--f24-font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--f24-gray-500);
  margin-top: var(--f24-space-3);
}
.f24-buybox-sku strong { color: var(--f24-black); }

/* ============= DOCS / PDFs ============= */
.f24-docs { background: var(--f24-white); }
.f24-docs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--f24-space-3);
  margin-top: var(--f24-space-6);
}
@media (min-width: 768px) { .f24-docs__grid { grid-template-columns: repeat(2, 1fr); } }

.f24-docs__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--f24-space-4);
  background: var(--f24-cream);
  border-left: 4px solid var(--f24-yellow);
  padding: var(--f24-space-4) var(--f24-space-6);
  text-decoration: none;
  color: var(--f24-black);
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.f24-docs__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--f24-yellow);
  transform: translateX(-100%);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  opacity: 0;
}
.f24-docs__card:hover::after {
  transform: translateX(0);
  opacity: 0.12;
}
.f24-docs__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10,10,10,0.08);
}
.f24-docs__icon,
.f24-docs__meta,
.f24-docs__cta { position: relative; z-index: 1; }
.f24-docs__icon {
  width: 48px; height: 48px;
  background: var(--f24-black);
  color: var(--f24-yellow);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.f24-docs__meta {
  display: flex; flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.f24-docs__label {
  font-family: var(--f24-font-display);
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--f24-black);
}
.f24-docs__sub {
  font-family: var(--f24-font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--f24-gray-500);
  font-weight: 600;
}
.f24-docs__cta {
  display: inline-flex; align-items: center; gap: var(--f24-space-2);
  font-family: var(--f24-font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--f24-black);
  color: var(--f24-yellow);
  padding: 8px 12px 9px;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease;
}
.f24-docs__card:hover .f24-docs__cta {
  background: var(--f24-yellow);
  color: var(--f24-black);
}
@media (max-width: 520px) {
  .f24-docs__card {
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon meta" "cta cta";
    row-gap: var(--f24-space-3);
  }
  .f24-docs__icon { grid-area: icon; }
  .f24-docs__meta { grid-area: meta; }
  .f24-docs__cta  { grid-area: cta; justify-content: center; padding-block: var(--f24-space-3); }
}
