/** Shopify CDN: Minification failed

Line 346:19 Expected identifier but found whitespace
Line 346:20 Unexpected "0."
Line 346:23 Unexpected "{"
Line 346:32 Expected ":"
Line 346:60 Expected ":"
Line 1013:8 Expected identifier but found whitespace
Line 1013:10 Unexpected "{"

**/


/* CSS from section stylesheet tags */
.accordion-section {
  padding: 1rem  13%;
}

@media screen and (max-width: 768px) {
.accordion-section {
  padding: 1rem  2rem;
}  
}

.accordion {
  border: none;
}

.accordion-item {
  margin-bottom: 1rem;
}

.accordion-button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}

.accordion-button::after {
  content: '+';
  position: absolute;
  right: 1rem;
  font-size: 1.2rem;
}

.accordion-button.active::after {
  content: '-';
}

.accordion-content {
  padding: 0 1rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px); /* start above */
  transition: 
    max-height 0.3s ease, 
    opacity 0.3s ease, 
    transform 0.3s ease; /* all same duration for smoother motion */
}

.accordion-content.active {
  max-height: 500px; /* or dynamically calculated via JS */
  opacity: 1;
  transform: translateY(0); /* slide into place */
}


@media screen and (min-width: 768px) {
.accordion-video {
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
    columns: 2;
    display: inline-flex;
    width: 100%;
    gap: 15px;
}

.accordion-video-noclick {
  pointer-events: none;
  display: none;
}

.gl-youtube-video {
  width: 50%;
  height: 315px; 
}
}
  
@media screen and (max-width: 768px) {
.accordion-video {
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
    width: 100%;
    gap: 15px;
}  

.gl-youtube-video {
  width: 100%;
  height: 315px; 
}
}
@media (min-width: 768px) {
.announcement-bar {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FCFCFC;
}
}

@media (max-width: 768px) {
.announcement-bar {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 2.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #FCFCFC;
}
}

@media (max-width: 325px) {
  .announcement-bar__inner {
  gap: 1rem !important;    
  }
}
  
.announcement-bar__inner {
  display: flex;
  gap: 5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.announcement-bar__block {
  display: inline-block;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 4rem;
}

@media screen and (max-width: 768px) {
  .events-list {
    padding: 1rem;
  }
}

.event-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.event-details-title {
  text-transform: uppercase;
  font-weight: 600;
}

.gl-event-location {
  font-size: 2rem;
}

.gl-event-name {
  font-size: 1rem;
}

.event-date {
  text-align: center;
  font-weight: 700;
  min-width: 60px;
}

.event-month {
  display: block;
  font-size: 2rem;
  text-transform: uppercase;
}

.event-day {
  display: block;
  font-size: 3rem;
}

.event-divider {
  border: none;
  border-top: 1px solid #ddd;
}

/* Accordion slide effect */
.event-extra-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.event-item.active .event-extra-content {
  max-height: 500px; /* large enough to fit content */
  opacity: 1;
  margin-top: 1rem;
}
.featured-slider {
  position: relative;
  overflow: auto;
  width: 100%;
}
  
.featured-slider__track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  will-change: transform;
}
  
.featured-slider__slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  display: flex;
  padding: 2rem;
}
  
.featured-slider__column_title {
  flex: 1;
  padding: 0 8px;
  display: block;
  align-items: center;
  justify-content: center;
}
  
.featured-slider__column {
  flex: 1;
  padding: 0 11px;
  display: block;
  align-items: center;
  justify-content: center;
  max-width: 33%;
  word-wrap: break-word;
  
}

.featured-slider__column-copy {
  flex: 1;
  padding: 0 11px;
  display: block;
  align-items: center;
  justify-content: center;
  padding-right: 3rem;
}

.features-product-title.small_text h2{
  font-size: 50px;
}
.features-product-title.small_text h3 {
  font-size: 40px;
}
.features-product-title.medium_text h2{
  font-size: 70px;
}

.features-product-title.medium_text h3 {
  font-size: 50px;
}

.features-product-title.large_text h2 {
  font-size: 85px;
}
.features-rpoduct-title.large_text h3 {
  font-size: 75px;
}

