/** Shopify CDN: Minification failed

Line 4640:0 Unexpected "}"

**/
/* ==========================================================
   TUNESXFP Custom Performance Theme Overrides
   Theme: Shopify Horizon
   Purpose: dark diesel performance styling, custom menu,
   homepage polish, product cards, footer, and product page UI.

   Notes:
   - Replace assets/custom-performance.css with this file after backing up.
   - Collection service-tag filtering should stay in snippets/list-filter.liquid.
     CSS cannot reliably use :has-text(), so that old invalid selector was removed.
   ========================================================== */

:root {
  --perf-black: #101010;
  --perf-charcoal: #1a1a1a;
  --perf-charcoal-2: #242424;
  --perf-red: #d72622;
  --perf-red-dark: #9f1715;
  --perf-white: #ffffff;
  --perf-silver: #d9d9d9;
  --perf-muted: #9b9b9b;
  --perf-border: #3a3a3a;
  --perf-soft-border: rgba(255, 255, 255, 0.12);
  --perf-red-glow: rgba(215, 38, 34, 0.28);
  --perf-card-radius: 16px;
}

/* ==========================================================
   1) Global base
   ========================================================== */

html {
  background: var(--perf-black);
}

body {
  background:
    radial-gradient(circle at top left, rgba(215, 38, 34, 0.12), transparent 32rem),
    linear-gradient(180deg, #151515 0%, #0f0f0f 42%, #171717 100%);
  color: var(--perf-white);
}

.content-for-layout {
  background: transparent;
}

.section,
.group-block,
.text-block,
.rte {
  color: var(--perf-white);
}

.rte p,
.rte li {
  color: var(--perf-silver);
}

a,
.link {
  color: var(--perf-red);
}

a:hover,
.link:hover {
  color: #ff4a45;
}

/* Red accent underline for section headings, but keep product title handled separately. */
.section h1::after,
.section h2::after,
.section h3::after,
.section .h1::after,
.section .h2::after,
.section .h3::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 0.25rem;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, var(--perf-red), var(--perf-red-dark));
  border-radius: 999px;
}

/* Subtle section divider. */
.shopify-section:not(:first-child) {
  position: relative;
}

.shopify-section:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--page-margin, 16px);
  right: var(--page-margin, 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 38, 34, 0.7), transparent);
  z-index: 2;
}

/* ==========================================================
   2) Header and navigation
   ========================================================== */

#header-group,
.header,
.header__row,
.header__underlay,
.header__underlay-closed,
.header__underlay-open {
  background: var(--perf-black) !important;
}

.header__row--top,
.header__row--bottom {
  border-bottom: 1px solid var(--perf-border) !important;
}

.header__columns {
  min-height: 72px;
}

.header a,
.header .header-actions__action,
.header .menu-list__link,
.header .button,
.header .button-secondary {
  color: var(--perf-white) !important;
}

.header a:hover,
.header .menu-list__link:hover,
.header .header-actions__action:hover {
  color: var(--perf-red) !important;
}

.header-logo,
.header-logo a {
  color: var(--perf-white) !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-actions__action {
  color: var(--perf-white) !important;
  border-radius: 999px;
}

.header-actions__action:hover {
  color: var(--perf-red) !important;
}

.header-actions__cart-icon .cart-bubble__background {
  background: var(--perf-red) !important;
}

/* Native Horizon menu fallback styling. */
#header-component {
  --perf-menu-panel-bg: #111111;
  --perf-menu-panel-bg-2: #191919;
  --perf-menu-border: rgba(255, 255, 255, 0.1);
  --perf-menu-muted: rgba(255, 255, 255, 0.66);
}

.header-menu .menu-list__link {
  position: relative;
  color: var(--perf-white) !important;
  font-weight: 900 !important;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-size: 0.82rem !important;
}

.header-menu .menu-list__link-title {
  padding-inline: 0.9rem;
}

.header-menu .menu-list__link::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.35rem;
  height: 3px;
  background: linear-gradient(90deg, var(--perf-red), var(--perf-red-dark));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.header-menu .menu-list__list-item:hover .menu-list__link::before,
.header-menu .menu-list__link--active::before {
  transform: scaleX(1);
}

.menu-list__submenu {
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--perf-menu-panel-bg-2), var(--perf-menu-panel-bg)) !important;
  border-top: 1px solid rgba(215, 38, 34, 0.45);
  border-bottom: 1px solid var(--perf-menu-border);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
}

.menu-list__submenu-inner {
  padding-block-start: 2.1rem !important;
  padding-block-end: 2.4rem !important;
}

.mega-menu__grid {
  gap: 1.25rem 2rem !important;
}

.mega-menu__column {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu__column:hover {
  border-color: rgba(215, 38, 34, 0.45);
  background: rgba(255, 255, 255, 0.055);
}

.mega-menu__link--parent {
  color: var(--perf-white) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem !important;
  padding-bottom: 0.65rem !important;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgba(215, 38, 34, 0.42);
}

.mega-menu__link:not(.mega-menu__link--parent) {
  color: var(--perf-menu-muted) !important;
  font-weight: 700 !important;
  font-size: 0.86rem !important;
  padding: 0.38rem 0 !important;
  transition: color 160ms ease, transform 160ms ease;
}

.mega-menu__link:not(.mega-menu__link--parent)::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--perf-red);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-menu__link:not(.mega-menu__link--parent):hover {
  color: var(--perf-white) !important;
  transform: translateX(3px);
}

.mega-menu__link:not(.mega-menu__link--parent):hover::before {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================
   3) Custom hardcoded performance menu
   snippets/custom-performance-menu.liquid
   ========================================================== */

.perf-desktop-menu {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0.2rem;
}

.perf-menu-item {
  display: flex;
  align-items: stretch;
}

.perf-menu-item > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0.9rem;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.perf-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.75rem;
  height: 3px;
  background: linear-gradient(90deg, var(--perf-red), var(--perf-red-dark));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.perf-menu-item:hover > a,
.perf-menu-item:focus-within > a {
  color: #fff !important;
}

.perf-menu-item:hover > a::after,
.perf-menu-item:focus-within > a::after {
  transform: scaleX(1);
}

.perf-mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.18), transparent 24rem),
    linear-gradient(180deg, #171717, #101010);
  border-top: 1px solid rgba(215, 38, 34, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45);
}

.perf-menu-has-dropdown:hover .perf-mega-menu,
.perf-menu-has-dropdown:focus-within .perf-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.perf-mega-inner {
  max-width: var(--page-width, 1400px);
  margin: 0 auto;
  padding: 2rem var(--page-margin, 40px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.perf-mega-menu--small .perf-mega-inner {
  grid-template-columns: minmax(240px, 420px);
}

.perf-mega-column {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.perf-mega-column:hover {
  border-color: rgba(215, 38, 34, 0.45);
  background: rgba(255, 255, 255, 0.055);
}

.perf-mega-column h3 {
  margin: 0 0 0.75rem;
  padding-bottom: 0.65rem;
  color: #fff !important;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(215, 38, 34, 0.42);
}

.perf-mega-column a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.68) !important;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.38rem 0;
  transition: color 160ms ease, transform 160ms ease;
}

.perf-mega-column a::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--perf-red);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.perf-mega-column a:hover {
  color: #fff !important;
  transform: translateX(3px);
}

.perf-mega-column a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.perf-mobile-menu {
  display: none;
  width: 100%;
  background: #0b0b0b;
  color: #fff;
}

.perf-mobile-menu a,
.perf-mobile-menu summary {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.perf-mobile-menu a {
  padding: 0.7rem 1rem 0.7rem 1.35rem;
  color: rgba(255, 255, 255, 0.72) !important;
}

.perf-mobile-menu summary {
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.perf-mobile-menu details details summary {
  padding-left: 1.35rem;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.035);
}

.perf-mobile-menu a:hover,
.perf-mobile-menu summary:hover,
.perf-mobile-menu details[open] > summary {
  color: var(--perf-red) !important;
}

/* Mobile drawer fallback. */
.header__drawer,
.menu-list--mobile {
  background: var(--perf-black) !important;
  color: var(--perf-white) !important;
}

.menu-list--mobile a {
  color: var(--perf-white) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.menu-list--mobile a:hover {
  color: var(--perf-red) !important;
}

@media screen and (max-width: 1180px) {
  .perf-desktop-menu,
  .perf-mega-menu {
    display: none !important;
  }
}

@media screen and (max-width: 749px) {
  .header__columns {
    min-height: 62px;
  }

  .header-logo {
    max-width: 180px;
  }
}

/* ==========================================================
   4) Buttons, forms, inputs
   ========================================================== */

.button,
button.shopify-payment-button__button--unbranded {
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark)) !important;
  color: var(--perf-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 24px rgba(215, 38, 34, 0.22) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
button.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background: linear-gradient(180deg, #f03631, var(--perf-red)) !important;
  color: var(--perf-white) !important;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 28px rgba(215, 38, 34, 0.34) !important;
}

.button:active,
button.shopify-payment-button__button--unbranded:active:not([disabled]) {
  transform: translateY(0);
}

.button-secondary {
  background: transparent !important;
  color: var(--perf-white) !important;
  border: 1px solid var(--perf-red) !important;
  box-shadow: inset 0 0 0 1px rgba(215, 38, 34, 0.35) !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.button-secondary:hover {
  background: var(--perf-red) !important;
  color: var(--perf-white) !important;
}

input,
textarea,
select,
.field__input,
.quantity-selector {
  background: #111 !important;
  color: var(--perf-white) !important;
  border: 1px solid var(--perf-border) !important;
}

input:focus,
textarea:focus,
select:focus,
.field__input:focus {
  border-color: var(--perf-red) !important;
  box-shadow: 0 0 0 2px rgba(215, 38, 34, 0.25) !important;
}

/* ==========================================================
   5) Homepage hero
   ========================================================== */

.hero-wrapper:first-of-type .hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 38, 34, 0.28), transparent 26rem),
    radial-gradient(circle at 18% 72%, rgba(215, 38, 34, 0.12), transparent 28rem),
    linear-gradient(135deg, #070707 0%, #121212 48%, #2a0807 100%) !important;
}

.hero-wrapper:first-of-type .hero__container {
  border-bottom: 4px solid var(--perf-red) !important;
}

.hero-wrapper:first-of-type .hero__media-grid {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.68), rgba(215, 38, 34, 0.22)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 13px);
}

.hero-wrapper:first-of-type .hero__media-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 22%, rgba(215, 38, 34, 0.18), transparent 22rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28));
}

.hero-wrapper:first-of-type .hero__media-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 62%, rgba(215, 38, 34, 0.07) 62% 64%, transparent 64%),
    linear-gradient(315deg, transparent 0 72%, rgba(215, 38, 34, 0.09) 72% 73%, transparent 73%);
}

.hero-wrapper:first-of-type .hero__media {
  filter: saturate(1.02) contrast(1.05) brightness(0.88);
}

.hero-wrapper:first-of-type .hero__media-grid > svg.hero__media {
  opacity: 0.08;
  filter: grayscale(1) brightness(0.35);
}

.hero-wrapper:first-of-type .hero__content-wrapper {
  z-index: 5;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: var(--page-margin, 40px);
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: left !important;
}

.hero-wrapper:first-of-type .hero__content-wrapper .text-block,
.hero-wrapper:first-of-type .hero__content-wrapper .button-block,
.hero-wrapper:first-of-type .hero__content-wrapper [class*="button"] {
  align-self: flex-start !important;
  text-align: left !important;
}

