/** Shopify CDN: Minification failed

Line 895:25 Unexpected "{"
Line 895:34 Expected ":"
Line 905:25 Unexpected "{"
Line 905:34 Expected ":"
Line 922:25 Unexpected "{"
Line 922:34 Expected ":"
Line 926:25 Unexpected "{"
Line 926:34 Expected ":"
Line 931:25 Unexpected "{"
Line 931:34 Expected ":"
... and 28 more hidden warnings

**/
:root {
  --colour-accent: #52DBC7;
  --colour-dark: #050505;
  --colour-black: #000;
  --colour-white: #fff;
  --colour-ink: #101010;
  --colour-muted: #6d6d6d;
  --colour-border: #e8e8e8;
  --colour-surface: #f6f6f6;
  --page-width: 1480px;
  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--colour-ink);
  background: var(--colour-white);
  font-family: var(--font-body);
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 9999;
  background: var(--colour-accent);
  color: var(--colour-black);
  padding: 10px 16px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.page-width {
  width: min(var(--page-width), calc(100% - 48px));
  margin-inline: auto;
}
.section-spacing { padding: 54px 0; }
.section-spacing-tight { padding: 32px 0; }

.button,
.shopify-payment-button__button,
.product-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--colour-accent);
  background: var(--colour-accent);
  color: var(--colour-black);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Bebas Neue';
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover,
.product-form__submit:hover { transform: translateY(-1px); }
.button--outline {
  background: transparent;
  color: var(--colour-white);
  border-color: rgba(255,255,255,.65);
}
.button--outline:hover {
  background: var(--colour-white);
  color: var(--colour-black);
}
.button--dark {
  background: var(--colour-black);
  color: var(--colour-white);
  border-color: var(--colour-black);
}
.link-arrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.link-arrow::after { content: '→'; color: var(--colour-accent); }

.announcement-bar {
  background: #52DBC7;
  color: var(--colour-black);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--colour-black);
  color: var(--colour-white);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.site-header__nav a,
.site-header__actions a {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-family: "Bebas Neue", sans-serif;
}
.site-header__nav a:hover,
.site-header__actions a:hover { color: var(--colour-accent); }
.site-header__logo {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: .02em;
  line-height: .85;
  text-transform: uppercase;
}
.site-header__logo span {
  display: block;
  color: var(--colour-accent);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .55em;
  margin-top: 8px;
  font-weight: 900;
}
.site-header__logo img {
  max-width: var(--logo-width, 190px);
  margin-inline: auto;
}
.site-header__actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
.mobile-menu-button { display: none; }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: 4px;
  border-radius: 99px;
  background: var(--colour-accent);
  color: #000;
  font-size: 11px;
}

.hero-menace {
  min-height: var(--hero-height, 640px);
  position: relative;
  color: var(--colour-white);
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.34), rgba(0,0,0,.86)),
    var(--hero-image),
    radial-gradient(circle at 30% 20%, #1d1d1d, #000 55%);
  background-size: cover;
  background-position: center;
}
.hero-menace::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 72%, rgba(0,0,0,.75));
}
.hero-menace__inner {
  min-height: inherit;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 70px 0;
}
.hero-menace__eyebrow,
.split-feature__eyebrow {
  color: var(--colour-accent);
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family:Bebas Neue,sans-serif;
}
.hero-menace__title {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(58px, 10vw, 126px);
  line-height: .86;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.hero-menace__subtitle {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.82);
  font-size: 17px;
}
.hero-menace__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 34px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}
.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 54px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.section-title--centre { text-align: center; }
.section-text {
  max-width: 620px;
  color: var(--colour-muted);
  margin: 10px 0 0;
}

.category-circles {
  background: var(--colour-white);
}
.category-circles__grid {
  display: grid;
  grid-template-columns: repeat(var(--columns, 6), minmax(110px, 1fr));
  gap: 28px;
  align-items: start;
}
.category-card {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  font-family:"Bebas Neue", sans-serif;
}
.category-card__image {
  width: min(100%, 172px);
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  background: #111;
  border: 4px solid #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
  transition: transform .2s ease;
}
.category-card:hover .category-card__image { transform: translateY(-4px); }
.category-card__image img { width: 100%; height: 100%; object-fit: cover; }
.category-card__placeholder {
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 20%, #333, #050505 65%);
  display: grid;
  place-items: center;
  color: var(--colour-accent);
  font-family: var(--font-heading);
  font-size: 28px;
}

