/** Shopify CDN: Minification failed

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

**/
/* ==========================================================================
   ARI & EMILY – Custom Horizon Theme Overrides
   Matches the homepage design in 1__Homepage.png
   ========================================================================== */

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --ae-black:        #0d0d0d;
  --ae-dark:         #111111;
  --ae-dark-mid:     #1a1a1a;
  --ae-mid:          #222222;
  --ae-light-dark:   #2a2a2a;
  --ae-white:        #ffffff;
  --ae-off-white:    #f5f5f5;
  --ae-teal:         #10D0FF;
  --ae-teal-hover:   #00aad4ff;
  --ae-gold:         #f5a623;
  --ae-red:          #e84040;
  --ae-eyebrow:      #e84040;

  --ae-font-display: 'Cairo';
  --ae-font-body:    'Open Sans';

  --ae-easing:       cubic-bezier(0.16, 1, 0.3, 1);
  --ae-transition:   0.3s var(--ae-easing);

  --page-width:       1280px;
  --page-gutter:      clamp(1.25rem, 4vw, 3rem);
}

/* ─── GOOGLE FONTS IMPORT ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ─── GLOBAL RESETS ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--ae-font-body);
  background: var(--ae-black);
  color: var(--ae-white);
  margin: 0;
}

.page-width {
  max-width: var(--page-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* ─── SHARED BUTTONS ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: Cairo, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--ae-transition), color var(--ae-transition), border-color var(--ae-transition), transform var(--ae-transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
    background: var(--ae-white);
    color: #1C1B1B;
    padding: .75rem 2.5rem;
    font-size: 16px;
    border: 1px solid #fff;
    transition: all 0.5s ease-in-out;
}
.btn--primary:hover {
    background: transparent;
    color: #fff;
}


.btn--primary-sm {
    background: #10D0FF;
    border: 1px solid #10D0FF;
    color: #1C1B1B;
    border-color: var(--ae-white);
    padding: 11px 27px;
    font-size: 0.8rem;
    font-family: 'Cairo';
    transition: all 0.5s ease-in-out;
}
.btn--primary-sm:hover {
    background: transparent;
    color: #10D0FF;
}

.btn--outline {
  background: transparent;
  border-color: var(--ae-white);
  color: var(--ae-white);
  padding: .6rem 1.2rem;
  font-size: .75rem;
}
.btn--outline:hover { background: var(--ae-white); color: var(--ae-black); }

.btn--outline-white {
  background: transparent;
  border-color: var(--ae-white);
  color: var(--ae-white);
  padding: .7rem 1.5rem;
  font-size: .8rem;
}
.btn--outline-white:hover { background: var(--ae-white); color: var(--ae-black); }

.btn--teal {
    background: #10D0FF;
    color: #1C1B1B;
    padding: .75rem 1.75rem;
    font-size: .85rem;
    border-color: #10D0FF;
        border: 1px solid;
        transition: all 0.4s ease-in-out;
}
.btn--teal:hover { background: transparent; color:  #10D0FF; }

/* ==========================================================================
   SECTION: HERO
   ========================================================================== */
.custom-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media,
.hero__image,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image--placeholder {
  background: var(--ae-mid);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #1E1D1D 0%, #1E1D1D66 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 93%;
    max-width: 1425px;
    margin: 0px auto 0px;
}

.hero__eyebrow {
  font-family: var(--ae-font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ae-teal);
  margin: 0 0 .75rem;
}

.hero__heading {
    font-family: Cairo, sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.1;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.25rem;
}

.hero__subtext {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 2rem;
    font-family: "Open Sans", sans-serif;
}

/* ==========================================================================
   SECTION: TICKER
   ========================================================================== */
.custom-ticker {
  background: var(--ae-mid);
  padding-block: .7rem;
  overflow: hidden;
  position: relative;
}

/* ── Viewport clips the scrolling content ── */
.ticker__viewport {
  overflow: hidden;
  width: 100%;
}