.hero-wrapper:first-of-type .hero__content-wrapper .text-block:first-child {
  display: inline-flex;
  width: fit-content;
  max-width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(215, 38, 34, 0.58);
  border-radius: 999px;
  background: rgba(215, 38, 34, 0.14);
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem !important;
  font-weight: 900;
}

.hero-wrapper:first-of-type .hero__content-wrapper .text-block:first-child p {
  margin: 0;
  color: #fff !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

.hero-wrapper:first-of-type .hero__content-wrapper .text-block:nth-child(2) {
  max-width: 860px;
}

.hero-wrapper:first-of-type .hero__content-wrapper h1,
.hero-wrapper:first-of-type .hero__content-wrapper h2,
.hero-wrapper:first-of-type .hero__content-wrapper .h1,
.hero-wrapper:first-of-type .hero__content-wrapper .h2 {
  color: #fff !important;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem) !important;
  line-height: 0.95 !important;
  font-weight: 950 !important;
  letter-spacing: 0.015em !important;
  text-transform: uppercase;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.75),
    0 18px 40px rgba(0, 0, 0, 0.45);
  max-width: 820px !important;
}

.hero-wrapper:first-of-type .hero__content-wrapper h1::after,
.hero-wrapper:first-of-type .hero__content-wrapper h2::after,
.hero-wrapper:first-of-type .hero__content-wrapper .h1::after,
.hero-wrapper:first-of-type .hero__content-wrapper .h2::after {
  width: 92px;
  height: 5px;
  margin-top: 1rem;
}

.hero-wrapper:first-of-type .hero__content-wrapper h3,
.hero-wrapper:first-of-type .hero__content-wrapper .h3 {
  color: #fff !important;
  font-size: clamp(2rem, 3.3vw, 3.6rem) !important;
  line-height: 0.98 !important;
  font-weight: 950 !important;
  text-transform: uppercase;
  max-width: 820px !important;
}

.hero-wrapper:first-of-type .hero__content-wrapper p {
  color: rgba(255, 255, 255, 0.74) !important;
  max-width: 720px !important;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.45;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.hero-wrapper:first-of-type .hero__content-wrapper .text-block:nth-child(3) {
  width: 100% !important;
  max-width: 720px !important;
}

.hero-wrapper:first-of-type .hero__content-wrapper .button,
.hero-wrapper:first-of-type .hero__content-wrapper .button-secondary {
  margin-top: 0.8rem;
  min-height: 48px;
  padding-inline: 1.2rem;
}

@media screen and (max-width: 749px) {
  .hero-wrapper:first-of-type .hero__content-wrapper {
    padding: 3rem 1rem;
    justify-content: flex-end !important;
  }

  .hero-wrapper:first-of-type .hero__content-wrapper h1,
  .hero-wrapper:first-of-type .hero__content-wrapper h2,
  .hero-wrapper:first-of-type .hero__content-wrapper .h1,
  .hero-wrapper:first-of-type .hero__content-wrapper .h2 {
    font-size: clamp(2.4rem, 12vw, 4.2rem) !important;
  }

  .hero-wrapper:first-of-type .hero__content-wrapper .text-block:first-child {
    font-size: 0.66rem !important;
  }
}

/* ==========================================================
   6) Product and collection cards
   ========================================================== */

.product-card,
.collection-card,
.product-grid__item,
.resource-list__item {
  background: linear-gradient(180deg, var(--perf-charcoal), #121212);
  border: 1px solid var(--perf-border) !important;
  border-radius: var(--perf-card-radius) !important;
  overflow: hidden;
}

.product-card {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #202020, #111) !important;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 32%);
  opacity: 0.55;
  z-index: 1;
}

.product-grid__card,
.product-card__content,
.collection-card__content {
  color: var(--perf-white) !important;
}

.product-card__content {
  position: relative;
  z-index: 2;
  padding: 0.85rem !important;
}

.product-card:hover,
.collection-card:hover,
.product-grid__item:hover {
  border-color: var(--perf-red) !important;
  box-shadow:
    0 0 0 1px rgba(215, 38, 34, 0.45),
    0 18px 34px rgba(0, 0, 0, 0.42);
}

.card-gallery,
.product-card__image,
.collection-card__image {
  background: #0b0b0b;
}

.card-gallery {
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle at center, #2b2b2b, #0b0b0b);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card :is(img, picture) {
  transition: transform 260ms ease, opacity 260ms ease;
}

.product-card:hover :is(img, picture) {
  transform: scale(1.035);
}

.product-card :is(h3, h4, .h4, product-title, .product-title),
.product-card h3,
.product-card h4,
.product-card .h4,
.product-title,
.price,
product-price {
  color: var(--perf-white) !important;
}

.price,
product-price {
  font-weight: 800;
}

.product-card .price,
.product-card product-price {
  color: var(--perf-red) !important;
  font-weight: 900 !important;
}

.compare-at-price {
  color: var(--perf-muted) !important;
}

.perf-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  pointer-events: none;
}

.perf-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 0.66rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--perf-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.perf-badge--vehicle {
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark));
}

.perf-badge--platform {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
}