.marquee-strip {
  overflow: hidden;
  background: var(--colour-black);
  color: var(--colour-white);
  border-block: 1px solid rgba(255,255,255,.12);
}

.marquee-strip__track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-speed, 25s) linear infinite;
}

.marquee-strip__item {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px 26px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 52px);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.28);
}

.marquee-strip__brand {
  display: inline-flex;
  align-items: center;
  min-width: var(--marquee-logo-width, 150px);
}

.marquee-strip__logo {
  width: var(--marquee-logo-width, 150px);
  max-height: 52px;
  object-fit: contain;
  /*opacity: .45;
  filter: grayscale(1);*/
}

.marquee-strip__logo-text {
  color: rgba(255,255,255,.28);
}

.marquee-strip__item strong {
  color: var(--colour-accent);
  font-size: 33px;
  letter-spacing: .08em;
  font-family: 'Bebas Neue';
  font-weight: 600;
}

.marquee-strip--pause-hover:hover .marquee-strip__track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns, 4), minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  position: relative;
  background: #fff;
  display: grid;
  gap: 12px;
}
.product-card__media {
  position: relative;
  background: #eee;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.product-card__media img,
.product-card__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-card__badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  background: var(--colour-black);
  color: var(--colour-white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 8px;
}
.product-card__quick {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
}
.quick-add-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--colour-black);
  color: var(--colour-white);
  cursor: pointer;
  font-weight: 900;
}
.product-card__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.product-card__price {
  font-weight: 900;
  font-size: 14px;
}
.product-card__vendor {
  color: var(--colour-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.product-placeholder-card {
  min-height: 310px;
  background: linear-gradient(135deg, #ececec, #f8f8f8);
  display: grid;
  align-content: end;
  padding: 16px;
}

.split-feature {
  color: var(--colour-white);
}
.split-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  background: var(--colour-black);
  min-height: 520px;
}
.split-feature__image {
  background: var(--split-image), linear-gradient(135deg, #222, #000);
  background-size: cover;
  background-position: center;
  min-height: 430px;
}
.split-feature__content {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 80px);
}
.split-feature__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 82px);
  line-height: .9;
  text-transform: uppercase;
}
.split-feature__copy {
  margin: 20px 0 28px;
  color: rgba(255,255,255,.74);
  max-width: 420px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.instagram-tile {
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}
.instagram-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.instagram-tile:hover img { transform: scale(1.04); }
.instagram-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--colour-accent);
  font-family: var(--font-heading);
  font-size: 38px;
}

.trust-bar {
  background: var(--colour-black);
  color: var(--colour-white);
  padding: 28px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}
.trust-item__icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--colour-accent);
  color: var(--colour-accent);
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 900;
}
.trust-item strong {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .06em;
}
.trust-item span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  margin-top: 2px;
}

.site-footer {
  background: #050505;
  color: var(--colour-white);
  padding: 56px 0 22px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 46px;
}
.site-footer__logo {
  font-family: var(--font-heading);
  font-size: 38px;
  text-transform: uppercase;
  line-height: .9;
}
.site-footer__logo span {
  display: block;
  color: var(--colour-accent);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .42em;
  margin-top: 8px;
  font-weight: 900;
}
.site-footer h3 {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
}
.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255,255,255,.67);
  font-size: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a:hover { color: var(--colour-accent); }
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 52px;
  margin-top: 18px;
}
.newsletter-form input {
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  min-height: 48px;
  padding: 0 14px;
}
.newsletter-form button {
  border: 0;
  background: var(--colour-accent);
  color: #000;
  font-weight: 900;
  cursor: pointer;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 46px;
  padding-top: 20px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}
.social-links { display: flex; gap: 16px; margin-top: 22px; }
.social-links a { color: #fff; font-weight: 900; text-transform: uppercase; font-size: 12px; }

.template-page .rte,
.main-page,
.main-404,
.main-search,
.main-cart,
.main-product,
.main-collection { padding: 52px 0; }
.rte { max-width: 850px; }
.rte a { text-decoration: underline; }

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  align-items: end;
}
.collection-toolbar p { color: var(--colour-muted); margin: 8px 0 0; }
.pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.pagination a,
.pagination span {
  padding: 10px 13px;
  border: 1px solid var(--colour-border);
  font-weight: 800;
}