/*
  ── Belt: holds Set A + Set B side by side ──
  The belt is 200% wide (Set A + Set B, each 100%).
  Animation moves it left by exactly 50% of its own width
  which equals 100% of one set — perfect seamless loop,
  zero gaps, zero overlaps.
*/
.ticker__belt {
  display: flex;
  width: max-content;           /* shrink-wraps both sets */
  will-change: transform;
  animation: ticker-loop 30s linear infinite;
}

/* Pause on hover (optional nice touch) */
.custom-ticker:hover .ticker__belt {
  animation-play-state: paused;
}

@keyframes ticker-loop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Each set is a flex row of items ── */
.ticker__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker__item {
    font-family: var(--ae-font-display);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--ae-white);
    padding-inline: 1.5rem;
}

.ticker__sep {
  color: var(--ae-teal);
  font-size: .65rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION: CHOOSE YOUR PATH
   ========================================================================== */
.custom-choose-path {
  background: var(--ae-white);
  color: var(--ae-black);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.choose-path__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.choose-path__eyebrow {
font-family: Cairo, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #E54B4D;
    margin: 0 0 .5rem;
}

.choose-path__heading {
    font-family: Cairo, sans-serif;
    font-weight: 900;
    font-size: 4.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E2C2C;
    margin: 0 0 .5rem;
}

.choose-path__subtext {
    font-size: 1rem;
    color: #2E2C2C;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    margin-top: 11px;
    font-weight: 600;
}

.choose-path__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 680px) {
  .choose-path__cards { grid-template-columns: 1fr; }
}

.choose-path__card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
}

.choose-path__card-media,
.choose-path__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ae-easing);
}

.choose-path__card:hover .choose-path__card-img {
  transform: scale(1.04);
}

.choose-path__card-img--placeholder {
  background: var(--ae-mid);
}

.choose-path__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1E1D1D33 0%, #1E1D1D 80%);
}

.choose-path__card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.choose-path__card-title {
    font-family: Cairo, sans-serif;
    font-weight: 900;
    font-size: 3.4rem;
    text-transform: uppercase;
    color: var(--ae-white);
    margin: 0 0 .3rem;
}
a.choose-path__card-btn {
    background-color: #fff;
    display: table;
    width: fit-content;
    font-family: Cairo, sans-serif;
    font-weight: 800;
    color: #1E1D1D;
    padding: 8px 25px;
    margin-bottom: 10px;
    border: 1px solid #fff;
    transition: all 0.5s ease-in-out;
}
a.choose-path__card-btn:hover{
  background-color: transparent;
  color: #fff;
}

.choose-path__card-subtitle {
    font-size: 1rem;
    color: #fff;
    margin: 0 0 1rem;
    font-family: "Open Sans", sans-serif;
}

/* ==========================================================================
   SECTION: BEHIND YOUR RESULTS
   ========================================================================== */
.custom-behind-results {
  background: #2E2C2C;
  overflow: hidden;
  padding: 5% 0px;
}

.behind-results__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    width: 93%;
    max-width: 1425px;
    margin: 0px auto 0px;
}

@media (max-width: 768px) {
  .behind-results__inner { grid-template-columns: 1fr; }
}

.behind-results__content {
  display: flex;
  flex-direction: column;
}

.behind-results__eyebrow {
    letter-spacing: 0.1em;
    margin: 0 0 .75rem;
    font-family: Cairo, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #E54B4D;
}

.behind-results__heading {
    font-family: 'Cairo';
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ae-white);
    margin: 0 0 1.25rem;
}

.behind-results__body {
    font-size: 1rem;
    line-height: 1.7;
    color: #A7A7A7;
    margin-bottom: 2rem;
    font-family: 'Open Sans';
    padding-right: 9%;
}

a.behind-results__btn {
    background-color: #10D0FF;
    color: #1C1B1B;
    font-family: 'Cairo';
    display: table;
    width: fit-content;
    font-size: 13px;
    font-weight: 800;
    padding: 11px 26px;
    border: 1px solid #10D0FF;
    transition: all 0.5s ease-in-out;
}
a.behind-results__btn:hover{
  color: #10D0FF;
  background-color: transparent;
}

.behind-results__media {
  position: relative;
  overflow: hidden;
}