/* Platform-specific product card badges */
.perf-badge--platform-hp {
  background: linear-gradient(180deg, #1f3769, #102044);
  border-color: rgba(80, 132, 220, 0.58);
}

.perf-badge--platform-ezlynk {
  background: linear-gradient(180deg, #2a9dcc, #12637f);
  border-color: rgba(107, 207, 245, 0.62);
}

.perf-badge--platform-efilive {
  background: linear-gradient(180deg, #5c2f8e, #30194f);
  border-color: rgba(171, 118, 230, 0.58);
}

.perf-badge--platform-sct {
  background: linear-gradient(180deg, #c66b21, #71350e);
  border-color: rgba(255, 158, 76, 0.58);
}

.perf-badge--platform-mm3 {
  background: linear-gradient(180deg, #287446, #123b24);
  border-color: rgba(92, 190, 125, 0.58);
}

.perf-badge--platform-avtok {
  background: linear-gradient(180deg, #147d78, #0b3f3c);
  border-color: rgba(71, 209, 200, 0.58);
}

.perf-badge--platform-hp,
.perf-badge--platform-ezlynk,
.perf-badge--platform-efilive,
.perf-badge--platform-sct,
.perf-badge--platform-mm3,
.perf-badge--platform-avtok {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.38);
}

.perf-badge--service {
  background: rgba(255, 255, 255, 0.92);
  color: var(--perf-black);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Collection product grid badge key */
.collection-wrapper .perf-badge-key {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.36rem;
  margin: 0.2rem 0 0.85rem;
  padding: 0.52rem 0.65rem;
  width: fit-content;
  max-width: 100%;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016)),
    rgba(10, 10, 10, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--perf-red);
  border-radius: 999px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.perf-badge-key__label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  margin-right: 0.12rem;
}

.perf-badge-key__pill {
  position: static;
  min-height: 1.25rem;
  padding: 0.24rem 0.48rem;
  font-size: 0.58rem;
  box-shadow: none;
}

.perf-badge-key__hint {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.2;
  margin-left: 0.25rem;
}

@media screen and (max-width: 749px) {
  .collection-wrapper .perf-badge-key {
    width: 100%;
    border-radius: 13px;
    align-items: flex-start;
    gap: 0.32rem;
  }

  .perf-badge-key__hint {
    width: 100%;
    margin-left: 0;
    font-size: 0.66rem;
  }
}

[data-testid="product-list"] {
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.13), transparent 28rem),
    linear-gradient(180deg, #151515 0%, #101010 100%) !important;
}

.section-resource-list__header {
  margin-bottom: 0.75rem;
}

.section-resource-list__header :is(h2, h3, .h2, .h3, .h4) {
  color: var(--perf-white) !important;
  text-transform: uppercase;
  font-weight: 900 !important;
  letter-spacing: 0.035em;
}

[data-testid="collection-list"] {
  background: linear-gradient(180deg, #101010, #181818) !important;
}

.collection-card {
  background: #111 !important;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
  pointer-events: none;
  z-index: 1;
}

.collection-card__content {
  z-index: 2;
}

@media screen and (max-width: 749px) {
  .product-card,
  .collection-card,
  .product-grid__item {
    border-radius: 0.65rem !important;
  }

  .product-card__content {
    padding: 0.6rem !important;
  }

  .perf-card-badges {
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    gap: 0.25rem;
  }

  .perf-badge {
    font-size: 0.56rem;
    padding: 0.25rem 0.42rem;
  }
}

/* ==========================================================
   7) Product page
   sections/product-information.liquid
   ========================================================== */

.shopify-section:has(.product-information),
.product-information {
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 38, 34, 0.16), transparent 30rem),
    linear-gradient(135deg, #080808 0%, #121212 48%, #1b0505 100%) !important;
  color: var(--perf-white) !important;
}

.product-information {
  padding-block: clamp(1.25rem, 3vw, 3rem) !important;
}

.product-information-content,
.product-information__grid,
.product-information .product {
  gap: clamp(1.25rem, 3vw, 3rem) !important;
  align-items: start !important;
}

.product-information .product-media-gallery,
.product-information product-media-gallery,
.product-information [data-testid="product-media-gallery"],
.product-information .product-media-container,
.product-information .product-media,
.product-information .media {
  --color-background: 12 12 12 !important;
  --color-background-rgb: 12 12 12 !important;
  background:
    radial-gradient(circle at center, rgba(215, 38, 34, 0.16), transparent 24rem),
    linear-gradient(180deg, #181818, #090909) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

.product-information .product-media-gallery,
.product-information product-media-gallery,
.product-information .product-media-container {
  min-height: min(620px, 68vh) !important;
}

.product-information .product-media-gallery:empty,
.product-information product-media-gallery:empty,
.product-information .product-media-container:empty {
  background:
    radial-gradient(circle at center, rgba(215, 38, 34, 0.16), transparent 22rem),
    linear-gradient(145deg, #191919 0%, #090909 70%) !important;
}

.product-information .product-media img,
.product-information .product-media-gallery img,
.product-information product-media-gallery img {
  object-fit: contain !important;
  background: #0b0b0b !important;
}

.product-information .placeholder-image,
.product-information .placeholder-svg,
.product-information svg.placeholder-svg,
.product-information [class*="placeholder"] {
  background:
    radial-gradient(circle at center, rgba(215, 38, 34, 0.12), transparent 20rem),
    linear-gradient(145deg, #181818, #090909) !important;
  color: rgba(255, 255, 255, 0.18) !important;
}

.product-information .product-media-gallery::after,
.product-information product-media-gallery::after,
.product-information .product-media-container::after {
  content: "PRODUCT IMAGE COMING SOON";
  position: absolute;
  inset: auto 1.5rem 1.5rem 1.5rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.product-information .product-media-gallery:has(img)::after,
.product-information product-media-gallery:has(img)::after,
.product-information .product-media-container:has(img)::after {
  display: none;
}

.product-information .product-details,
.product-information [data-testid="product-information-details"],
.product-information .product__info-wrapper {
  color: var(--perf-white) !important;
  align-self: start !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #191919, #101010) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  padding: clamp(1rem, 2.2vw, 2rem) !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.product-information .product-form,
.product-information form[action*="/cart/add"] {
  color: var(--perf-white) !important;
}

.product-information h1,
.product-information .product-title,
.product-information product-title {
  color: var(--perf-white) !important;
  font-size: clamp(1.9rem, 2.45vw, 3.15rem) !important;
  line-height: 1.02 !important;
  font-weight: 950 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  max-width: 620px !important;
}

.product-information .product-details h1,
.product-information [data-testid="product-information-details"] h1,
.product-information .product__info-wrapper h1 {
  font-size: clamp(1.85rem, 2.25vw, 2.95rem) !important;
}

.product-information h1::after,
.product-information .product-title::after,
.product-information product-title::after {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, var(--perf-red), var(--perf-red-dark));
  border-radius: 999px;
}

.product-information .price,
.product-information product-price,
.product-information .price__regular,
.product-information .price__sale {
  color: var(--perf-white) !important;
  font-size: 1.15rem !important;
  font-weight: 900 !important;
}

.product-information .price,
.product-information product-price {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.35rem 0.75rem;
  border-left: 3px solid var(--perf-red);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 10px;
}

.product-information hr,
.product-information .product-details > * {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.product-information variant-picker,
.product-information .variant-picker,
.product-information .product-form__input {
  color: var(--perf-white) !important;
}

.product-information .variant-picker__option-label,
.product-information .product-form__input legend,
.product-information label {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
}

.product-information input[type="radio"] + label,
.product-information .variant-option,
.product-information .variant-picker__option-values label {
  background: #0d0d0d !important;
  color: var(--perf-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 12px !important;
  min-height: 46px;
  font-weight: 850 !important;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-information input[type="radio"] + label:hover,
.product-information .variant-option:hover,
.product-information .variant-picker__option-values label:hover {
  border-color: rgba(215, 38, 34, 0.7) !important;
  box-shadow: 0 0 0 1px rgba(215, 38, 34, 0.32);
  transform: translateY(-1px);
}

.product-information input[type="radio"]:checked + label,
.product-information .variant-option--selected,
.product-information .variant-picker__option-values label:has(input:checked) {
  background: linear-gradient(180deg, #050505, #111) !important;
  color: var(--perf-white) !important;
  border-color: var(--perf-red) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(215, 38, 34, 0.45),
    0 12px 24px rgba(215, 38, 34, 0.18);
}

/* Hide single-choice variant rows while keeping multi-choice variant rows visible. */
.product-information .product-form__input:has(.variant-picker__option-values label:only-child),
.product-information .variant-picker__option:has(.variant-picker__option-values label:only-child),
.product-information .variant-picker__option-values:has(label:only-child),
.product-information .product-form__input:has(label:only-child),
.product-information fieldset:has(label:only-child) {
  display: none !important;
}

.product-information .product-form__input:has(.variant-picker__option-values label:first-child:nth-last-child(n + 2)),
.product-information .variant-picker__option:has(.variant-picker__option-values label:first-child:nth-last-child(n + 2)),
.product-information fieldset:has(label:first-child:nth-last-child(n + 2)) {
  display: block !important;
}

.product-information .quantity-selector,
.product-information quantity-selector {
  background: #0b0b0b !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 13px !important;
  overflow: hidden;
}

.product-information .quantity-selector button,
.product-information quantity-selector button {
  background: rgba(215, 38, 34, 0.22) !important;
  color: var(--perf-white) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.product-information .quantity-selector input,
.product-information quantity-selector input {
  background: #0b0b0b !important;
  color: var(--perf-white) !important;
  font-weight: 900 !important;
}

.product-information .product-form-buttons,
.product-information .buy-buttons,
.product-information .shopify-payment-button {
  gap: 0.8rem !important;
}

.product-information .add-to-cart-button,
.product-information button[name="add"],
.product-information .product-form__submit {
  min-height: 54px !important;
  border-radius: 13px !important;
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark)) !important;
  color: var(--perf-white) !important;
  font-weight: 950 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

.product-information .shopify-payment-button__button {
  min-height: 54px !important;
  border-radius: 13px !important;
  overflow: hidden;
}

.product-information .shopify-payment-button__more-options {
  color: var(--perf-red) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-size: 0.78rem !important;
}

.product-information .rte,
.product-information .product-description,
.product-information .product__description {
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.55;
}

.product-information .rte {
  margin-top: 1.15rem !important;
  padding: 1rem 1.15rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #101010 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.product-information .rte > div,
.product-information .rte > p,
.product-information .rte > ul {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.product-information .rte strong,
.product-information .rte b {
  color: var(--perf-white) !important;
  font-weight: 950;
}

.product-information .rte p {
  margin-block: 0.25rem 0.5rem !important;
}

.product-information .rte ul,
.product-information .rte ol {
  margin-block: 0.35rem 0 !important;
  padding-left: 1.2rem;
}

.product-information .rte li {
  color: rgba(255, 255, 255, 0.75) !important;
  margin-block: 0.25rem !important;
}

.shopify-section:has(.product-recommendations) {
  background: #f5f5f5 !important;
}

.shopify-section:has(.product-recommendations) :is(h2, h3) {
  color: #111 !important;
  text-shadow: none !important;
}

@media screen and (max-width: 749px) {
  .product-information {
    padding-block: 0 !important;
  }

  .product-information .product-media-gallery,
  .product-information product-media-gallery,
  .product-information .product-media-container {
    min-height: auto !important;
    border-radius: 0 !important;
  }

  .product-information .product-details,
  .product-information [data-testid="product-information-details"],
  .product-information .product__info-wrapper {
    border-radius: 0 !important;
    padding: 1rem !important;
  }

  .product-information h1,
  .product-information .product-title,
  .product-information product-title {
    font-size: clamp(1.75rem, 8.5vw, 2.55rem) !important;
    line-height: 1.04 !important;
  }

  .product-information input[type="radio"] + label,
  .product-information .variant-option,
  .product-information .variant-picker__option-values label {
    min-height: 44px;
  }
}

/* ==========================================================
   8) Footer and newsletter
   ========================================================== */

footer,
footer .section,
footer .section-background {
  background: #0b0b0b !important;
  color: var(--perf-white) !important;
}

footer {
  border-top: 4px solid var(--perf-red);
}

footer :is(a, p, h1, h2, h3, h4, h5, h6) {
  color: var(--perf-white) !important;
}

footer a:hover {
  color: var(--perf-red) !important;
}

.email-signup,
.email-signup form,
.newsletter-form,
.footer .email-signup,
footer .email-signup {
  max-width: 680px !important;
}

.email-signup__input,
.newsletter-form__field-wrapper,
footer input[type="email"],
footer .field,
footer .field__input {
  background: #101010 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px !important;
  overflow: hidden;
}

footer input[type="email"],
footer .field__input {
  min-height: 54px !important;
  padding-inline: 1.25rem 4.25rem !important;
}

footer input[type="email"]::placeholder,
footer .field__input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

footer button[type="submit"],
footer .newsletter-form__button,
footer .email-signup__button {
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark)) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  min-width: 58px !important;
  min-height: 54px !important;
}

footer .email-signup,
footer .newsletter-form {
  margin-left: auto !important;
  margin-right: auto !important;
}

footer .section,
footer .footer {
  border-top-color: var(--perf-red) !important;
}

@media screen and (max-width: 749px) {
  .email-signup,
  .email-signup form,
  .newsletter-form,
  footer .email-signup {
    max-width: 100% !important;
  }

  footer input[type="email"],
  footer .field__input,
  footer button[type="submit"],
  footer .newsletter-form__button,
  footer .email-signup__button {
    min-height: 50px !important;
  }
}

/* ==========================================================
   9) Legacy cleanup / app leftovers
   ========================================================== */

.qikify-smartmenu,
.qikify-smartmenu *,
.qikify-megamenu,
.qikify-megamenu * {
  font-family: inherit;
}

/* ==========================================================
   Product Page - You May Also Like / Product Recommendations
   Dark Theme
   ========================================================== */

.shopify-section:has(.product-recommendations),
.product-recommendations,
.product-recommendations .section,
.product-recommendations .section-background {
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.12), transparent 28rem),
    linear-gradient(180deg, #101010 0%, #151515 100%) !important;
  color: var(--perf-white) !important;
}

/* Remove/override the earlier light recommendation background */
.product-information + .shopify-section,
.shopify-section:has(.product-recommendations) {
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.12), transparent 28rem),
    linear-gradient(180deg, #101010 0%, #151515 100%) !important;
}

/* Recommendation heading */
.shopify-section:has(.product-recommendations) h1,
.shopify-section:has(.product-recommendations) h2,
.shopify-section:has(.product-recommendations) h3,
.product-recommendations h1,
.product-recommendations h2,
.product-recommendations h3 {
  color: var(--perf-white) !important;
  text-shadow: none !important;
  text-transform: uppercase;
  font-weight: 950 !important;
  letter-spacing: 0.04em;
}

/* Recommendation section text */
.shopify-section:has(.product-recommendations) p,
.product-recommendations p {
  color: var(--perf-silver) !important;
}

/* Product cards inside recommendations */
.shopify-section:has(.product-recommendations) .product-card,
.product-recommendations .product-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #202020, #101010) !important;
  border: 1px solid var(--perf-border) !important;
  border-radius: 16px !important;
  color: var(--perf-white) !important;
}

/* Product titles/prices inside recommendations */
.shopify-section:has(.product-recommendations) .product-card h1,
.shopify-section:has(.product-recommendations) .product-card h2,
.shopify-section:has(.product-recommendations) .product-card h3,
.shopify-section:has(.product-recommendations) .product-card h4,
.shopify-section:has(.product-recommendations) .product-card .product-title,
.shopify-section:has(.product-recommendations) .product-card product-title,
.product-recommendations .product-card h1,
.product-recommendations .product-card h2,
.product-recommendations .product-card h3,
.product-recommendations .product-card h4,
.product-recommendations .product-card .product-title,
.product-recommendations .product-card product-title {
  color: var(--perf-white) !important;
}

.shopify-section:has(.product-recommendations) .price,
.shopify-section:has(.product-recommendations) product-price,
.product-recommendations .price,
.product-recommendations product-price {
  color: var(--perf-red) !important;
  font-weight: 900 !important;
}

/* Image area */
.shopify-section:has(.product-recommendations) .card-gallery,
.product-recommendations .card-gallery {
  background:
    radial-gradient(circle at center, #2b2b2b, #0b0b0b) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Recommendation carousel/buttons/dots if present */
.shopify-section:has(.product-recommendations) button,
.product-recommendations button {
  color: var(--perf-white);
}

.shopify-section:has(.product-recommendations) .slideshow-controls,
.product-recommendations .slideshow-controls {
  color: var(--perf-white) !important;
}

/* ==========================================================
   Product Page - Variant + Notes Polish
   ========================================================== */

/* Tighten the product detail card vertical rhythm */
.product-information .product-details,
.product-information [data-testid="product-information-details"],
.product-information .product__info-wrapper {
  padding: clamp(1.1rem, 1.9vw, 1.75rem) !important;
}

/* Better spacing between product blocks */
.product-information .product-details > *,
.product-information [data-testid="product-information-details"] > *,
.product-information .product__info-wrapper > * {
  margin-block-start: 0.95rem;
}

.product-information .product-details > *:first-child,
.product-information [data-testid="product-information-details"] > *:first-child,
.product-information .product__info-wrapper > *:first-child {
  margin-block-start: 0;
}

/* Variant labels */
.product-information .variant-picker__option-label,
.product-information .product-form__input legend {
  display: block;
  margin-bottom: 0.45rem !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.025em;
}

/* Variant button container */
.product-information .variant-picker__option-values,
.product-information .product-form__input {
  gap: 0.55rem !important;
}

/* Variant buttons - force all choices to dark instead of white */
.product-information .variant-picker__option-values label,
.product-information .product-form__input label,
.product-information input[type="radio"] + label {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #0b0b0b !important;
  color: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  min-height: 44px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Selected variant */
.product-information input[type="radio"]:checked + label,
.product-information .variant-picker__option-values label:has(input:checked),
.product-information .product-form__input label:has(input:checked) {
  background:
    linear-gradient(180deg, rgba(215, 38, 34, 0.22), rgba(159, 23, 21, 0.2)),
    #050505 !important;
  color: #ffffff !important;
  border-color: rgba(215, 38, 34, 0.85) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(215, 38, 34, 0.35),
    0 12px 24px rgba(215, 38, 34, 0.14);
}

/* Hover variant */
.product-information .variant-picker__option-values label:hover,
.product-information .product-form__input label:hover,
.product-information input[type="radio"] + label:hover {
  color: #ffffff !important;
  border-color: rgba(215, 38, 34, 0.65) !important;
  transform: translateY(-1px);
}

/* Disabled/unavailable variants should not show as white */
.product-information input[type="radio"]:disabled + label,
.product-information .variant-picker__option-values label[aria-disabled="true"],
.product-information .product-form__input label[aria-disabled="true"] {
  background: #080808 !important;
  color: rgba(255, 255, 255, 0.32) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  opacity: 0.65;
  cursor: not-allowed;
}

/* Make variant rows cleaner */
.product-information variant-picker,
.product-information .variant-picker {
  display: grid;
  gap: 0.85rem !important;
}

/* Quantity/add-to-cart row alignment */
.product-information .buy-buttons,
.product-information .product-form-buttons {
  align-items: stretch !important;
}

.product-information .quantity-selector,
.product-information quantity-selector {
  min-height: 48px !important;
}

/* Description / Important Notes box cleanup */
.product-information .rte {
  margin-top: 1.2rem !important;
  padding: 1rem 1.1rem !important;
  max-height: none !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0e0e0e !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 14px !important;
}

/* Remove inner framed/boxed look inside descriptions */
.product-information .rte * {
  box-shadow: none !important;
}

.product-information .rte > div,
.product-information .rte > p,
.product-information .rte > ul,
.product-information .rte > ol {
  background: transparent !important;
  border: 0 !important;
}

/* Better important notes text layout */
.product-information .rte p,
.product-information .rte li {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-information .rte strong,
.product-information .rte b {
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 950 !important;
}

.product-information .rte ul,
.product-information .rte ol {
  margin: 0.35rem 0 0.65rem !important;
  padding-left: 1.15rem !important;
}

.product-information .rte li {
  margin-block: 0.2rem !important;
}

/* Prevent huge empty notes areas */
.product-information .rte:empty {
  display: none !important;
}

/* If there are multiple Important Notes groups, separate them softly */
.product-information .rte p + p,
.product-information .rte ul + p,
.product-information .rte ol + p {
  margin-top: 0.75rem !important;
  padding-top: 0.75rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product image panel should feel more balanced on desktop */
@media screen and (min-width: 990px) {
  .product-information .product-media-gallery,
  .product-information product-media-gallery,
  .product-information .product-media-container {
    min-height: auto !important;
  }

  .product-information .product-media img,
  .product-information .product-media-gallery img,
  .product-information product-media-gallery img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* Mobile polish */
@media screen and (max-width: 749px) {
  .product-information .variant-picker__option-values,
  .product-information .product-form__input {
    gap: 0.45rem !important;
  }

  .product-information .variant-picker__option-values label,
  .product-information .product-form__input label,
  .product-information input[type="radio"] + label {
    min-height: 42px !important;
    font-size: 0.82rem !important;
  }

  .product-information .rte {
    padding: 0.9rem !important;
  }
}

/* ==========================================================
   Product Page - Horizon Dropdown Variant Picker
   Targets snippets/variant-main-picker.liquid
   ========================================================== */

/* Variant picker spacing */
.product-information variant-picker,
.product-information .variant-picker {
  display: block !important;
  width: 100% !important;
  padding-top: 1rem !important;
  margin-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.product-information .variant-picker__form {
  display: grid !important;
  gap: 0.95rem !important;
  width: 100% !important;
}

/* Each dropdown option group */
.product-information .variant-option--dropdowns {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.38rem !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Dropdown label */
.product-information .variant-option--dropdowns > label {
  display: block !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 0.78rem !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
  letter-spacing: 0.025em !important;
  text-transform: none !important;
}

/* The actual select box wrapper */
.product-information .variant-option__select-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #0b0b0b !important;

  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 10px !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 8px 18px rgba(0, 0, 0, 0.14) !important;
}

/* Hover/focus states belong on wrapper */
.product-information .variant-option__select-wrapper:hover {
  border-color: rgba(215, 38, 34, 0.65) !important;
}

.product-information .variant-option__select-wrapper:focus-within {
  border-color: rgba(215, 38, 34, 0.95) !important;
  box-shadow:
    0 0 0 2px rgba(215, 38, 34, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* The select itself */
.product-information .variant-option__select {
  display: block !important;
  width: 100% !important;
  height: 46px !important;
  min-height: 46px !important;

  margin: 0 !important;
  padding: 0 2.75rem 0 0.95rem !important;

  appearance: none !important;
  -webkit-appearance: none !important;

  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;

  color: #ffffff !important;
  font-size: 0.92rem !important;
  line-height: 46px !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;

  cursor: pointer !important;
}

/* Native dropdown option colors */
.product-information .variant-option__select option {
  background: #101010 !important;
  color: #ffffff !important;
}

/* Use Horizon's real caret instead of pseudo arrows */
.product-information .variant-option__select-wrapper .icon,
.product-information .variant-option__select-wrapper .icon-caret {
  display: block !important;
  position: absolute !important;
  right: 1rem !important;
  top: 50% !important;
  width: 0.72rem !important;
  height: 0.72rem !important;
  transform: translateY(-50%) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  pointer-events: none !important;
}

/* Stop older generic label/pill rules from affecting dropdown labels */
.product-information .variant-option--dropdowns label:hover,
.product-information .variant-option--dropdowns label:focus,
.product-information .variant-option--dropdowns label:has(input:checked) {
  transform: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Make dropdown area flow cleanly into buy buttons */
.product-information .buy-buttons,
.product-information .product-form-buttons {
  margin-top: 1.05rem !important;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .product-information .variant-picker__form {
    gap: 0.8rem !important;
  }

  .product-information .variant-option__select {
    height: 44px !important;
    min-height: 44px !important;
    line-height: 44px !important;
    font-size: 0.88rem !important;
  }
}


/* ==========================================================
   Product Page - Product Notes / Description Card
   Long-term wrapper from blocks/product-description.liquid
   ========================================================== */

.product-information .perf-product-notes {
  width: 100% !important;
  margin-top: 1.2rem !important;
}

.product-information .perf-product-notes__inner {
  width: 100% !important;
  padding: 1rem 1.1rem !important;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #0f0f0f !important;

  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 14px !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.2) !important;
}

/* Reset the generic text/rte block inside the notes wrapper */
.product-information .perf-product-notes .rte,
.product-information .perf-product-notes .text-block,
.product-information .perf-product-notes [class*="text"] {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* General note text */
.product-information .perf-product-notes :is(p, li) {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

/* Important Notes label */
.product-information .perf-product-notes :is(strong, b) {
  color: #ffffff !important;
  font-weight: 950 !important;
  letter-spacing: 0.01em !important;
}

/* Lists */
.product-information .perf-product-notes ul,
.product-information .perf-product-notes ol {
  margin: 0.4rem 0 0 !important;
  padding-left: 1.15rem !important;
}

.product-information .perf-product-notes li {
  margin-block: 0.24rem !important;
  padding-left: 0.1rem !important;
}

/* Paragraph spacing */
.product-information .perf-product-notes p + ul,
.product-information .perf-product-notes p + ol {
  margin-top: 0.45rem !important;
}

.product-information .perf-product-notes ul + p,
.product-information .perf-product-notes ol + p,
.product-information .perf-product-notes p + p {
  margin-top: 0.9rem !important;
  padding-top: 0.9rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* If the description contains a line like "Important Notes • OBDII..." */
.product-information .perf-product-notes p strong:first-child,
.product-information .perf-product-notes p b:first-child {
  display: inline-block;
  margin-right: 0.35rem;
}

/* Remove the old generic rte card styling inside product pages if it conflicts */
.product-information .product-details .rte:not(.perf-product-notes .rte) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .product-information .perf-product-notes__inner {
    padding: 0.95rem !important;
    border-radius: 12px !important;
  }

  .product-information .perf-product-notes :is(p, li) {
    font-size: 0.88rem !important;
  }
}

/* Product grid badge key */
.perf-badge-key {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 0 0 0.9rem;
  padding: 0.65rem 0.75rem;
  width: fit-content;
  max-width: 100%;

  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(10, 10, 10, 0.78);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--perf-red);
  border-radius: 999px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(0, 0, 0, 0.2);
}

.perf-badge-key__label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  margin-right: 0.15rem;
}

.perf-badge-key__pill {
  position: static;
  box-shadow: none;
}

.perf-badge-key__hint {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  margin-left: 0.25rem;
}

/* Keep badge key from showing in product recommendation sections if resource-list is reused there */
.product-recommendations .perf-badge-key,
.shopify-section:has(.product-recommendations) .perf-badge-key {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .perf-badge-key {
    width: 100%;
    border-radius: 14px;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .perf-badge-key__hint {
    width: 100%;
    margin-left: 0;
    font-size: 0.68rem;
  }
}

/* ==========================================================
   Product Card - Quick Add Button
   ========================================================== */

.product-card .quick-add__button {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;

  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #181818, #050505) !important;

  color: #ffffff !important;
  border: 1px solid rgba(215, 38, 34, 0.85) !important;
  border-radius: 999px !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(215, 38, 34, 0.22) !important;

  backdrop-filter: blur(14px) saturate(150%);
}

.product-card .quick-add__button .add-to-cart-text {
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
  border-radius: inherit !important;
}

.product-card .quick-add__button .add-to-cart-icon {
  width: 100% !important;
  height: 100% !important;
  color: #ffffff !important;
}

.product-card .quick-add__button svg {
  width: 18px !important;
  height: 18px !important;
  color: currentColor !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

.product-card .quick-add__button:hover,
.product-card .quick-add__button:focus-visible {
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, var(--perf-red), var(--perf-red-dark)) !important;

  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.26) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(215, 38, 34, 0.36),
    0 0 0 1px rgba(215, 38, 34, 0.35) !important;
}

.product-card .quick-add__button:active {
  transform: translateY(0) scale(0.98);
}

/* Keep the text expansion from making the product-card quick add look like a pill */
.product-card .quick-add__button .add-to-cart-text__content {
  display: none !important;
}

/* ==========================================================
   Product Page - Guided Configuration Rework
   ========================================================== */

.product-information .product-details,
.product-information [data-testid="product-information-details"],
.product-information .product__info-wrapper {
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #151515 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 18px !important;
  padding: clamp(1.25rem, 2.3vw, 2.1rem) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 24px 54px rgba(0, 0, 0, 0.34) !important;
}

/* Product title should feel like the header of a configuration card */
.product-information h1,
.product-information .product-title,
.product-information product-title {
  max-width: 740px !important;
  margin-bottom: 0.85rem !important;
  color: #ffffff !important;
  font-size: clamp(1.9rem, 2.45vw, 3.25rem) !important;
  line-height: 0.98 !important;
  font-weight: 950 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

.product-information h1::after,
.product-information .product-title::after,
.product-information product-title::after {
  width: 74px !important;
  height: 4px !important;
  margin-top: 0.85rem !important;
}

/* Price should be secondary, not floating by itself */
.product-information .price,
.product-information product-price {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  min-height: 40px !important;
  margin: 0.25rem 0 0.9rem !important;
  padding: 0.38rem 0.72rem !important;
  border-left: 3px solid var(--perf-red) !important;
  border-radius: 10px !important;
  background: rgba(0, 0, 0, 0.24) !important;
  color: #ffffff !important;
  font-weight: 950 !important;
}

/* Configuration panel around variant picker */
.product-information .perf-config-panel {
  margin-top: 1.15rem !important;
  padding: 1rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0e0e0e !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 14px !important;
}

.product-information .perf-config-panel__header {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.product-information .perf-config-panel__eyebrow {
  width: fit-content;
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(215, 38, 34, 0.48);
  border-radius: 999px;
  background: rgba(215, 38, 34, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.product-information .perf-config-panel__header strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Keep dropdown variant picker dark and easy to read */
.product-information .variant-option--dropdowns {
  gap: 0.42rem !important;
}

.product-information .variant-option--dropdowns > label {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
}

.product-information .variant-option__select-wrapper {
  min-height: 48px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    #090909 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 12px !important;
}

.product-information .variant-option__select-wrapper:hover,
.product-information .variant-option__select-wrapper:focus-within {
  border-color: rgba(215, 38, 34, 0.72) !important;
  box-shadow: 0 0 0 1px rgba(215, 38, 34, 0.24);
}

.product-information .variant-option__select {
  height: 48px !important;
  min-height: 48px !important;
  padding-inline: 1rem 2.75rem !important;
  background: transparent !important;
  color: #ffffff !important;
  border: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
}

/* Buy buttons should feel connected to the config flow */
.product-information .product-form-buttons {
  margin-top: 1rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.product-information .buy-buttons-block,
.product-information product-form-component,
.product-information .shopify-product-form {
  width: 100% !important;
}

.product-information .product-form-buttons {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.85rem !important;
  align-items: stretch !important;
}

.product-information .product-form-buttons > *:not(:first-child) {
  min-width: 0;
}

.product-information .add-to-cart-button,
.product-information button[name="add"],
.product-information .product-form__submit {
  min-height: 52px !important;
  border-radius: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.045em !important;
}

/* PayPal / accelerated checkout should sit cleanly full-width */
.product-information .shopify-payment-button,
.product-information .shopify-payment-button__button {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

/* Notes should be attached to the buying flow */
.product-information .perf-product-notes {
  margin-top: 1.15rem !important;
}

.product-information .perf-product-notes__inner {
  padding: 1rem 1.1rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 14px !important;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .product-information .product-details,
  .product-information [data-testid="product-information-details"],
  .product-information .product__info-wrapper {
    border-radius: 0 !important;
    padding: 1rem !important;
  }

  .product-information .product-form-buttons {
    grid-template-columns: 1fr !important;
  }

  .product-information .perf-config-panel {
    padding: 0.9rem !important;
  }
}

/* ==========================================================
   Product Page - TUNESXFP Guided Product Layout
   ========================================================== */

.product-information {
  background:
    radial-gradient(circle at 82% 10%, rgba(215, 38, 34, 0.16), transparent 30rem),
    radial-gradient(circle at 18% 72%, rgba(215, 38, 34, 0.07), transparent 34rem),
    linear-gradient(135deg, #080808 0%, #111111 48%, #1a0505 100%) !important;
}

.product-information__grid {
  align-items: start !important;
}

@media screen and (min-width: 990px) {
  .product-information {
    padding-block: clamp(2rem, 4vw, 4rem) !important;
  }

  .product-information__media,
  .product-details {
    align-self: start !important;
  }
}

/* Better image panel */
.product-information .product-information__media,
.product-information .product-media-gallery,
.product-information product-media-gallery,
.product-information .product-media-container {
  border-radius: 18px !important;
}

.product-information .product-information__media {
  position: relative;
}

.product-information .product-media-gallery,
.product-information product-media-gallery,
.product-information .product-media-container {
  background:
    radial-gradient(circle at center, rgba(215, 38, 34, 0.13), transparent 25rem),
    linear-gradient(180deg, #171717, #080808) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 52px rgba(0, 0, 0, 0.34) !important;
}

/* Guided details card */
.product-information .product-details,
.product-information [data-testid="product-information-details"],
.product-information .product__info-wrapper {
  width: 100% !important;
  color: var(--perf-white) !important;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #151515 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 18px !important;
  padding: clamp(1.25rem, 2.3vw, 2.15rem) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 24px 54px rgba(0, 0, 0, 0.34) !important;
}

/* Let Horizon group inside details fill the card */
.product-information .product-details > .group-block {
  width: 100% !important;
}

/* Title */
.product-information h1,
.product-information .product-title,
.product-information product-title {
  max-width: 740px !important;
  margin-bottom: 0.7rem !important;
  color: #ffffff !important;
  font-size: clamp(1.85rem, 2.3vw, 3rem) !important;
  line-height: 1.02 !important;
  font-weight: 950 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

.product-information h1::after,
.product-information .product-title::after,
.product-information product-title::after {
  width: 74px !important;
  height: 4px !important;
  margin-top: 0.85rem !important;
}

/* Product summary badges */
.product-information .perf-product-summary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.25rem 0 0.75rem;
}

.product-information .perf-product-summary-badges .perf-badge {
  position: static;
  min-height: 1.35rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.62rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 18px rgba(0, 0, 0, 0.24);
}

.product-information .perf-product-summary {
  margin: 0.25rem 0 1rem;
  padding: 0.8rem 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--perf-red);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.42;
  font-weight: 700;
}

/* Price */
.product-information .price,
.product-information product-price {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  min-height: 40px !important;
  margin: 0.25rem 0 0.9rem !important;
  padding: 0.38rem 0.72rem !important;
  border-left: 3px solid var(--perf-red) !important;
  border-radius: 10px !important;
  background: rgba(0, 0, 0, 0.24) !important;
  color: #ffffff !important;
  font-weight: 950 !important;
}

/* Configure panel added around variant picker */
.product-information .perf-config-panel {
  margin-top: 1.05rem !important;
  padding: 1rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0e0e0e !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 14px !important;
}

.product-information .perf-config-panel__header {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.product-information .perf-config-panel__eyebrow {
  width: fit-content;
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(215, 38, 34, 0.48);
  border-radius: 999px;
  background: rgba(215, 38, 34, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.product-information .perf-config-panel__header strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Variant picker */
.product-information variant-picker,
.product-information .variant-picker {
  margin-top: 1rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.product-information .variant-picker__form {
  display: grid !important;
  gap: 0.85rem !important;
}

.product-information .variant-option--dropdowns > label,
.product-information .variant-option legend {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
}

.product-information .variant-option__select-wrapper {
  min-height: 48px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    #090909 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 12px !important;
}

.product-information .variant-option__select-wrapper:hover,
.product-information .variant-option__select-wrapper:focus-within {
  border-color: rgba(215, 38, 34, 0.72) !important;
  box-shadow: 0 0 0 1px rgba(215, 38, 34, 0.24);
}

.product-information .variant-option__select {
  height: 48px !important;
  min-height: 48px !important;
  padding-inline: 1rem 2.75rem !important;
  background: transparent !important;
  color: #ffffff !important;
  border: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
}

/* Buttons flow */
.product-information .product-form-buttons {
  margin-top: 1rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.product-information .buy-buttons-block,
.product-information product-form-component,
.product-information .shopify-product-form {
  width: 100% !important;
}

.product-information .product-form-buttons {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem !important;
  align-items: stretch !important;
}

.product-information .quantity-selector,
.product-information quantity-selector {
  min-width: 112px !important;
}

.product-information .add-to-cart-button,
.product-information button[name="add"],
.product-information .product-form__submit {
  min-height: 52px !important;
  border-radius: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.045em !important;
}

.product-information .shopify-payment-button,
.product-information .shopify-payment-button__button,
.product-information .dynamic-checkout {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

/* Notes */
.product-information .perf-product-notes {
  margin-top: 1.15rem !important;
}

.product-information .perf-product-notes__inner {
  padding: 1rem 1.1rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 14px !important;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .product-information {
    padding-block: 0 !important;
  }

  .product-information .product-details,
  .product-information [data-testid="product-information-details"],
  .product-information .product__info-wrapper {
    border-radius: 0 !important;
    padding: 1rem !important;
  }

  .product-information .product-form-buttons {
    grid-template-columns: 1fr !important;
  }

  .product-information .quantity-selector,
  .product-information quantity-selector {
    min-width: 100% !important;
  }

  .product-information .perf-product-summary,
  .product-information .perf-config-panel,
  .product-information .perf-product-notes__inner {
    padding: 0.9rem !important;
  }
}

/* ==========================================================
   Product Page - Dynamic Checkout / PayPal Cleanup
   ========================================================== */

.product-information .shopify-payment-button,
.product-information .dynamic-checkout,
.product-information accelerated-checkout {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin-top: 0.25rem !important;
}

.product-information .shopify-payment-button__button,
.product-information .shopify-payment-button__button--unbranded,
.product-information .shopify-payment-button__button--branded {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.24) !important;
}

.product-information .shopify-payment-button__button--branded {
  background: #ffc439 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.product-information .shopify-payment-button__button--branded:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.product-information .shopify-payment-button__more-options {
  display: block !important;
  width: fit-content !important;
  margin: 0.65rem auto 0 !important;
  color: var(--perf-red) !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.075em !important;
  text-transform: uppercase !important;
  text-decoration: underline !important;
  text-underline-offset: 0.22rem;
}

/* Make the add-to-cart + PayPal area feel grouped */
.product-information .product-form-buttons {
  gap: 0.75rem !important;
}

.product-information .product-form-buttons > .shopify-payment-button,
.product-information .product-form-buttons > accelerated-checkout {
  margin-top: -0.1rem !important;
}

.product-information .shopify-payment-button,
.product-information accelerated-checkout {
  display: none !important;
}

/* ==========================================================
   Product Page - Final Guided Purchase Overrides
   Safe bottom-of-file override
   ========================================================== */

/* Keep the main product area premium and balanced */
.product-information {
  padding-block: clamp(2rem, 4vw, 4rem) !important;
}

.product-information__grid {
  align-items: start !important;
}

/* Product image panel */
.product-information .product-information__media,
.product-information .product-media-gallery,
.product-information product-media-gallery,
.product-information .product-media-container {
  border-radius: 18px !important;
}

/* Product info card */
.product-information .product-details,
.product-information [data-testid="product-information-details"],
.product-information .product__info-wrapper {
  width: 100% !important;
  align-self: start !important;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #151515 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-top-color: rgba(255, 255, 255, 0.2) !important;
  border-radius: 18px !important;
  padding: clamp(1.25rem, 2.25vw, 2rem) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 54px rgba(0, 0, 0, 0.34) !important;
}

/* Let Horizon's inner group fill the card */
.product-information .product-details > .group-block {
  width: 100% !important;
}

/* Badges near title */
.product-information .perf-product-summary-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.35rem !important;
  margin: 0 0 0.8rem !important;
}

.product-information .perf-product-summary-badges .perf-badge {
  position: static !important;
  min-height: 1.35rem !important;
  padding: 0.28rem 0.55rem !important;
  font-size: 0.62rem !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 18px rgba(0, 0, 0, 0.24) !important;
}

/* Product title */
.product-information h1,
.product-information .product-title,
.product-information product-title {
  max-width: 740px !important;
  margin-bottom: 0.75rem !important;
  color: #ffffff !important;
  font-size: clamp(1.85rem, 2.3vw, 3rem) !important;
  line-height: 1.02 !important;
  font-weight: 950 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

.product-information h1::after,
.product-information .product-title::after,
.product-information product-title::after {
  width: 74px !important;
  height: 4px !important;
  margin-top: 0.85rem !important;
}

/* Summary / fitment guidance */
.product-information .perf-product-summary {
  margin: 0.25rem 0 1rem !important;
  padding: 0.85rem 0.95rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 12px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.92rem !important;
  line-height: 1.42 !important;
  font-weight: 750 !important;
}

/* Variant configure panel */
.product-information .perf-config-panel {
  margin-top: 1rem !important;
  padding: 1rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0e0e0e !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 14px !important;
}

.product-information .perf-config-panel__header {
  display: grid !important;
  gap: 0.2rem !important;
  margin-bottom: 0.75rem !important;
}

.product-information .perf-config-panel__eyebrow {
  width: fit-content !important;
  padding: 0.28rem 0.5rem !important;
  border: 1px solid rgba(215, 38, 34, 0.48) !important;
  border-radius: 999px !important;
  background: rgba(215, 38, 34, 0.13) !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.62rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.075em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.product-information .perf-config-panel__header strong {
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

/* Price */
.product-information .price,
.product-information product-price {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  min-height: 40px !important;
  margin: 0.25rem 0 0.9rem !important;
  padding: 0.38rem 0.72rem !important;
  border-left: 3px solid var(--perf-red) !important;
  border-radius: 10px !important;
  background: rgba(0, 0, 0, 0.24) !important;
  color: #ffffff !important;
  font-weight: 950 !important;
}

/* Quantity + add to cart */
.product-information .product-form-buttons {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 0.85rem !important;
  align-items: stretch !important;
  margin-top: 1rem !important;
  padding-top: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.product-information .quantity-selector,
.product-information quantity-selector {
  min-width: 112px !important;
  min-height: 52px !important;
}

.product-information .add-to-cart-button,
.product-information button[name="add"],
.product-information .product-form__submit {
  min-height: 52px !important;
  border-radius: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.045em !important;
}

/* Dynamic checkout / PayPal cleanup */
.product-information .shopify-payment-button,
.product-information .dynamic-checkout,
.product-information accelerated-checkout {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin-top: 0.1rem !important;
}

.product-information .shopify-payment-button__button,
.product-information .shopify-payment-button__button--unbranded,
.product-information .shopify-payment-button__button--branded {
  width: 100% !important;
  min-height: 52px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

/* Important notes card */
.product-information .perf-product-notes {
  width: 100% !important;
  margin-top: 1.15rem !important;
}

.product-information .perf-product-notes__inner {
  width: 100% !important;
  padding: 1rem 1.1rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 14px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.2) !important;
}

.product-information .perf-product-notes .rte,
.product-information .perf-product-notes .text-block,
.product-information .perf-product-notes [class*="text"] {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.product-information .perf-product-notes :is(p, li) {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

.product-information .perf-product-notes :is(strong, b) {
  color: #ffffff !important;
  font-weight: 950 !important;
}

/* Mobile layout */
@media screen and (max-width: 749px) {
  .product-information {
    padding-block: 0 !important;
  }

  .product-information .product-details,
  .product-information [data-testid="product-information-details"],
  .product-information .product__info-wrapper {
    border-radius: 0 !important;
    padding: 1rem !important;
  }

  .product-information .product-form-buttons {
    grid-template-columns: 1fr !important;
  }

  .product-information .quantity-selector,
  .product-information quantity-selector {
    min-width: 100% !important;
  }

  .product-information .perf-product-summary,
  .product-information .perf-config-panel,
  .product-information .perf-product-notes__inner {
    padding: 0.9rem !important;
  }
}

/* ==========================================================
   Product Page - Stronger Guided Purchase Layout
   ========================================================== */

.product-information .perf-product-title-wrap {
  display: grid !important;
  gap: 0.85rem !important;
}

/* Better badge/title rhythm */
.product-information .perf-product-summary-badges {
  margin-bottom: 0.9rem !important;
}

.product-information h1,
.product-information .product-title,
.product-information product-title {
  margin-bottom: 0 !important;
}

/* Summary directly under title */
.product-information .perf-product-summary {
  margin: 0 0 1.15rem !important;
  padding: 0.9rem 1rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.24) !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 13px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.93rem !important;
  line-height: 1.42 !important;
  font-weight: 750 !important;
}

/* Make price feel like the start of the buying area */
.product-information product-price,
.product-information .price {
  margin-top: 0.2rem !important;
  margin-bottom: 0 !important;
}

/* Turn the quantity/add-to-cart area into a real purchase panel */
.product-information .product-form-buttons {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 116px minmax(0, 1fr) !important;
  gap: 0.85rem !important;
  align-items: stretch !important;

  margin-top: 1rem !important;
  padding: 1.05rem !important;

  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.12), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    #0c0c0c !important;

  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 15px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 28px rgba(0, 0, 0, 0.22) !important;
}

/* Small label above purchase controls */
.product-information .product-form-buttons::before {
  content: "Ready to order";
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 0.05rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Quantity */
.product-information .quantity-selector,
.product-information quantity-selector {
  min-width: 116px !important;
  min-height: 52px !important;
  border-radius: 12px !important;
}

/* Add to cart */
.product-information .add-to-cart-button,
.product-information button[name="add"],
.product-information .product-form__submit {
  min-height: 52px !important;
  border-radius: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.05em !important;
}

/* Pull notes closer to purchase panel */
.product-information .perf-product-notes {
  margin-top: 1rem !important;
}

.product-information .perf-product-notes__inner {
  padding: 1rem 1.1rem !important;
  border-radius: 14px !important;
}

/* Make short notes look like a clean row instead of floating low text */
.product-information .perf-product-notes p {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.35rem !important;
  align-items: baseline !important;
}

.product-information .perf-product-notes strong,
.product-information .perf-product-notes b {
  color: #ffffff !important;
  font-weight: 950 !important;
}

/* Reduce excess vertical stretching inside the info card */
.product-information .product-details > .group-block {
  gap: 0.85rem !important;
}

@media screen and (max-width: 749px) {
  .product-information .product-form-buttons {
    grid-template-columns: 1fr !important;
    padding: 0.9rem !important;
  }

  .product-information .quantity-selector,
  .product-information quantity-selector {
    min-width: 100% !important;
  }
}

/* ==========================================================
   TUNESXFP Custom Product Purchase Rail - Option A Test
   ========================================================== */

.product-information .perf-pdp-rail {
  width: 100%;
  display: grid;
  gap: 1rem;
  color: #ffffff;
}

.product-information .perf-pdp-rail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-information .perf-pdp-rail__badges .perf-badge {
  position: static;
  min-height: 1.35rem;
  padding: 0.3rem 0.58rem;
  font-size: 0.62rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 18px rgba(0, 0, 0, 0.25);
}

.product-information .perf-pdp-rail__header {
  display: grid;
  gap: 0.85rem;
}

.product-information .perf-pdp-rail__title {
  margin: 0;
  max-width: 760px;
  color: #ffffff !important;
  font-size: clamp(2rem, 2.55vw, 3.25rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.product-information .perf-pdp-rail__title::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--perf-red), var(--perf-red-dark));
}

.product-information .perf-pdp-rail__summary {
  margin: 0;
  padding: 0.95rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 4px solid var(--perf-red);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
  font-weight: 750;
}

.product-information .perf-pdp-rail__price {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-left: 3px solid var(--perf-red);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.product-information .perf-pdp-panel,
.product-information .perf-pdp-next,
.product-information .perf-pdp-notes {
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.1), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.014)),
    #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.2);
}

.product-information .perf-pdp-panel--config,
.product-information .perf-pdp-notes {
  border-left: 4px solid var(--perf-red);
}

.product-information .perf-pdp-panel__header,
.product-information .perf-pdp-next > h2,
.product-information .perf-pdp-notes > h2 {
  margin: 0 0 0.8rem;
}

.product-information .perf-pdp-panel__header {
  display: grid;
  gap: 0.25rem;
}

.product-information .perf-pdp-panel__eyebrow {
  width: fit-content;
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(215, 38, 34, 0.48);
  border-radius: 999px;
  background: rgba(215, 38, 34, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.product-information .perf-pdp-panel__header h2,
.product-information .perf-pdp-next h2,
.product-information .perf-pdp-notes h2 {
  margin: 0;
  color: #ffffff !important;
  font-size: 0.98rem;
  font-weight: 950;
  letter-spacing: 0.045em;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-information .perf-pdp-options {
  display: grid;
  gap: 0.8rem;
}

.product-information .perf-pdp-option {
  display: grid;
  gap: 0.42rem;
}

.product-information .perf-pdp-option__label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.product-information .perf-pdp-option__select {
  width: 100%;
  min-height: 48px;
  padding: 0 2.75rem 0 1rem;
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    #090909;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
}

.product-information .perf-pdp-option__select:hover,
.product-information .perf-pdp-option__select:focus {
  border-color: rgba(215, 38, 34, 0.72);
  box-shadow: 0 0 0 1px rgba(215, 38, 34, 0.24);
  outline: none;
}

.product-information .perf-pdp-option__select option {
  background: #101010;
  color: #ffffff;
}

.product-information .perf-pdp-form {
  margin: 0;
}

.product-information .perf-pdp-purchase-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}

.product-information .perf-pdp-qty {
  min-height: 52px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  overflow: hidden;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}

.product-information .perf-pdp-qty__button,
.product-information .perf-pdp-qty__input {
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 950;
  text-align: center;
}

.product-information .perf-pdp-qty__button {
  cursor: pointer;
  font-size: 1rem;
  background: rgba(215, 38, 34, 0.17) !important;
}

.product-information .perf-pdp-qty__button:hover {
  background: rgba(215, 38, 34, 0.32) !important;
}

.product-information .perf-pdp-qty__input {
  appearance: textfield;
}

.product-information .perf-pdp-qty__input::-webkit-outer-spin-button,
.product-information .perf-pdp-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-information .perf-pdp-add {
  width: 100%;
  min-height: 52px;
  border-radius: 12px !important;
  font-weight: 950 !important;
  letter-spacing: 0.05em !important;
}

.product-information .perf-pdp-next__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-information .perf-pdp-next__grid > div {
  min-width: 0;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
}

.product-information .perf-pdp-next__grid span {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark));
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
}

.product-information .perf-pdp-next__grid strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.product-information .perf-pdp-next__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

.product-information .perf-pdp-notes__content {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.product-information .perf-pdp-notes__content :is(p, li) {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-information .perf-pdp-notes__content :is(strong, b) {
  color: #ffffff !important;
  font-weight: 950;
}

/* Hide old dynamic checkout if any old block survives */
.product-information .shopify-payment-button,
.product-information accelerated-checkout {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .product-information .perf-pdp-rail {
    gap: 0.9rem;
  }

  .product-information .perf-pdp-rail__title {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
  }

  .product-information .perf-pdp-purchase-row,
  .product-information .perf-pdp-next__grid {
    grid-template-columns: 1fr;
  }

  .product-information .perf-pdp-panel,
  .product-information .perf-pdp-next,
  .product-information .perf-pdp-notes {
    padding: 0.9rem;
  }
}

/* ==========================================================
   Product Page - Add-on Only Notice
   ========================================================== */

.product-information .perf-addon-only-notice {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0.25rem;
  padding: 1rem 1.1rem;

  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.12), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    #0d0d0d;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 4px solid var(--perf-red);
  border-radius: 14px;

  color: rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 14px 28px rgba(0, 0, 0, 0.2);
}

.product-information .perf-addon-only-notice strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.product-information .perf-addon-only-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ==========================================================
   Cart Page - TUNESXFP Safer Cleanup v2
   Does NOT override cart item grid structure
   ========================================================== */

/* Page background */
body:has(.cart-page) .shopify-section:has(.cart-page),
body:has(.cart-page) .section:has(.cart-page) {
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.12), transparent 30rem),
    radial-gradient(circle at bottom left, rgba(215, 38, 34, 0.08), transparent 30rem),
    linear-gradient(135deg, #080808 0%, #111111 52%, #1a0505 100%) !important;
  color: #ffffff !important;
}

/* Keep Horizon's cart grid, just improve spacing */
body:has(.cart-page) .cart-page {
  padding-block: clamp(1.5rem, 3vw, 3rem) !important;
  color: #ffffff !important;
}

/* Cart title */
body:has(.cart-page) .cart-page__title {
  margin-bottom: 1rem !important;
}

body:has(.cart-page) .cart-title,
body:has(.cart-page) .cart-page__title :is(h1, h2, h3, h4, .h1, .h2, .h3, .h4) {
  color: #ffffff !important;
  font-weight: 950 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

/* Left cart item panel */
body:has(.cart-page) .cart-page__items {
  min-width: 0 !important;
  padding: clamp(1rem, 2vw, 1.25rem) !important;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    #111111 !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 18px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 24px 54px rgba(0, 0, 0, 0.28) !important;
  overflow: hidden !important;
}

/* Style cart rows without changing their grid layout */
body:has(.cart-page) .cart-items__table-row {
  padding: 1rem !important;
  margin-bottom: 0.85rem !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0c0c0c !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-left: 4px solid var(--perf-red) !important;
  border-radius: 15px !important;
}

body:has(.cart-page) .cart-items__table-row:last-child {
  margin-bottom: 0 !important;
}

/* Product image */
body:has(.cart-page) .cart-items__media-container {
  border-radius: 12px !important;
  background: #050505 !important;
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  overflow: hidden !important;
}

body:has(.cart-page) .cart-items__media-image {
  object-fit: cover !important;
  background: #050505 !important;
}

/* Product title/details */
body:has(.cart-page) .cart-items__details,
body:has(.cart-page) .cart-items__details * {
  color: rgba(255, 255, 255, 0.74) !important;
}

body:has(.cart-page) .cart-items__title {
  color: #ffffff !important;
  font-size: 0.98rem !important;
  line-height: 1.3 !important;
  font-weight: 850 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;

  /* Prevent the vertical-letter issue */
  writing-mode: horizontal-tb !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
}

body:has(.cart-page) .cart-items__title:hover {
  color: #ff4a45 !important;
}

/* Item price */
body:has(.cart-page) .cart-items__price,
body:has(.cart-page) .cart-items__price text-component {
  color: #ffffff !important;
  font-weight: 950 !important;
  font-size: 0.95rem !important;
}

/* Quantity controls: style only, do not force row grid */
body:has(.cart-page) .cart-items__quantity-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.55rem !important;
  width: fit-content !important;
}

body:has(.cart-page) .cart-items .quantity-selector,
body:has(.cart-page) .cart-items__quantity .quantity-selector {
  width: 116px !important;
  min-width: 116px !important;
  max-width: 116px !important;
  height: 44px !important;
  min-height: 44px !important;
  display: grid !important;
  grid-template-columns: 34px 48px 34px !important;
  align-items: stretch !important;
  overflow: hidden !important;
  background: #080808 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 12px !important;
}

body:has(.cart-page) .cart-items .quantity-selector button,
body:has(.cart-page) .cart-items .quantity-selector input {
  width: auto !important;
  min-width: 0 !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  text-align: center !important;
  line-height: 44px !important;
}

body:has(.cart-page) .cart-items .quantity-selector button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(215, 38, 34, 0.22) !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
}

body:has(.cart-page) .cart-items .quantity-selector button:hover {
  background: rgba(215, 38, 34, 0.34) !important;
}

body:has(.cart-page) .cart-items .quantity-selector input {
  background: #080808 !important;
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 950 !important;
}

/* Remove button */
body:has(.cart-page) .cart-items__remove {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark)) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 12px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 20px rgba(215, 38, 34, 0.22) !important;
}

/* Summary card */
body:has(.cart-page) .cart-page__summary {
  padding: clamp(1rem, 2vw, 1.25rem) !important;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #111111 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 18px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 54px rgba(0, 0, 0, 0.34) !important;
  height: auto !important;
}

/* Force inner summary areas dark/transparent */
body:has(.cart-page) .cart-page__summary > *,
body:has(.cart-page) .cart-summary,
body:has(.cart-page) .cart-summary--extend,
body:has(.cart-page) .cart-summary__content,
body:has(.cart-page) .cart-summary__inner,
body:has(.cart-page) .cart-totals,
body:has(.cart-page) .cart-actions,
body:has(.cart-page) .cart__ctas {
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* Summary heading */
body:has(.cart-page) .cart-page__summary::before {
  content: "Order Summary";
  display: block;
  margin-bottom: 0.55rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body:has(.cart-page) .cart-page__summary::after {
  content: "";
  display: block;
  width: 66px;
  height: 3px;
  margin: 0 0 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--perf-red), var(--perf-red-dark));
}

/* Summary text */
body:has(.cart-page) .cart-page__summary,
body:has(.cart-page) .cart-page__summary *,
body:has(.cart-page) .cart-totals *,
body:has(.cart-page) .cart-actions * {
  color: rgba(255, 255, 255, 0.78) !important;
}

body:has(.cart-page) .cart-totals__total-label,
body:has(.cart-page) .cart-totals__total-value,
body:has(.cart-page) .cart-totals__total text-component {
  color: #ffffff !important;
  font-weight: 950 !important;
}

body:has(.cart-page) .cart-totals__total {
  padding: 0.85rem 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Discount/note */
body:has(.cart-page) .cart-actions {
  margin-top: 0 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

body:has(.cart-page) .cart-discount__summary,
body:has(.cart-page) .cart-note__summary {
  min-height: 44px !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Checkout */
body:has(.cart-page) .cart__ctas {
  margin-top: 1rem !important;
  gap: 0.75rem !important;
}

body:has(.cart-page) .cart__checkout-button {
  width: 100% !important;
  min-height: 54px !important;
  height: 54px !important;
  border-radius: 13px !important;
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark)) !important;
  color: #ffffff !important;
  font-weight: 950 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
}

body:has(.cart-page) .cart__checkout-button * {
  color: #ffffff !important;
}

body:has(.cart-page) .additional-checkout-buttons {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  border-radius: 13px !important;
}

body:has(.cart-page) .cart__ctas::after {
  content: "Secure checkout • Taxes and shipping calculated at checkout";
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: center;
}

/* Sticky summary desktop only */
@media screen and (min-width: 750px) {
  body:has(.cart-page) .cart-page__summary {
    position: sticky !important;
    top: calc(var(--header-group-height, 80px) + 1.25rem) !important;
    align-self: start !important;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  body:has(.cart-page) .cart-page {
    padding-block: 1rem !important;
  }

  body:has(.cart-page) .cart-page__items,
  body:has(.cart-page) .cart-page__summary {
    border-radius: 14px !important;
    padding: 0.9rem !important;
  }

  body:has(.cart-page) .cart-items__quantity-controls {
    width: 100% !important;
    max-width: 100% !important;
  }

  body:has(.cart-page) .cart-items .quantity-selector {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    grid-template-columns: 44px minmax(0, 1fr) 44px !important;
  }
}

/* ==========================================================
   Cart Page - Fix Order Summary Heading Overlap
   ========================================================== */

/* Stop Horizon subgrid from placing the pseudo heading in the wrong spot */
body:has(.cart-page) .cart-page__summary {
  display: block !important;
}

/* Place custom order summary heading cleanly at the top */
body:has(.cart-page) .cart-page__summary::before {
  content: "Order Summary" !important;
  display: block !important;
  position: static !important;
  margin: 0 0 0.55rem 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  z-index: auto !important;
}

/* Underline should sit under heading, not near checkout button */
body:has(.cart-page) .cart-page__summary::after {
  content: "" !important;
  display: block !important;
  position: static !important;
  width: 66px !important;
  height: 3px !important;
  margin: 0 0 1rem 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--perf-red), var(--perf-red-dark)) !important;
}

/* Keep checkout buttons spaced below totals */
body:has(.cart-page) .cart__ctas {
  margin-top: 1.25rem !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Keep totals and discount area above the buttons naturally */
body:has(.cart-page) .cart-totals {
  position: relative !important;
  z-index: 1 !important;
}

/* ==========================================================
   Essentials vs Elite Floating Comparison
   Bottom CTA + Bottom Drawer
   ========================================================== */

.tuning-level-compare {
  position: relative;
  z-index: 999;
}

.tuning-level-compare__toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

/* Bottom floating CTA */
.tuning-level-compare__tab {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.2rem;
  border: 1px solid rgba(215, 38, 34, 0.86);
  border-radius: 999px;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.34), transparent 9rem),
    linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(8, 8, 8, 0.98));
  color: #fff;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 28px rgba(0, 0, 0, 0.42),
    0 0 18px rgba(215, 38, 34, 0.22);
  transform: translateX(-50%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  animation: tuningLevelAttention 5.2s ease-in-out infinite;
}

.tuning-level-compare__tab span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  writing-mode: horizontal-tb;
  transform: none;
  white-space: nowrap;
}

.tuning-level-compare__tab span::before {
  content: "Compare";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark));
  color: #fff;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  box-shadow: 0 0 14px rgba(215, 38, 34, 0.34);
}

.tuning-level-compare__tab:hover {
  border-color: rgba(215, 38, 34, 1);
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.42), transparent 9rem),
    linear-gradient(180deg, var(--perf-red), var(--perf-red-dark));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(0, 0, 0, 0.46),
    0 0 34px rgba(215, 38, 34, 0.44);
  transform: translateX(-50%) translateY(-3px);
}

/* Periodic attention glow */
@keyframes tuningLevelAttention {
  0%,
  68%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 14px 28px rgba(0, 0, 0, 0.42),
      0 0 18px rgba(215, 38, 34, 0.22);
    border-color: rgba(215, 38, 34, 0.86);
  }

  74% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 16px 32px rgba(0, 0, 0, 0.46),
      0 0 0 6px rgba(215, 38, 34, 0.12),
      0 0 34px rgba(215, 38, 34, 0.48);
    border-color: rgba(255, 255, 255, 0.24);
  }

  82% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 18px 36px rgba(0, 0, 0, 0.5),
      0 0 0 10px rgba(215, 38, 34, 0.08),
      0 0 44px rgba(215, 38, 34, 0.56);
    border-color: rgba(215, 38, 34, 1);
  }
}

/* Overlay */
.tuning-level-compare__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity 180ms ease;
}

/* Bottom drawer instead of right drawer */
.tuning-level-compare__drawer {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 0;
  top: auto;
  z-index: 1001;
  width: min(980px, calc(100vw - 28px));
  max-height: min(82vh, 760px);
  height: auto;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.22), transparent 22rem),
    radial-gradient(circle at bottom left, rgba(215, 38, 34, 0.10), transparent 18rem),
    linear-gradient(180deg, #151515, #090909);
  border: 1px solid rgba(215, 38, 34, 0.38);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -28px 54px rgba(0, 0, 0, 0.48);
  transform: translateX(-50%) translateY(105%);
  transition: transform 260ms ease;
}

.tuning-level-compare__drawer-inner {
  padding: clamp(22px, 4vw, 38px);
}

.tuning-level-compare__toggle:checked ~ .tuning-level-compare__overlay {
  opacity: 1;
  pointer-events: auto;
}

.tuning-level-compare__toggle:checked ~ .tuning-level-compare__drawer {
  transform: translateX(-50%) translateY(0);
}

/* Header */
.tuning-level-compare__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.35rem;
}

.tuning-level-compare__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.75rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(215, 38, 34, 0.62);
  border-radius: 999px;
  background: rgba(215, 38, 34, 0.15);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tuning-level-compare__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.tuning-level-compare__header h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--perf-red), var(--perf-red-dark));
  box-shadow: 0 0 18px rgba(215, 38, 34, 0.42);
}

.tuning-level-compare__header p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.tuning-level-compare__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 38, 34, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.tuning-level-compare__close:hover {
  transform: rotate(90deg);
  border-color: rgba(215, 38, 34, 0.9);
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark));
}

/* Cards */
.tuning-level-compare__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.tuning-level-compare__card {
  position: relative;
  overflow: hidden;
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.14), transparent 12rem),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.032) 0,
      rgba(255, 255, 255, 0.032) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(180deg, #181818, #101010);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.tuning-level-compare__card--elite {
  border-color: rgba(215, 38, 34, 0.46);
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.26), transparent 13rem),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.032) 0,
      rgba(255, 255, 255, 0.032) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(180deg, #1c1717, #101010);
}

.tuning-level-compare__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tuning-level-compare__badge--elite {
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark));
}

.tuning-level-compare__card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.tuning-level-compare__card > p {
  margin: 0.85rem 0 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.tuning-level-compare__group {
  margin-top: 1rem;
}

.tuning-level-compare__group strong {
  display: block;
  margin-bottom: 0.48rem;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tuning-level-compare__group ul {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tuning-level-compare__group li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.35;
}

.tuning-level-compare__group li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--perf-red);
  box-shadow: 0 0 12px rgba(215, 38, 34, 0.45);
}

.tuning-level-compare__group--muted li::before {
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.tuning-level-compare__note {
  margin-top: 0.95rem;
  padding: 1rem;
  border: 1px solid rgba(215, 38, 34, 0.36);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.15), transparent 14rem),
    rgba(255, 255, 255, 0.035);
}

.tuning-level-compare__note strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tuning-level-compare__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* Keep bottom CTA above sticky cart/purchase bars if present */
@media screen and (min-width: 750px) {
  body:has(.sticky-add-to-cart) .tuning-level-compare__tab,
  body:has(.sticky-cart-bar) .tuning-level-compare__tab,
  body:has(sticky-add-to-cart) .tuning-level-compare__tab {
    bottom: 86px;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  .tuning-level-compare__tab {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    min-height: 50px;
    padding: 0.78rem 1rem;
    transform: none;
  }

  .tuning-level-compare__tab:hover {
    transform: translateY(-2px);
  }

  .tuning-level-compare__tab span {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .tuning-level-compare__drawer {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-height: 88vh;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    transform: translateY(105%);
  }

  .tuning-level-compare__toggle:checked ~ .tuning-level-compare__drawer {
    transform: translateY(0);
  }

  .tuning-level-compare__drawer-inner {
    padding: 22px 16px 28px;
  }

  .tuning-level-compare__cards {
    grid-template-columns: 1fr;
  }

  .tuning-level-compare__header h2 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tuning-level-compare__tab {
    animation: none !important;
  }
}

/* Inline Essentials vs Elite helper above collection product grid */
.tuning-level-inline-help {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: min(690px, 100%);
  margin: 0.15rem 0 0.95rem;
  padding: 0.72rem 0.85rem;

  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.16), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)),
    rgba(10, 10, 10, 0.82);

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 4px solid var(--perf-red);
  border-radius: 14px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.22);
}

.tuning-level-inline-help__content {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.tuning-level-inline-help__content strong {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.tuning-level-inline-help__content span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.tuning-level-inline-help__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.55rem 0.72rem;

  border: 1px solid rgba(215, 38, 34, 0.7);
  border-radius: 999px;
  background:
    radial-gradient(circle at top right, rgba(215, 38, 34, 0.22), transparent 7rem),
    rgba(0, 0, 0, 0.24);

  color: #ffffff;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;

  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.tuning-level-inline-help__button:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 38, 34, 1);
  background: linear-gradient(180deg, var(--perf-red), var(--perf-red-dark));
  box-shadow:
    0 0 0 1px rgba(215, 38, 34, 0.28),
    0 12px 24px rgba(215, 38, 34, 0.2);
}

.product-recommendations .tuning-level-inline-help,
.shopify-section:has(.product-recommendations) .tuning-level-inline-help {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .tuning-level-inline-help {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    padding: 0.8rem;
  }

  .tuning-level-inline-help__button {
    width: 100%;
    min-height: 42px;
  }
}

  /* Hide custom inline mobile menu so it does not stack inside the header */
  .perf-mobile-menu {
    display: none !important;
  }

  /* Keep the header compact */
  .header__columns,
  .header__row,
  .header {
    min-height: 64px !important;
  }

  /* Keep logo from getting squeezed */
  .header-logo,
  .header-logo a,
  .header__heading,
  .header__heading-link {
    max-width: 190px !important;
  }

  .header-logo img,
  .header__heading-logo,
  .header__heading-logo-wrapper img {
    max-width: 190px !important;
    height: auto !important;
  }

  /* Keep icons aligned */
  .header-actions,
  .header__icons {
    display: flex !important;
    align-items: center !important;
    gap: 0.7rem !important;
  }

  .header-actions__action,
  .header__icon {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
  }
}

/* ==========================================================
   Custom Mobile Navigation Drawer
   ========================================================== */

.perf-mobile-nav {
  display: none;
}

.perf-mobile-nav__toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 1180px) {
  .perf-mobile-nav {
    display: block;
  }

  .perf-mobile-nav__button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(215, 38, 34, 0.55);
    border-radius: 999px;
    background:
      radial-gradient(circle at top right, rgba(215, 38, 34, 0.18), transparent 4rem),
      #0b0b0b;
    cursor: pointer;
  }

  .perf-mobile-nav__button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
  }

  .perf-mobile-nav__overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    display: block;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: opacity 180ms ease;
  }

  .perf-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block !important;
    width: min(340px, 88vw);
    height: 100vh;
    padding: 1rem;
    overflow-y: auto;

    background:
      radial-gradient(circle at top left, rgba(215, 38, 34, 0.18), transparent 18rem),
      linear-gradient(180deg, #151515, #090909) !important;

    border-right: 1px solid rgba(215, 38, 34, 0.36);
    box-shadow: 24px 0 44px rgba(0, 0, 0, 0.42);

    transform: translateX(-105%);
    transition: transform 220ms ease;
  }

  .perf-mobile-nav__toggle:checked ~ .perf-mobile-nav__overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .perf-mobile-nav__toggle:checked ~ .perf-mobile-menu {
    transform: translateX(0);
  }

  .perf-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .perf-mobile-menu__header span {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .perf-mobile-menu__header label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(215, 38, 34, 0.55);
    border-radius: 999px;
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
  }

  .perf-mobile-menu a,
  .perf-mobile-menu summary {
    min-height: 48px;
    padding: 0.85rem 0.25rem;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 950;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .perf-mobile-menu a:hover,
  .perf-mobile-menu summary:hover {
    color: var(--perf-red) !important;
  }

  .header__columns,
  .header__row,
  .header {
    min-height: 66px !important;
  }

  .header-logo,
  .header-logo a,
  .header__heading,
  .header__heading-link {
    max-width: 220px !important;
  }

  .header-logo img,
  .header__heading-logo,
  .header__heading-logo-wrapper img {
    max-width: 220px !important;
    height: auto !important;
  }
}

