/** Shopify CDN: Minification failed

Line 749:0 Unexpected "}"

**/
/* TorqueN Hub — dark urban moto design system */

:root {
  --carbon: #111111;
  --graphite: #262626;
  --slate: #5e6b75;
  --steel: #a8b4be;

  --background: var(--carbon);
  --foreground: #f7f7f7;
  --card: var(--graphite);
  --muted-foreground: var(--steel);
  --border: rgba(168, 180, 190, 0.18);

  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Quicksand", ui-sans-serif, system-ui, sans-serif;

  --page: 1400px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--card);
  padding: 0.5rem 1rem;
}

.wrap {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .wrap {
    padding: 0 2.5rem;
  }
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin: 0;
}

.muted {
  color: var(--muted-foreground);
}

.hairline {
  border-top: 1px solid var(--border);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: var(--foreground);
  color: var(--carbon);
  border: 0;
  transition: opacity 0.3s ease;
}
.btn:hover {
  opacity: 0.9;
}

.btn--ghost {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
  height: 2.5rem;
  padding: 0 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}
.btn--ghost:hover {
  background: var(--card);
  border-color: rgba(247, 247, 247, 0.4);
}
.btn[disabled],
.btn--ghost[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.btn--full {
  width: 100%;
}

/* Announcement */
.announcement {
  background: var(--carbon);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(38, 38, 38, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__brand img {
  height: 2rem;
  width: auto;
  object-fit: contain;
}
.header__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.header__nav {
  display: none;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}
.header__nav a {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}
.header__nav a:hover {
  color: var(--foreground);
}
.cart-link {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.cart-link:hover {
  color: var(--foreground);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 88svh;
  overflow: hidden;
}
.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero__overlay {
  background: linear-gradient(
    to top,
    var(--background) 0%,
    rgba(17, 17, 17, 0.6) 55%,
    rgba(17, 17, 17, 0.3) 100%
  );
}
.hero__content {
  position: relative;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .hero__content {
    padding-bottom: 7rem;
  }
}
.hero__wordmark {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .hero__wordmark {
    height: 3.5rem;
  }
}
.hero h1 {
  margin-top: 2rem;
  max-width: 46rem;
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: 0.9;
}
.hero p {
  margin-top: 1.5rem;
  max-width: 28rem;
  color: var(--muted-foreground);
}
.hero .btn {
  margin-top: 2.5rem;
}

/* Sections */
.section {
  border-top: 1px solid var(--border);
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}
.section__head h2 {
  margin-top: 1rem;
  max-width: 40rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

/* Category grid */
.categories {
  display: grid;
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--background);
  padding: 2rem;
  transition: background-color 0.3s ease;
}
.category:hover {
  background: var(--card);
}
.category__label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category__blurb {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Product grid */
.product-grid {
  display: grid;
  gap: 3.5rem 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card__media {
  display: block;
  overflow: hidden;
  background: var(--card);
  aspect-ratio: 4 / 5;
}
.card__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.card:hover .card__media img {
  transform: scale(1.03);
}
.card__placeholder {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.card__title {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.card__price {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.card form {
  margin-top: 1rem;
}

.section__bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}
.section__bar h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}

.empty {
  padding: 5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Story */
.story {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .story {
    grid-template-columns: 1fr 0.8fr;
  }
}
.story__media {
  overflow: hidden;
  background: var(--card);
}
.story h2 {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 5vw, 3rem);
}
.story p {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
}
.story__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.story__facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story__facts span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Product page */
.product {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 900px) {
  .product {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}
.product__gallery {
  display: grid;
  gap: 1rem;
}
.product__gallery img {
  width: 100%;
  background: var(--card);
}
.product h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}
.product__price {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--muted-foreground);
}
.product__description {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  color: var(--muted-foreground);
}
.product__description h2,
.product__description h3 {
  color: var(--foreground);
}
.field {
  margin-top: 1.5rem;
}
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.field select,
.field input {
  width: 100%;
  max-width: 20rem;
  height: 2.75rem;
  padding: 0 0.75rem;
  background: var(--card);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 0;
}

/* Cart */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.cart-table th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}
.cart-table td {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  vertical-align: top;
}
.cart-table img {
  width: 72px;
  background: var(--card);
}
.cart__foot {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  margin-top: 2rem;
}
.cart__total {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__brand {
  max-width: 20rem;
}
.footer__brand img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}
.footer__brand p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}
.footer h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}
.footer ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.footer li + li {
  margin-top: 0.6rem;
}
.footer li a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}
.footer li a:hover {
  color: var(--foreground);
}
.footer__fine {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--slate);
}
@media (min-width: 640px) {
  .footer__fine {
    flex-direction: row;
    justify-content: space-between;
  }
}

.pagination {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.shopify-section-group-header-group + .shopify-section,
.shopify-section:has(.hero) {
  margin-top: 24px;
}
/* ==========================================================================
   Torquen Hub Header — Mobile Logo Fix
   ========================================================================== */

@media (min-width: 769px) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hidden-phone {
    display: none !important;
  }

  .th-header__bar {
    padding: 0 16px;
    height: 64px;
  }

  .th-header__logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 12px;
  }

  .th-header__logo-full,
  .th-header__logo-shield,
  .th-header__logo img {
    width: auto;
    height: auto;
    max-height: 36px;
    display: block;
  }

  .th-header__text-logo {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--color-text-primary);
    line-height: 1;
  }

  .th-header__actions {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .th-header__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .th-header__menu-toggle {
    margin-left: 4px;
  }

  .th-header__mobile-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-hairline);
    padding: 12px 16px 24px;
    z-index: 100;
  }

  .th-header__mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .th-header__mobile-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 0;
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-hairline);
  }

  .th-header__mobile-link--active {
    color: var(--color-steel);
  }
}
  .th-header__mobile-link--active {
    color: var(--color-steel);
  }
}
/* ── TorqueN Hub Header — Desktop Layout ── */
.th-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(38, 38, 38, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.th-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 2.5rem;
  max-width: var(--page);
  margin: 0 auto;
}

.th-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.th-header__text-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.th-header__nav {
  display: flex;
  align-items: center;
}

.th-header__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.th-header__link {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.th-header__link:hover,
.th-header__link--active {
  color: var(--foreground);
}

.th-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.th-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
  position: relative;
}

.th-header__icon:hover {
  color: var(--foreground);
}

.th-header__count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--foreground);
  color: var(--carbon);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .header__icon,
  .header__icon--menu,
  .menu-drawer__toggle,
  header button[aria-controls],
  .header__icons button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}
@media screen and (max-width: 749px) {
  .menu-drawer__menu-item,
  .menu-drawer__menu-item span,
  .menu-drawer summary {
    font-size: 14px !important;
    line-height: 1.25 !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .menu-drawer__navigation-container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .menu-drawer__submenu .menu-drawer__menu-item {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }
}
/* Mobile nav dropdown - compact styling */
.menu-drawer__navigation a,
.menu-drawer__menu-item,
.menu-drawer .list-menu__item {
  font-size: 14px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  line-height: 1.3 !important;
}