.main-product__grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 52px;
  align-items: start;
}
.product-gallery {
  display: grid;
  gap: 14px;
}
.product-gallery__main {
  background: var(--colour-surface);
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product-gallery img { width: 100%; height: auto; }
.product-info__vendor {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--colour-accent);
  font-weight: 900;
  font-size: 13px;
}
.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 80px);
  line-height: .9;
  text-transform: uppercase;
  margin: 12px 0 18px;
}
.product-info__price {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 24px;
}
.product-form { display: grid; gap: 18px; margin: 24px 0; }
.product-form label { font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.product-form select,
.product-form input[type='number'],
.search-form input {
  width: 100%;
  border: 1px solid var(--colour-border);
  min-height: 48px;
  padding: 0 12px;
  background: #fff;
}
.product-form__submit { width: 100%; }
.product-description { color: #444; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th,
.cart-table td { border-bottom: 1px solid var(--colour-border); padding: 16px 10px; text-align: left; }
.cart-table th { text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.cart-actions { display: flex; justify-content: flex-end; gap: 14px; margin-top: 24px; }
.cart-total { text-align: right; font-size: 24px; font-weight: 900; margin-top: 24px; }
.search-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-bottom: 32px; max-width: 680px; }

@media (max-width: 1120px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-circles__grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .site-header__nav { display: none; }
  .mobile-menu-button { display: inline-flex; background: transparent; border: 0; color: #fff; font-weight: 900; text-transform: uppercase; }
  .site-header__inner { grid-template-columns: 1fr auto 1fr; }
}

@media (max-width: 820px) {
  .page-width { width: min(var(--page-width), calc(100% - 30px)); }
  .site-header__inner { min-height: 74px; }
  .site-header__actions a:not(.cart-link) { display: none; }
  .hero-menace { min-height: 560px; }
  .hero-menace__buttons { flex-direction: column; align-items: center; }
  .button { width: min(100%, 320px); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .split-feature__grid { grid-template-columns: 1fr; }
  .split-feature__content { order: 2; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .main-product__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .section-spacing { padding: 42px 0; }
  .category-circles__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid,
  .site-footer__grid { grid-template-columns: 1fr; }
  .collection-toolbar,
  .section-header { display: block; }
  .link-arrow { margin-top: 14px; }
  .cart-table thead { display: none; }
  .cart-table tr,
  .cart-table td { display: block; }
}


.shop-style-editorial {
  background: var(--section-bg);
  color: var(--section-text);
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  overflow: hidden;
}

.shop-style-editorial__inner {
  width: min(100% - 32px, 1500px);
  margin: 0 auto;
}

.shop-style-editorial__header {
  text-align: center;
  margin-bottom: 34px;
}

.shop-style-editorial__eyebrow {
  margin: 0 0 8px;
  color: var(--section-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.shop-style-editorial__header h2 {
  margin: 0;
  color: var(--section-text);
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: 3em;
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.shop-style-editorial__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.shop-style-editorial__tile {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #111;
  color: #fff;
  text-decoration: none;
}

.shop-style-editorial__tile:first-child {
  min-height: 500px;
}

.shop-style-editorial__tile:nth-child(3) {
  min-height: 470px;
}

.shop-style-editorial__image-wrap,
.shop-style-editorial__placeholder {
  position: absolute;
  inset: 0;
}

.shop-style-editorial__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.shop-style-editorial__placeholder svg {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  opacity: .35;
}

.shop-style-editorial__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.42) 48%, rgba(0,0,0,.08) 100%),
    linear-gradient(to right, rgba(0,0,0,.34), rgba(0,0,0,0));
  transition: opacity .3s ease;
}

.shop-style-editorial__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.shop-style-editorial__content h3 {
  margin: 0 0 7px;
  color: #fff;
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: .86;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.shop-style-editorial__content p {
  margin: 0 0 16px;
  color: var(--section-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shop-style-editorial__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--section-accent);
  color: var(--section-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.shop-style-editorial__tile:hover .shop-style-editorial__image {
  transform: scale(1.06);
  filter: contrast(1.08);
}

.shop-style-editorial__tile:hover .shop-style-editorial__button {
  background: var(--section-accent);
  color: #000;
  transform: translateX(3px);
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 9998;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 430px);
  height: 100vh;
  background: #050505;
  color: #fff;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(16,200,195,.45);
  /**box-shadow: -20px 0 60px rgba(0,0,0,.45);**/
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer.is-open {
  transform: translateX(0);
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__header p {
  margin: 0 0 8px;
  color: var(--rd-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__header h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: 44px;
  line-height: .9;
  text-transform: uppercase;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 28px;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__empty {
  margin: 0;
  color: rgba(255,255,255,.7);
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-item__image {
  width: 86px;
  height: 104px;
  background: #f3f3f3;
  object-fit: contain;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-item__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-item__variant {
  margin: 7px 0 0;
  color: var(--rd-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 800;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__footer {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  background: var(--rd-accent);
  color: #000;
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: 22px;
  text-transform: uppercase;
  text-decoration: none;
}

#RacingDivisionShowcase-{{ section.id }} .rd-cart-drawer__view-cart {
  display: block;
  margin-top: 14px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: underline;
}

body.rd-cart-open {
  overflow: hidden;
}

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
  color: var(--colour-white);
  padding: 76px 0 26px;
}

.site-footer__media,
.site-footer__video,
.site-footer__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-footer__video,
.site-footer__image {
  object-fit: cover;
  object-position: var(--footer-video-position, center center);
}

.site-footer__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,var(--footer-overlay-opacity)), rgba(0,0,0,.96)),
    radial-gradient(circle at 80% 20%, rgba(16,200,195,.16), transparent 36%);
}

.site-footer__content {
  position: relative;
  z-index: 2;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 46px;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 38px;
  text-transform: uppercase;
  line-height: .9;
  color: #fff;
  text-decoration: none;
}

.site-footer__logo img {
  max-width: 220px;
  height: auto;
}

.site-footer__logo span {
  display: block;
  color: var(--colour-accent);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .42em;
  margin-top: 8px;
  font-weight: 900;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--colour-accent);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 52px;
  margin-top: 18px;
}

.newsletter-form input {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  min-height: 48px;
  padding: 0 14px;
}

.newsletter-form button {
  border: 0;
  background: var(--colour-accent);
  color: #000;
  font-weight: 900;
  cursor: pointer;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 46px;
  padding-top: 20px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}



@media (max-width: 820px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 56px 0 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}


@media screen and (max-width: 1300px) {
  .shop-style-editorial__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-style-editorial__tile,
  .shop-style-editorial__tile:first-child,
  .shop-style-editorial__tile:nth-child(3) {
    min-height: 430px;
  }
}

@media screen and (max-width: 900px) {
  .shop-style-editorial__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-style-editorial__tile,
  .shop-style-editorial__tile:first-child,
  .shop-style-editorial__tile:nth-child(3) {
    min-height: 390px;
  }

  .shop-style-editorial__content h3 {
    font-size: 38px;
  }
}

@media screen and (max-width: 560px) {
  .shop-style-editorial {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .shop-style-editorial__inner {
    width: min(100% - 24px, 1500px);
  }

  .shop-style-editorial__header {
    text-align: left;
    margin-bottom: 24px;
  }

  .shop-style-editorial__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shop-style-editorial__tile,
  .shop-style-editorial__tile:first-child,
  .shop-style-editorial__tile:nth-child(3) {
    min-height: 380px;
  }

  .shop-style-editorial__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .shop-style-editorial__content h3 {
    font-size: 38px;
  }
}


/* Global product cards, option 1 */
.menace-product-card {
  position: relative;
  display: grid;
  gap: 12px;
  background: #fff;
}

.menace-product-card__media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1.18;
  background: #f2f2f2;
  overflow: hidden;
}

.menace-product-card__media img,
.menace-product-card__media svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}

.menace-product-card:hover .menace-product-card__media img {
  transform: scale(1.035);
}

.menace-product-card__info {
  min-height: 86px;
}

.menace-product-card__vendor {
  margin-bottom: 5px;
  color: #8b8b8b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menace-product-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.menace-product-card__title a {
  color: #000;
  text-decoration: none;
}

.menace-product-card__price {
  margin-top: 6px;
  color: #000;
  font-size: 15px;
  font-weight: 900;
}

.menace-product-card__price s {
  color: #777;
  font-weight: 500;
  margin-left: 6px;
}

.menace-product-card__quick-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 42px;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.menace-product-card__quick-add:hover {
  background: var(--colour-accent, #52DBC7);
  border-color: var(--colour-accent, #52DBC7);
  color: #000;
}

.menace-product-card__quick-add:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.product-card__quick {
  display: none !important;
}

/* Product variant modal */
.menace-modal-overlay,
.menace-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.menace-modal-overlay {
  z-index: 9996;
}

.menace-cart-overlay {
  z-index: 9998;
}

.menace-modal-overlay.is-open,
.menace-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menace-variant-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(92vw, 820px);
  max-height: 90vh;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  background: #050505;
  border: 1px solid rgba(16,200,195,.65);
  color: #fff;
  transform: translate(-50%, -46%) scale(.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  z-index: 9997;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}

.menace-variant-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.menace-variant-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  background: #050505;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.menace-variant-modal__image-wrap {
  min-height: 520px;
  background: #f3f3f3;
  display: grid;
  place-items: center;
}

.menace-variant-modal__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menace-variant-modal__content {
  padding: 52px 42px 42px;
  overflow-y: auto;
}

.menace-variant-modal__eyebrow {
  margin: 0 0 12px;
  color: var(--colour-accent, #52DBC7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.menace-variant-modal__content h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: 35px;
  line-height: .9;
  text-transform: uppercase;
}

.menace-variant-modal__price {
  margin: 18px 0 28px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.menace-variant-modal__option-group {
  margin-bottom: 24px;
}

.menace-variant-modal__option-title {
  margin: 0 0 10px;
  color: var(--colour-accent, #52DBC7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.menace-variant-modal__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menace-variant-modal__option-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.menace-variant-modal__option-button.is-selected {
  border-color: var(--colour-accent, #52DBC7);
  background: var(--colour-accent, #52DBC7);
  color: #000;
}

.menace-variant-modal__option-button.is-disabled {
  opacity: .32;
  cursor: not-allowed;
  text-decoration: line-through;
}

.menace-variant-modal__add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 56px;
  padding: 0 22px;
  background: var(--colour-accent, #52DBC7);
  border: 1px solid var(--colour-accent, #52DBC7);
  color: #000;
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: 22px;
  text-transform: uppercase;
  cursor: pointer;
}

.menace-variant-modal__add:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.menace-variant-modal__message {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--colour-accent, #52DBC7);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Cart drawer */
.menace-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 450px);
  height: 100dvh;
  background: #050505;
  color: #fff;
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(16,200,195,.45);
  /**box-shadow: -20px 0 60px rgba(0,0,0,.45);**/
}

.menace-cart-drawer.is-open {
  transform: translateX(0);
}

.menace-cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.menace-cart-drawer__header p {
  margin: 0 0 8px;
  color: var(--colour-accent, #52DBC7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.menace-cart-drawer__header h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: 44px;
  line-height: .9;
  text-transform: uppercase;
}

.menace-cart-drawer__close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.menace-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 28px;
}

.menace-cart-drawer__empty {
  margin: 0;
  color: rgba(255,255,255,.7);
}

.menace-cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.menace-cart-item__image {
  width: 86px;
  height: 104px;
  background: #f3f3f3;
  object-fit: contain;
}

.menace-cart-item__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.menace-cart-item__variant {
  margin: 7px 0 0;
  color: var(--colour-accent, #52DBC7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.menace-cart-item__price {
  margin: 10px 0 0;
  font-weight: 900;
}

.menace-cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.menace-cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
}

.menace-cart-item__qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.menace-cart-item__qty span {
  min-width: 34px;
  text-align: center;
  font-weight: 900;
}

.menace-cart-item__remove {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
}

.menace-cart-drawer__footer {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.menace-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.menace-cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  background: var(--colour-accent, #52DBC7);
  color: #000;
  font-family: var(--font-heading, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif);
  font-size: 22px;
  text-transform: uppercase;
  text-decoration: none;
}

.menace-cart-drawer__view-cart {
  display: block;
  margin-top: 14px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: underline;
}

body.menace-modal-open,
body.menace-cart-open {
  overflow: hidden;
}



@media screen and (max-width: 749px) {
  .menace-variant-modal {
    grid-template-columns: 1fr;
    width: min(94vw, 520px);
    max-height: 88vh;
    overflow-y: auto;
  }

  .menace-variant-modal__image-wrap {
    min-height: 320px;
  }

  .menace-variant-modal__content {
    padding: 34px 22px 28px;
  }
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 46px;
  padding-top: 20px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.site-footer__bottom-right {
  text-align: right;
}

.site-footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.site-footer__payment-icon {
  width: 38px;
  height: auto;
  display: block;
}

@media (max-width: 720px) {
  .site-footer__bottom {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .site-footer__payment-icons {
    justify-content: flex-start;
  }

  .site-footer__bottom-right {
    text-align: left;
  }
}

.menace-cart-drawer {
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.menace-cart-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.menace-cart-drawer__footer {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  background: #050505;
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

@media screen and (max-width: 1024px) {
  .menace-cart-drawer,
  .rd-cart-drawer {
    box-shadow: none !important;
  }
}