@media screen and (max-width: 749px) {
  .header-logo,
  .header-logo a,
  .header__heading,
  .header__heading-link {
    max-width: 190px !important;
  }

  .header-logo img,
  .header__heading-logo,
  .header__heading-logo-wrapper img {
    max-width: 190px !important;
  }

  .perf-mobile-nav__button {
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================
   Product SKU Display
   Product cards + product pages
   ========================================================== */

.perf-product-sku {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.2;
}

.perf-product-sku span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(215, 38, 34, 0.16);
  border: 1px solid rgba(215, 38, 34, 0.42);
  color: #ffffff;
  font-weight: 950;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.perf-product-sku strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  letter-spacing: 0.02em;
}

/* Product card SKU */
.product-card .perf-product-sku,
.resource-list__item .perf-product-sku,
.product-grid__item .perf-product-sku {
  margin-top: 0.28rem;
  font-size: 0.72rem;
}

.product-card .perf-product-sku span,
.resource-list__item .perf-product-sku span,
.product-grid__item .perf-product-sku span {
  min-height: 1.15rem;
  padding: 0.18rem 0.38rem;
  font-size: 0.55rem;
}

.product-card .perf-product-sku strong,
.resource-list__item .perf-product-sku strong,
.product-grid__item .perf-product-sku strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Product page SKU */
.product-information .perf-product-sku--pdp {
  margin: 0.1rem 0 0.75rem;
  padding: 0.48rem 0.58rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--perf-red);
  border-radius: 10px;
  font-size: 0.82rem;
}

