/** Shopify CDN: Minification failed

Line 77:0 Unexpected "}"
Line 291:0 Unexpected "}"

**/
/* Section wrapper */
.steering-wheel-section {
  padding: 80px 60px;
  background: radial-gradient(ellipse at center bottom, #2e0c08 0%,#1b0a08 35%,#0d0403 60%,#000000 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.wheel-logo {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 2%;
  flex-shrink: 0;
}

/* Scrollable container */
.fit-logo-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  position: relative;
}

/* Left column: section heading */
.section-heading {
  flex: 0 0 250px; /* fixed width for title */
  display: flex;
  align-items: center;
}

.section-heading h2 {
  font-size: 5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  white-space: nowrap;
  color: white;
}

/* Right column: scrollable products */
.scroll-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  min-width: 0;
  max-width: 890px; /* 4 cards + 3 gaps */
  margin-left: auto; /* push to the right */
}


/* Scroll area (holds product row) */
.scroll-area {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  min-width: 0;


    /* Hide scrollbar for WebKit browsers (Chrome, Safari) */
  scrollbar-width: none;           /* Firefox */
  -ms-overflow-style: none;        /* IE 10+ */
}
}

.scroll-area::-webkit-scrollbar {
  display: none;                   /* Chrome, Safari, Opera */
}


/* Individual product cards */
.cover-item {
  background: #121212;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  max-width: 180px;
  flex: 0 1 auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  max-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cover-item:hover {
  transform: translateY(-6px);
}

.cover-item img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.cover-item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 45px;
  margin-bottom: 8px;
}

.cover-item p {
  color: #ccc;
  margin-bottom: 10px;
}

.cover-item form {
  margin-top: auto;
}

/* Buttons */
.btn-secondary {
  background: #c21313;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: #e61919;
}

/* Scroll arrows */
.scroll-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  padding: 10px 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.scroll-btn:hover {
  transform: scale(1.1);
}

.scroll-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .steering-wheel-section {
    padding: 60px 40px;
  }

  .section-heading h2 {
    font-size: 5rem;
    white-space: normal; /* allows wrapping when there’s no space */
    overflow-wrap: break-word; /* breaks long words if needed */
    word-break: break-word; /* extra safety for long words */
  }

  .wheel-logo { flex: 0 1 360px; }
  .wheel-logo img { max-width: 360px; }

  .hero-image{
    margin: 0;
  }

}

@media (max-width: 768px) {
  .steering-wheel-section {
    padding: 50px 24px;
  }

  .fit-logo-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .scroll-area {
    gap: 20px;
  }

  .cover-item {
    min-width: 140px;
    max-width: 140px;
    padding: 16px 12px;
  }

  .scroll-btn {
    font-size: 1.8rem;
    padding: 8px 12px;
  }
}


/* ✅ Responsive adjustments (mobile refined fix) */
@media (max-width: 768px) {
  .steering-wheel-section {
    padding: 50px 24px;
  }

  .fit-logo-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .scroll-wrapper {
    max-width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .scroll-area {
    gap: 16px;
    padding-right: 24px; /* ✅ ensures last product visible */
    scroll-padding-right: 24px;
  }

  .cover-item {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 160px; /* ✅ roughly same as desktop but fits smaller screens */
    padding: 16px 12px;
  }

  .cover-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
  }

  .scroll-btn {
    display: none; /* ✅ hide arrows on mobile */
  }


  .wheel-logo {
    order: 1;
    width: 100000%;
    margin-bottom: 6px;

  }

}



.wheel-logo {
  flex: 0 1 420px; /* current width */
  display: flex;
  align-items: center;
  margin-left: auto;       /* pushes it away from text */
  margin-right: auto;      /* balances empty space on the left */
}
}

.wheel-logo img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

@media (min-width: 768px) and (max-width: 1400px) {
  .section-heading h2 {
      font-size: 5rem;
      white-space: normal;
      overflow-wrap: break-word;
      word-break: break-word;
  }


  .hero-image img {
    width: 300px;
}


}


