/**
 * About Us page styles — scoped under .trk-about-page to avoid theme conflicts
 */

.trk-about-page {
    --black: #131313;
    --white: #ffffff;
    --red: #E31E24;
    --red-dark: #B81015;
    --grey-50: #fafafa;
    --grey-100: #f5f5f5;
    --grey-150: #ededed;
    --grey-200: #e5e5e5;
    --grey-300: #d4d4d4;
    --grey-500: #737373;
    --grey-700: #404040;
    --grey-900: #171717;
    --max: 1240px;
    --gutter: 20px;
    --section: 96px;
    --radius: 14px;
}
@media (min-width: 768px) {
  .trk-about-page {
    --gutter: 40px; --section: 140px;
  }
}
.trk-about-page *, .trk-about-page *::before, .trk-about-page *::after {
    box-sizing: border-box;
}
.trk-about-page {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.trk-about-page img, .trk-about-page svg {
    display: block; max-width: 100%;
}
.trk-about-page a {
    color: inherit; text-decoration: none;
}
.trk-about-page button {
    font: inherit; cursor: pointer; border: none; background: none;
}
.trk-about-page .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
@keyframes drawLine {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
.trk-about-page .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.trk-about-page .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.trk-about-page .reveal.delay-1 {
    transition-delay: 0.1s;
}
.trk-about-page .reveal.delay-2 {
    transition-delay: 0.2s;
}
.trk-about-page .reveal.delay-3 {
    transition-delay: 0.3s;
}
.trk-about-page .reveal.delay-4 {
    transition-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  .trk-about-page *, .trk-about-page *::before, .trk-about-page *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .trk-about-page .reveal {
    opacity: 1; transform: none;
  }
}
.trk-about-page .hero {
    padding: 80px 0 60px;
    text-align: center;
    background: var(--white);
}
@media (min-width: 768px) {
  .trk-about-page .hero {
    padding: 140px 0 100px;
  }
}
.trk-about-page .kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    padding: 6px 14px;
    background: var(--black);
    border-radius: 999px;
    opacity: 0;
    animation: fadeUp 0.7s 0.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.trk-about-page .hero h1 {
    font-size: clamp(40px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin: 0 0 24px;
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.trk-about-page .hero h1 em {
    font-style: normal;
    color: var(--black);
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.trk-about-page .hero h1 em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    animation: drawLine 1s 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@media (min-width: 768px) {
  .trk-about-page .hero h1 em::after {
    height: 10px;
    bottom: 10px;
  }
}
.trk-about-page .hero p {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--grey-700);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.trk-about-page .hero p {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--grey-700);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}
.trk-about-page section.padded {
    padding: var(--section) 0;
}
.trk-about-page section.padded.tight {
    padding: calc(var(--section) * 0.7) 0;
}
.trk-about-page .section-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 16px;
    display: block;
}
.trk-about-page h2.section-title {
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0 0 20px;
}
.trk-about-page .section-lede {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--grey-700);
    line-height: 1.65;
    max-width: 640px;
}
.trk-about-page .intro {
    background: var(--grey-50);
    border-top: 1px solid var(--grey-150);
    border-bottom: 1px solid var(--grey-150);
}
.trk-about-page .intro__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    align-items: start;
}
@media (min-width: 900px) {
  .trk-about-page .intro__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
  }
}
.trk-about-page .intro__body p {
    font-size: 18px;
    color: var(--grey-700);
    margin: 0 0 18px;
    line-height: 1.7;
}
.trk-about-page .intro__body p:last-child {
    margin-bottom: 0;
}
.trk-about-page .intro__body strong {
    color: var(--black); font-weight: 600;
}
.trk-about-page .pillars__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .trk-about-page .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.trk-about-page .pillar {
    padding: 36px 28px;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.trk-about-page .pillar:hover {
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.trk-about-page .pillar__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--black);
    color: var(--white);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
}
.trk-about-page .pillar h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.trk-about-page .pillar p {
    margin: 0;
    color: var(--grey-700);
    font-size: 15.5px;
    line-height: 1.6;
}
.trk-about-page .pillars-section {
    padding-top: calc(var(--section) * 0.6);
}
.trk-about-page .editorial {
    background: var(--black);
    color: var(--white);
}
.trk-about-page .editorial__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.trk-about-page .editorial .section-kicker {
    color: rgba(255,255,255,0.5);
}
.trk-about-page .editorial blockquote {
    margin: 0;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    padding: 0;
}
.trk-about-page .editorial blockquote::before {
    content: '"';
    display: block;
    font-size: 80px;
    line-height: 0.5;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
}
.trk-about-page .editorial p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin: 32px 0 0;
    line-height: 1.7;
}
.trk-about-page .explore-head {
    text-align: center;
    margin-bottom: 56px;
}
.trk-about-page .explore-head .section-lede {
    margin-left: auto;
    margin-right: auto;
}
.trk-about-page .explore__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .trk-about-page .explore__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .trk-about-page .explore__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.trk-about-page .explore-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    background: var(--white);
    transition: all 0.2s;
    min-height: 180px;
}
.trk-about-page .explore-card:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}
.trk-about-page .explore-card:hover .explore-card__arrow {
    background: var(--white);
    color: var(--black);
    transform: translateX(4px);
}
.trk-about-page .explore-card:hover .explore-card__desc {
    color: rgba(255,255,255,0.7);
}
.trk-about-page .explore-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.trk-about-page .explore-card__desc {
    font-size: 14.5px;
    color: var(--grey-700);
    line-height: 1.55;
    margin: 0 0 24px;
    flex-grow: 1;
    transition: color 0.2s;
}
.trk-about-page .explore-card__arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--grey-100);
    color: var(--black);
    display: grid;
    place-items: center;
    margin-top: auto;
    transition: all 0.2s;
}
.trk-about-page .sister {
    background: var(--black);
    color: var(--white);
}
.trk-about-page .sister__inner {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 900px) {
  .trk-about-page .sister__inner {
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
  }
}
.trk-about-page .sister__text .section-kicker {
    color: rgba(255,255,255,0.5);
}
.trk-about-page .sister__text h2 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 16px;
}
.trk-about-page .sister__text p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 540px;
}
.trk-about-page .sister__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--white);
    color: var(--black);
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.15s, background 0.15s;
}
.trk-about-page .sister__btn:hover {
    background: var(--grey-200);
    transform: translateY(-1px);
}
.trk-about-page .sister__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
}
.trk-about-page .sister__card-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.trk-about-page .sister__card-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}
.trk-about-page .sister__card-meta {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
}
.trk-about-page .sister__card-meta span::before {
    content: '·';
    margin-right: 28px;
    color: rgba(255,255,255,0.3);
}
.trk-about-page .sister__card-meta span:first-child::before {
    content: ''; margin: 0;
}
.trk-about-page .stats {
    background: var(--white);
    border-top: 1px solid var(--grey-150);
    border-bottom: 1px solid var(--grey-150);
}
.trk-about-page .stats__head {
    text-align: center;
    margin-bottom: 64px;
}
.trk-about-page .stats__head .section-lede {
    margin-left: auto;
    margin-right: auto;
}
.trk-about-page .stats__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .trk-about-page .stats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.trk-about-page .stat {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    background: var(--white);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.trk-about-page .stat:hover {
    border-color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.trk-about-page .stat__num {
    font-size: clamp(48px, 7vw, 76px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--black);
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}
.trk-about-page .stat__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--grey-700);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}
.trk-about-page .stat__divider {
    width: 32px;
    height: 3px;
    background: var(--black);
    margin: 0 auto 14px;
    border-radius: 2px;
}
.trk-about-page .catalogue {
    background: var(--grey-50);
    border-top: 1px solid var(--grey-150);
    border-bottom: 1px solid var(--grey-150);
}
.trk-about-page .catalogue__head {
    text-align: center;
    margin-bottom: 56px;
}
.trk-about-page .catalogue__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-bottom: 48px;
}
@media (min-width: 600px) {
  .trk-about-page .catalogue__grid {
    grid-template-columns: repeat(2, 1fr); gap: 24px;
  }
}
@media (min-width: 1000px) {
  .trk-about-page .catalogue__grid {
    grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
}
.trk-about-page .product-card {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.trk-about-page .product-card:hover {
    transform: translateY(-6px);
}
.trk-about-page .product-card__media {
    aspect-ratio: 4/5;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-end;
    padding: 14px;
    background: var(--grey-200);
}
.trk-about-page .product-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.25) 100%);
    pointer-events: none;
}
.trk-about-page .product-card__era {
    background: rgba(255,255,255,0.96);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    position: relative;
    z-index: 1;
}
.trk-about-page .product-card__heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    color: var(--black);
    display: grid;
    place-items: center;
    z-index: 1;
    transition: transform 0.2s, background 0.2s;
}
.trk-about-page .product-card:hover .product-card__heart {
    transform: scale(1.08);
    background: var(--white);
}
.trk-about-page .product-card__title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.3;
    color: var(--black);
}
.trk-about-page .product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
}
.trk-about-page .product-card__price del {
    color: var(--grey-500);
    font-weight: 500;
    text-decoration: line-through;
}
.trk-about-page .kit-stripes-rb {
    background:
    repeating-linear-gradient(90deg,
    #A50044 0px, #A50044 18px,
    #1A3F8A 18px, #1A3F8A 36px);
}
.trk-about-page .kit-stripes-bw {
    background:
    repeating-linear-gradient(90deg,
    #1a1a1a 0px, #1a1a1a 22px,
    #f5f5f5 22px, #f5f5f5 44px);
}
.trk-about-page .kit-yellow {
    background:
    linear-gradient(135deg, #f4c430 0%, #FFD700 50%, #009C3B 100%);
}
.trk-about-page .kit-red-solid {
    background:
    linear-gradient(135deg, #C8102E 0%, #870921 100%);
    position: relative;
}
.trk-about-page .kit-red-solid::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    repeating-linear-gradient(45deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 2px,
    transparent 2px,
    transparent 14px);
}
.trk-about-page .catalogue__cta {
    text-align: center;
}
.trk-about-page .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--black);
    border: 1.5px solid var(--black);
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.15s, color 0.15s, transform 0.15s;
}
.trk-about-page .btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-1px);
}
.trk-about-page .btn-outline svg {
    transition: transform 0.2s;
}
.trk-about-page .btn-outline:hover svg {
    transform: translateX(3px);
}
.trk-about-page .final-cta {
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--grey-100) 100%);
}
.trk-about-page .final-cta h2 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin: 0 0 32px;
}
.trk-about-page .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--red);
    color: var(--white);
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    transition: transform 0.15s, background 0.15s, box-shadow 0.2s;
}
.trk-about-page .btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(227,30,36,0.3);
}
.trk-about-page .btn-primary svg {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.trk-about-page .btn-primary:hover svg {
    transform: translateX(4px);
}


/* ============================================================
   ABOUT_FIX_1 — theme override block
   Forces correct colors and layout on top of theme defaults.
   ============================================================ */

/* Force readable text colors on light sections */
.trk-about-page,
.trk-about-page h1, .trk-about-page h2, .trk-about-page h3,
.trk-about-page h4, .trk-about-page p { color: #131313; }

.trk-about-page .hero h1,
.trk-about-page .hero h1 em,
.trk-about-page .intro__head h2,
.trk-about-page .intro__body p,
.trk-about-page .pillars-section h2,
.trk-about-page .pillar h3,
.trk-about-page .pillar p,
.trk-about-page .stats__head h2,
.trk-about-page .stats__head p,
.trk-about-page .stat__num,
.trk-about-page .explore-head h2,
.trk-about-page .explore-head p,
.trk-about-page .explore-card h3,
.trk-about-page .explore-card__desc,
.trk-about-page .catalogue__head h2,
.trk-about-page .catalogue__head p,
.trk-about-page .product-card__title,
.trk-about-page .product-card__price,
.trk-about-page .final-cta h2 { color: #131313 !important; }

.trk-about-page .product-card__price del { color: #737373 !important; }
.trk-about-page .section-kicker { color: #737373 !important; }
.trk-about-page .stat__label    { color: #404040 !important; }

/* Hover state on explore-card: text turns white when card goes black */
.trk-about-page .explore-card:hover,
.trk-about-page .explore-card:hover h3       { color: #ffffff !important; }
.trk-about-page .explore-card:hover .explore-card__desc { color: rgba(255,255,255,0.7) !important; }

/* Force WHITE text on dark sections */
.trk-about-page .editorial,
.trk-about-page .editorial blockquote          { color: #ffffff !important; }
.trk-about-page .editorial blockquote::before  { color: #ffffff !important; }
.trk-about-page .editorial p                   { color: rgba(255,255,255,0.7) !important; }
.trk-about-page .editorial .section-kicker     { color: rgba(255,255,255,0.5) !important; }

.trk-about-page .sister h2                     { color: #ffffff !important; }
.trk-about-page .sister__text p                { color: rgba(255,255,255,0.7) !important; }
.trk-about-page .sister .section-kicker        { color: rgba(255,255,255,0.5) !important; }
.trk-about-page .sister__btn                   { color: #131313 !important; }
.trk-about-page .sister__card-logo             { color: #ffffff !important; }
.trk-about-page .sister__card-tag,
.trk-about-page .sister__card-meta             { color: rgba(255,255,255,0.5) !important; }
.trk-about-page .sister__card-meta span        { color: rgba(255,255,255,0.7) !important; }

/* Hero kicker pill */
.trk-about-page .kicker {
    color: #ffffff !important;
    background: #131313 !important;
}

/* Buttons */
.trk-about-page .btn-primary       { color: #ffffff !important; }
.trk-about-page .btn-outline       { color: #131313 !important; }
.trk-about-page .btn-outline:hover { color: #ffffff !important; }

/* Layout: bust out of theme content constraints */
.trk-about-page,
.trk-about-page section {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    float: none !important;
    box-sizing: border-box !important;
}
.trk-about-page section.padded {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.trk-about-page .container {
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: auto !important;
    box-sizing: border-box !important;
    float: none !important;
}
@media (min-width: 768px) {
    .trk-about-page .container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/* Editorial: properly centered 880px column */
.trk-about-page .editorial__inner {
    max-width: 880px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    text-align: center !important;
    float: none !important;
}
.trk-about-page .editorial__inner > * { text-align: center !important; }

/* Anchors: do not inherit theme link blue */
.trk-about-page a, .trk-about-page a:visited {
    color: inherit;
    text-decoration: none;
}
.trk-about-page .footer-brand a { color: #ffffff !important; }

/* ABOUT_FIX_2_SLIDER === best-sellers slider styles === */
.trk-about-page .catalogue__slider { position: relative; }
.trk-about-page .catalogue__track {
    display: flex; gap: 20px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 24px;
    scrollbar-width: none;
    margin-bottom: 32px;
}
.trk-about-page .catalogue__track::-webkit-scrollbar { display: none; }
.trk-about-page .catalogue__track .product-card {
    flex: 0 0 calc(70% - 10px);
    scroll-snap-align: start;
    min-width: 0;
}
@media (min-width: 600px) {
    .trk-about-page .catalogue__track .product-card { flex: 0 0 calc(45% - 10px); }
}
@media (min-width: 900px) {
    .trk-about-page .catalogue__track .product-card { flex: 0 0 calc(33.333% - 14px); }
}
@media (min-width: 1200px) {
    .trk-about-page .catalogue__track { gap: 24px; }
    .trk-about-page .catalogue__track .product-card { flex: 0 0 calc(25% - 18px); }
}

.trk-about-page .product-card__media--photo {
    background: var(--grey-100);
    padding: 0 !important;
    align-items: stretch !important;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}
.trk-about-page .product-card__media--photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.4s ease;
    display: block;
}
.trk-about-page .product-card:hover .product-card__media--photo img {
    transform: scale(1.04);
}

.trk-about-page .slider-arrow {
    position: absolute; top: 38%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: grid; place-items: center;
    z-index: 2; cursor: pointer;
    transition: all 0.2s;
    color: #131313;
}
.trk-about-page .slider-arrow:hover {
    background: #131313; color: #fff;
    border-color: #131313;
    transform: translateY(-50%) scale(1.05);
}
.trk-about-page .slider-arrow:disabled {
    opacity: 0; pointer-events: none;
}
.trk-about-page .slider-arrow--prev { left: -16px; }
.trk-about-page .slider-arrow--next { right: -16px; }
@media (min-width: 1300px) {
    .trk-about-page .slider-arrow--prev { left: -24px; }
    .trk-about-page .slider-arrow--next { right: -24px; }
}
@media (max-width: 768px) {
    .trk-about-page .slider-arrow { display: none; }
}

.trk-about-page .product-card__price ins { text-decoration: none; background: none; }
.trk-about-page .product-card__price del {
    color: #737373 !important;
    font-weight: 500;
    margin-right: 8px;
    text-decoration: line-through;
}
.trk-about-page .product-card__price .woocommerce-Price-amount {
    font-weight: 700;
    color: #131313;
}