@media (max-width: 768px) {
.featured-slider__column {
  flex: 1;
  padding: 8px 8px;
  display: block;
  align-items: center;
  justify-content: center;
  max-width: 340px;
  padding-bottom: 20px;
  align-self: anchor-center;
  max-height: 350px;
}

.featured-slider__column-copy {
  flex: 1;
  padding: 8px 8px;
  display: block;
  align-items: center;
  justify-content: center;
  max-width: 340px;
  padding-bottom: 20px;
  align-self: anchor-center;
}  
}
  
@media (min-width: 768px) {
.features-product-title h2 {
    font-size: 4rem;
    max-width:
    color: black;
    margin-bottom: 0rem;
    font-weight: 600;
    text-transform: uppercase;
}  
}
  
@media (max-width: 768px) {
.features-product-title h2 {
    font-size: 5rem;
    color: black;
    overflow-wrap: anywhere;
    margin-bottom: 0rem;
    font-weight: 600;
    text-transform: uppercase;
}  
}

.features-product-title h3 {
    font-size: 3rem;
    letter-spacing: 0.{{ section.settings.text-spacing }}rem;
    color: black;
    margin-top: 0rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}
  
.featured-slider__image {
  max-width: 100%;
  height: auto;
}
  
.featured-slider__indicators {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
  
.featured-slider__indicator {
  width: 20px;
  height: 10px;
  border: 1px solid #000;
  margin: 0 4px;
  background-color: transparent;
}
  
.featured-slider__indicator.active {
  background-color: #000;
}
  
.featured-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  color: black;
}
  
.featured-slider__nav--prev {
  left: 1rem;
}
  
.featured-slider__nav--next {
  right: 1rem;
}

.featured-slider__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ddd;
  z-index: 4;
}

.featured-slider__progress-fill {
  height: 100%;
  width: 0%;
  background-color: #000;
  transition: width 0.5s ease;
}


@media (max-width: 768px) {
  .featured-slider__slide {
    flex-direction: column;
    padding: 1rem;
  }
}
.gl-header-title-large-left {
    position: absolute;
    z-index: 500;
    bottom: 25%;
    font-size: 4rem;
    color: white;
    font-weight: 700 !important;
    left: 4%;
    text-wrap: auto;
}
  .gl-header-title-large-right {
    position: absolute;
    z-index: 500;
    bottom: 25%;
    font-size: 4rem;
    color: white;
    font-weight: 700 !important;
    right: 4%;
    text-wrap: auto;
}
@media (min-width: 768px) {
  .gl-header-title-small-left {
    position: absolute;
    z-index: 500;
    bottom: 12%;
    font-size: 2rem !important; 
    color: white;
    font-weight: 400 !important;
    left: 4%;
}
}

@media (max-width: 768px) {
  .gl-header-title-small-left {
    position: absolute;
    z-index: 500;
    bottom: 12%;
    font-size: 1rem !important; 
    color: white;
    font-weight: 400 !important;
    left: 4%;
}  
}
@media (min-width: 768px) {
  .gl-header-title-small-right {
    position: absolute;
    z-index: 500;
    bottom: 12%;
    font-size: 2rem !important; 
    color: white;
    font-weight: 400 !important;
    right: 4%;
}
}

@media (max-width: 768px) {
  .gl-header-title-small-right {
    position: absolute;
    z-index: 500;
    bottom: 12%;
    font-size: 1rem !important; 
    color: white;
    font-weight: 400 !important;
    right: 4%;
}  
}
@media (min-width: 768px)  {
.gl-looper {
  width: 300px;
  height: 100px;
  place-self: center;
  position: absolute;
  top: 15%;
  z-index: 500;
  bottom: 15%;
}
}
@media (max-width: 768px)  {
.gl-looper {
  width: 300px;
  height: 100px;
  place-self: center;
  position: absolute;
  top: 15%;
  z-index: 500;
  bottom: 15%;
} 
}
.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* ensures it doesn't break weirdly on small screens */
  font-size: 1.2rem;
  margin: 0rem;
}

.left-part {
  text-align: left;
}