.product-information .perf-product-sku--pdp span {
  min-height: 1.25rem;
  padding: 0.22rem 0.44rem;
  font-size: 0.58rem;
}

.product-information .perf-product-sku--pdp strong {
  color: #ffffff;
  font-weight: 950;
}

@media screen and (max-width: 749px) {
  .product-card .perf-product-sku,
  .resource-list__item .perf-product-sku,
  .product-grid__item .perf-product-sku {
    font-size: 0.66rem;
  }

  .product-information .perf-product-sku--pdp {
    font-size: 0.78rem;
  }
}


/* ==========================================================
   Desktop Header Logo Height Override
   Allows larger desktop logo/header
   ========================================================== */

@media screen and (min-width: 1181px) {
  .header__columns,
  .header__row,
  .header {
    min-height: 92px !important;
  }

  .header-logo,
  .header-logo a,
  .header__heading,
  .header__heading-link {
    max-width: 320px !important;
  }

  .header-logo img,
  .header__heading-logo,
  .header__heading-logo-wrapper img {
    max-width: 320px !important;
    max-height: 82px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

.txfp-vin-field {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(220, 38, 38, 0.45);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.85);
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.12);
}

.txfp-vin-field label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.txfp-vin-field label span {
  color: #e11d2e;
}

.txfp-vin-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #050505;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.txfp-vin-field input:focus {
  outline: none;
  border-color: #e11d2e;
  box-shadow: 0 0 0 2px rgba(225, 29, 46, 0.25);
}

.txfp-vin-field small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}