.behind-results__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.behind-results__img--placeholder {
  background: var(--ae-mid);
  min-height: 400px;
}

/* ==========================================================================
   SECTION: SHOP CATEGORIES
   ========================================================================== */
.custom-shop-categories {
  background: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.shop-categories__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.shop-categories__eyebrow {
    letter-spacing: 0.1em;
    margin: 0 0 .75rem;
    font-family: Cairo, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #E54B4D;
}

.shop-categories__heading {
    font-family: 'Cairo';
    font-weight: 900;
    font-size: 4.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2E2C2C;
    margin: 0;
}

.shop-categories__header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 16px;
}

.shop-categories__subtext {
    font-size: 0.9rem;
    color: #2E2C2C;
    margin: 0;
    max-width: 280px;
    font-family: 'Open Sans';
    font-weight: 600;
    padding-right: 40px;
}

.shop-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 70px 0px 0px;
}

@media (max-width: 900px) {
  .shop-categories__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .shop-categories__grid { grid-template-columns: 1fr; }
}

.shop-categories__tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.shop-categories__tile-media,
.shop-categories__tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ae-easing);
}

.shop-categories__tile:hover .shop-categories__tile-img {
  transform: scale(1.06);
}

.shop-categories__tile-img--placeholder {
  background: var(--ae-mid);
}

.shop-categories__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1E1D1D33 0%, #1E1D1D 100%);
}

.shop-categories__tile-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.shop-categories__tile-title {
    font-family: 'Cairo';
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--ae-white);
    margin: 0 0 .2rem;
}

.shop-categories__tile-subtitle {
    font-size: 1rem;
    color: #A7A7A7;
    margin: 0 0 .6rem;
}

.shop-categories__tile-link {
    font-family: 'Cairo';
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #10D0FF;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.4s ease-in-out;
}
.shop-categories__tile-link:hover {
    color: #e54c4d;
}

/* ==========================================================================
   SECTION: BEST SELLERS
   ========================================================================== */
.custom-best-sellers {
  background: var(--ae-white);
  color: var(--ae-black);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.best-sellers__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.best-sellers__heading {
    font-family: 'Cairo';
    font-weight: 800;
    font-size: 4rem;
    text-transform: uppercase;
    color: #2E2C2C;
    margin: 0;
}

.best-sellers__subtext {
    font-size: 0.9rem;
    color: #2E2C2C;
    margin: 0;
    max-width: 280px;
    font-family: 'Open Sans';
    font-weight: 600;
    padding-right: 40px;
}

.best-sellers__header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.best-sellers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .best-sellers__grid { grid-template-columns: repeat(2, 1fr); }
}

.best-sellers__item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.best-sellers__item-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ae-off-white);
  margin-bottom: .6rem;
}

.best-sellers__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ae-easing);
}

.best-sellers__item:hover .best-sellers__item-img {
  transform: scale(1.04);
}

.best-sellers__item-img--placeholder {
  background: #ddd;
  width: 100%;
  height: 100%;
}

.best-sellers__item-title {
    font-family: 'Cairo';
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #2E2C2C;
    margin: 0px;
    line-height: 1;
}

.best-sellers__item-price {
    font-size: 1rem;
    color: #1C1B1B;
    margin: 0;
    font-family: 'Cairo';
    font-weight: 800;
}

/* ==========================================================================
   SECTION: TESTIMONIALS
   ========================================================================== */