.right-part {
  text-align: right;
}
  
.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
}

.two-column-layout .left-col {
  width: 60%;
}

.two-column-layout .right-col {
  width: 40%;
}

.two-column-layout img {
  width: 100%;
  height: auto;
  display: block;
}

.right-col {
  padding: 3rem;
}

@media screen and (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
  }
  .two-column-layout .left-col,
  .two-column-layout .right-col {
    width: 100%;
  }
  
.right-col {
  padding: 1rem;
}
}
.intro-title {
 margin: 1rem 0rem; 
}
  
.intro-text {
 margin: 1rem 0rem; 
}

.accordion-toggle {
  width: 14rem;
  height: 2.2rem;
  border: #e5e5e5;
  border-style: solid;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.accordion-content {
  max-height: 1000;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.open {
  max-height: 1000px; /* high enough to accommodate any content */
}

.choose-vehicle {
  font-weight: 600;
  text-transform: uppercase;
}

.vehicle-select {
  margin-bottom: 20px;
}
  
.kit-builder-layout {
  display: flex;
  gap: 2rem;
  columns: 2;
}

.kit-preview-column {
  width: 50%;
  position: sticky;
  top: 0;
  align-self: flex-start;
}

.kit-options-column {
  width: 50%;
}

.kit-builder__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.kit-builder__image-preview {
  display: flex;
  width: 50%;
}

.kit-image-layer {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}

.kit-image-base {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

#kit-overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.kit-step {
  margin-bottom: 2rem;
}

.kit-option img {
  max-width: 100px;
  display: block;
  margin-bottom: 0.5rem;
}

.kit-preview-wrapper {
  position: static;
  width: 100%;
  height: auto;
}

@media (min-width: 1199px) {
.kit-option {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  border: 0px solid #eee;
  padding: 0.5rem;
  text-align: left;
  box-sizing: border-box;
  columns: 2; 
  border-left-width: thin;
}
}

@media (max-width: 1189px) {
.kit-option {
  flex: 1 1 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  border: 0px solid #eee;
  padding: 0.5rem;
  text-align: left;
  box-sizing: border-box;
  columns: 1; 
  border-left-width: thin;
}
}

.product-card-split {
  width: fit-content;
}

.kit-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.kit-title {
  font-size: 1.5rem;
}

.GL-kit-button {
  display: inline-block;
  background-color: #000;
  color: #D48326;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.3s ease;
  max-width: 8rem;
}

.GL-primary-button {
  display: inline-block;
  background-color: #000;
  color: #D48326;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.3s ease;
}

#kit-image-base {
  width: 100%;
  height: auto;
  display: block;
  justify-self: center;
}

/* MOBILE */
@media (min-width: 609px) and (max-width: 768px) {
#kit-image-base {
  width: 39%;
  height: auto;
  display: block;
  justify-self: center;
} 
}
  
@media (min-width: 501px) and (max-width: 608px) {
#kit-image-base {
  width: 49%;
  height: auto;
  display: block;
  justify-self: center;
} 
}

@media (min-width: 390px) and (max-width: 500px) {
#kit-image-base {
  width: 59%;
  height: auto;
  display: block;
  justify-self: center;
} 
}

@media (min-width: 326px) and (max-width: 389px) {
#kit-image-base {
  width: 82%;
  height: auto;
  display: block;
  justify-self: center;
}   
}

@media (min-width: 609px) and (max-width: 768px) {
#kit-image-overlay {
  width: 39% !important;
  height: auto;
  display: block;
  justify-self: center;
  transform: translateX(40%);
} 
}
  
@media (min-width: 501px) and (max-width: 608px) {
#kit-image-overlay {
  width: 49% !important;
  height: auto;
  display: block;
  justify-self: center;
  transform: translateX(40%);
} 
}

@media (min-width: 390px) and (max-width: 500px) {
#kit-image-overlay {
  width: 59% !important;
  height: auto;
  display: block;
  justify-self: center;
  transform: translateX(29%);
} 
}

@media (min-width: 326px) and (max-width: 389px) {
#kit-image-overlay {
  width: 82% !important;
  height: auto;
  display: block;
  justify-self: center;
  transform: translateX(8%);
} 
}
  