.custom-testimonials {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.testimonials__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__bg-overlay {
  position: absolute;
  inset: 0;
  background: #1C1B1B;
}
.testimonials__quote {
    background-color: #2E2C2C;
    padding: 2rem;
}

.testimonials__inner {
  position: relative;
  z-index: 2;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
h2.testimonials__quote-tittle {
    font-family: 'Cairo';
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 2.5rem;
    margin: 0px;
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .testimonials__quote--left { order: 2; }
  .testimonials__center      { order: 1; }
  .testimonials__quote--right{ order: 3; }
}

.testimonials__quote-text {
    font-size: 1rem;
    font-family: 'Open Sans';
    font-weight: 400;
    color: #A7A7A7;
    line-height: 1.3;
    margin: 0 0 2rem;
}

.testimonials__stars {
    display: block;
    margin: 16px 0px 16px;
}
span.star {
    display: inline-block;
    margin-right: 1px;
}
span.star svg {
    width: 20px;
}
.testimonials__author {
    font-family: 'Cairo';
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 .15rem;
}

.testimonials__author-detail {
    font-size: 11px;
    color: #A7A7A7;
    margin: 0;
    font-family: 'Open Sans';
}

.testimonials__center {
  text-align: center;
  min-width: 240px;
}

.testimonials__eyebrow {
    letter-spacing: 0.1em;
    margin: 0 0 .75rem;
    font-family: Cairo, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #E54B4D;
}

.testimonials__heading {
    font-family: 'Cairo';
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 5rem;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--ae-white);
    margin: 0 0 2rem;
}
.testimonials__center .textmdlle {
    color: #A7A7A7;
    font-family: 'Open Sans';
    font-size: 1rem;
}
.testimonials__btn {
    background: #10D0FF;
    color: #1C1B1B;
    padding: 11px 38px;
    font-size: 0.8rem;
    font-family: 'Cairo';
    font-weight: 800;
    border: 1px solid #10D0FF;
    margin: 30px auto 0px;
    display: table;
    transition: all 0.4s ease-in-out;
}
.testimonials__btn:hover{
  color: #10D0FF;
  background: transparent;
}
/* ==========================================================================
   SECTION: TRAINING HUB
   ========================================================================== */
.custom-training-hub {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.training-hub__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-hub__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
}

.training-hub__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.training-hub__eyebrow {
    letter-spacing: 0.1em;
    margin: 0 0 .75rem;
    font-family: Cairo, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #E54B4D;
}

.training-hub__heading {
font-family: 'Cairo';
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .95;
    letter-spacing: -.01em;
    text-transform: uppercase;
    color: var(--ae-white);
    margin: 0 0 2rem;
}

/* ==========================================================================
   SECTION: FAQ
   ========================================================================== */
.custom-faq {
  background: var(--ae-white);
  color: var(--ae-black);
  padding-block: clamp(3rem, 6vw, 5rem);
}
p.faq__heading__eyebrow {
    letter-spacing: 0.1em;
    margin: 0 0 .75rem;
    font-family: Cairo, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #E54B4D;
    text-align: center;
}
.faq__inner {
  max-width: 860px;
}

.faq__heading {
    font-family: 'Cairo';
    font-weight: 900;
    font-size: 4.5rem;
    text-transform: uppercase;
    color: #2E2C2C;
    text-align: center;
    margin: 0 0 2.5rem;
}

.faq__list {
  border-top: 1px solid #e0e0e0;
}

.faq__item {
  border-bottom: 1px solid #e0e0e0;
}

.faq__question {
    width: 100%;
    background: none;
    border: 0;
    padding: 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Cairo';
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #2E2C2C;
    text-align: left;
    transition: color var(--ae-transition);
}

.faq__question:hover { color: #E54B4D; }
.faq__item.is-open .faq__question { color: #E54B4D; }

.faq__icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
}

.faq__icon svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.faq__icon-minus { display: none; }
.faq__item.is-open .faq__icon-plus  { display: none; }
.faq__item.is-open .faq__icon-minus { display: block; }

.faq__answer {
  overflow: hidden;
}

.faq__answer-inner {
  padding-bottom: 1.2rem;
  font-size: .9rem;
  line-height: 1.7;
  color: #444;
}

.faq__answer-inner p {
    margin: 0 0 .75rem;
    font-family: 'Open Sans';
    color: #2E2C2C;
}
.faq__answer-inner p:last-child { margin-bottom: 0; }

/* ==========================================================================
   RESPONSIVE HELPERS
   ========================================================================== */
@media (max-width: 768px) {
  .behind-results__inner { grid-template-columns: 1fr; }
  .behind-results__media { aspect-ratio: 4/3; }
  .behind-results__img { position: static; width: 100%; height: auto; }
  .shop-categories__header { flex-direction: column; align-items: flex-start; }
  .best-sellers__header { flex-direction: column; align-items: flex-start; }
}