@media (max-width: 768px) {
  .kit-builder-layout {
    flex-direction: column;
    gap: 0;
  }

  .kit-preview-column {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55vh;
    z-index: 10;
    background: #fff;
    border-bottom: 2px;
    border-style: groove;

  }

  .kit-options-column {
    position: relative;
    top: 40vh;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    padding: 1rem;
    background-color: #fff;
    z-index: 5;
    margin-bottom: 40vh;
  }

  .kit-preview-wrapper {
    position: absolute;
    width: 100%;
    top: 6rem;
    height: auto;
    display: grid;
  }

  .kit-option {
    flex: 1 1 100%;
    max-width: 100%;
    columns: 2;
  }

  .kit-title {
    font-size: 1.2rem;
  }
}

.variant-select {
  margin-top: 0.0rem;
  padding: 0.5rem;
  padding-right: 2rem;
  font-size: 0.7rem;
}
.GL-product-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    padding: 0rem 11%;
  }

  .product-card {
    padding: 16px;
    text-align: left;
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .product-card:hover {
    
  }

  .product-card__image img {
    max-width: 100%;
    height: auto;
  }

  .product-card__title {
    font-size: 16px;
    margin: 12px 0 4px;
  }

  .product-card__price {
    font-weight: bold;
    color: #333;
  }

  

  
  @media screen and (max-width: 768px) {
    .GL-product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 480px) {
    .GL-product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      padding: 5px;
      gap: 0px;
    }
  }
.split-text-section {
  padding: 0 40px;
  display: flex;
  justify-self: center !important;
}

@media screen and (min-width: 768px) {
.left-text {
  font-size: 5rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
}

.split-text-wrapper {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.split-text-section {
  padding: 0 40px;
  display: flex;
  justify-self: center !important;
}
}

@media screen and (max-width: 768px) {
.left-text {
  font-size: 3rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

.split-text-wrapper {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 20px;
}

.split-text-section {
  padding: 0 10px;
  display: flex;
  justify-self: center !important;
}
}
  
.vertical-divider {
  width: 4px;
  background: black;
  height: 100%;
  min-height: 3em; /* Adjust based on font size to ensure vertical match */
}

.right-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1;
  flex-grow: 1;
}

.right-text p {
  margin: 0;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  color: {{}};
}
.split-text-banner {
  position: relative;
  overflow: hidden;
}

.split-text-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--desktop-height);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.split-text-section {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--desktop-height);
}

.split-text-wrapper {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.left-text {
  font-size: 5rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  text-transform: uppercase;
}

.right-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1;
  flex-grow: 1;
}

.right-text p {
  margin: 0;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
}

.vertical-divider {
  width: 4px;
  height: 100%;
  min-height: 3em;
}

@media screen and (max-width: 768px) {
  .split-text-banner-bg {
    height: var(--mobile-height);
  }

  .split-text-section {
    height: var(--mobile-height);
    padding: 0 10px;
  }

  .left-text {
    font-size: 3rem;
  }

  .split-text-wrapper {
    gap: 20px;
  }
}

.split-text-banner-wrapper {
  position: relative;
  overflow: hidden;
}

.split-text-background {
  position: absolute;
  top: 0;
  left: 0;
  height: var(--desktop-height);
  object-fit: cover;
  z-index: 0;
  position: absolute;
  width: 100%;
}

/* Responsive height switch for mobile */
@media screen and (max-width: 768px) {
  .split-text-background {
    height: var(--mobile-height);
  }
}

.split-text-section {
  position: relative;
  z-index: 1;
  padding: 0 40px;
  display: flex;
  justify-self: center !important;
}
  
@media screen and (max-width: 768px) {
  .responsive-text {
    font-size: clamp(1rem, 4vw, 2rem); /* scales between 1rem and 2rem based on viewport width */
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    text-align: center; /* or left/right depending on layout */
    max-width: 100%;
  }
}

/* CSS from snippet stylesheet tags */
.GLanchorlink {
    margin-left: 25px;
    font-size: 1.4rem;
  }