/** Shopify CDN: Minification failed

Line 422:2 Unexpected "{"

**/
.image-with-text {
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 0px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Make text size responsive */
  .image-with-text__content h2 {
    font-size: 45px;
    margin-bottom: 0px;
    text-align: left;
  }

  .image-with-text__content p {
    font-size: 18px;
    line-height: 1.6;
  }

.image-with-text:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* Make grid items stretch same height */
.image-with-text__grid {
  min-height: 450px;
}

/* The IMAGE WRAPPER */
.image-with-text__media-item {
  padding: 30px; /* Add white space around the image */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inside image */
.image-with-text__media {
  background: #ffffff; /* white background inside */
  border-radius: 15px; /* rounded corners for the image container */
  overflow: hidden;
  height: 360px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-with-text__media {
  border-radius: 15px !important;
  overflow: hidden; /* critical */
  background: #ffffff;
}

/* Text Content */
.image-with-text__content {
  padding: 50px !important;
  display: flex;
  flex-direction: column;
  justify-content: center !important;
}

@media screen and (max-width: 767px) {

  /* Image with text container adjustments */
  .image-with-text {
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 15px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .image-with-text:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
  }

  /* Grid item height for mobile */
  .image-with-text__grid {
    min-height: auto;
  }

  /* Media item adjustments */
  .image-with-text__media-item {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Inside image styling for mobile */
  .image-with-text__media {
    background: #ffffff;
    border-radius: 10px !important;
    height: auto;
    width: 100%;
    margin-bottom: 10px;
  }

  /* Image inside the wrapper */
  .image-with-text__media img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Text content styling */
  .image-with-text__content {
    padding: 20px !important;
    text-align: left;
  }

  /* Make text size responsive */
  .image-with-text__content h2 {
    font-size: 28px;
    margin-bottom: 0px;
    text-align: left;
  }

  .image-with-text__content p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Reduce padding for mobile */
  .image-with-text__content {
    padding: 20px;
  }

  /* Adjust the spacing between content and image */
  .image-with-text__content,
  .image-with-text__media {
    margin-bottom: 10px;
  }
}

/* ===== Custom Product Page Full Styling - Corrected ===== */

/* Floating card wrapper */
.product,
.product__grid {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
}

/* Clean media wrapper */
.product__media-wrapper {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

/* Style all images consistently */
.product__media-wrapper img,
.product__media img,
.product__media-item img,
.media img {
  border-radius: 15px !important; /* FORCE rounded corners */
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #ffffff;
  display: block;
}

.cl-po--preview canvas {
  border-radius: 20px;
}

#ProductSubmitButton-template--24674960081160__main {
  background-color: #000000;
  color: #ffffff; /* White text for contrast */
  border: none !important; /* Optional: remove any default borders */
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;

  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Optional: Add a slight hover effect */
#ProductSubmitButton-template--24674960081160__main:hover {
  background-color: #ff0000; /* Darker red on hover */
  transform: translateY(-2px); /* Small lift effect */
}

.button--secondary::after {
  display: none !important;
}

.shopify-payment-button__more-options {
  display: none !important;
}

.caption-with-letter-spacing {
  line-height: 3 !important;
  padding-bottom: 4px;
}
@media screen and (max-width: 767px) {

  /* Adjust floating card wrapper for mobile */
  .product,
  .product__grid {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 20px;
  }

  /* Adjust media wrapper for mobile */
  .product__media-wrapper {
    padding: 0;
    margin-bottom: 15px;
  }

  /* Image styling for mobile */
  .product__media-wrapper img,
  .product__media img,
  .product__media-item img,
  .media img {
    border-radius: 10px !important;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Product submit button adjustments */
  #ProductSubmitButton-template--24674960081160__main {
    background-color: #000000;
    color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  #ProductSubmitButton-template--24674960081160__main:hover {
    background-color: #ff0000;
    transform: translateY(-2px);
  }

  /* Remove hover effects on mobile to avoid glitches */
  .button--secondary::after {
    display: none !important;
  }

  .shopify-payment-button__more-options {
    display: none !important;
  }

  /* Improve spacing for caption */
  .caption-with-letter-spacing {
    line-height: 2 !important;
    padding-bottom: 2px;
  }

  /* Adjust spacing for canvas preview */
  .cl-po--preview canvas {
    border-radius: 15px;
    margin-bottom: 10px;
  }

  /* Adjust padding and margin for mobile */
  .product__grid {
    padding: 20px 15px;
  }

  /* Button adjustments for mobile */
  .custom-quote-button,
  .button--full-width {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
  }

  .section-template--24674960081160__main-padding {
    padding-top: 10px;
  }
}
/* ===== Product Grid Card Styling ===== */

/* Product card styling */
.card-wrapper {
  background: #ffffff;
  width: 320px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Softer shadow */
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 15px;
}

/* On hover: slightly lift with a subtle shadow */
.card-wrapper:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* Lighter shadow on hover */
  transform: translateY(-3px); /* Subtle lift */
}

/* Product image inside card */
.card__media img {
  object-fit: cover;
  width: 100%;
  height: auto;
  background: #ffffff;
  border-radius: 0 !important;
}

/* Product title styling */
.card__heading {
  margin-top: 5px;
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 21px;
  text-align: left;
  text-decoration: none;
}

@media screen and (min-width: 750px) {
    .grid {
        row-gap: 30px !important;
    }
}
.card__heading a:hover {
  text-decoration: none !important;
}

/* Suitable for other cars tag styling */
.card__subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  text-align: center;
  background-color: #f3f3f3;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 15px;
  width: 100%
}

@media screen and (max-width: 749px) {
  .card__subtitle {
    font-size: 12px;
    padding: 4px;
    margin-bottom: 8px;
  }
}

  .card__heading {
    font-size: 21px;
  }


.card__subtitle {
  padding: 10px;
}

@media screen and (max-width: 749px) {
  .grid {
    row-gap: 2rem !important;
  }
}

/* Price styling */
.price {
  display: none !important;
}

.product .paypal-button-row {
  display: none !important;
}

.rich-text__buttons .button--primary {
  background-color: #000000;
  color: #ffffff; /* White text for contrast */
  border: none !important;
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 50px; /* optional: add left-right padding */
  padding-right: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

/* Hover effect */
.rich-text__buttons .button--primary:hover {
  background-color: #ff0000; /* Red on hover */
  transform: translateY(-2px); /* Slight lift effect */
}

.button:after {
  display: none !important;
} {
  display: none !important;
}

/* Mega Menu Hover Effect */
.mega-menu__content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 100%; /* Adjust as needed */
  left: 0;
  z-index: 10;
}

.mega-menu:hover .mega-menu__content {
  display: block;
  opacity: 1;
}

.mega-menu {
  position: relative;
}

.mega-menu__item:hover > .mega-menu__content {
  display: block;
  opacity: 1;
}

/* Adjust the caret icon size and positioning */
.header__menu-item .icon-caret {
  width: 12px; /* Adjust the size to make it smaller */
  height: 12px; /* Maintain a square aspect ratio */
  margin-left: 5px; /* Space between text and icon */
  vertical-align: middle; /* Aligns with the text */
}


/* Banner Box Styling */
.banner__box {
  text-align: center;
  padding: 40px 20px;
  background-color: #000; /* Dark background for contrast */
}

/* Heading Styling */
.banner__heading {
  font-size: 55px; /* Bigger heading size */
  color: #fff; /* White text */
  font-weight: 700;
  margin-bottom: 20px;
}

/* Description Text Styling */
.banner__text p {
  font-size: 19px; /* Bigger description text size */
  color: #fff; /* White text */
  margin: 0 auto;
  max-width: 800px;
  line-height:1.6;
}

/* Button Styling */
.banner__buttons .button {
  background-color: #ff0000;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 18px;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {

  /* Carousel container adjustments for mobile */
  #forged-carousel {
    display: flex;
    gap: 16px;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #forged-carousel::-webkit-scrollbar {
    display: none;
  }
  
.forged-advantage-carousel {
  padding-top: 0 !important;
}
  
  /* Individual card adjustments to show one item at a time */
  .advantage-card {
    flex: 0 0 100% !important; /* Full width */
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    scroll-snap-align: center; /* Snap the item to the center */
  }

  /* Icon adjustments */
  .advantage-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
    margin: 0 auto;
  }

  /* Text adjustments */
  .advantage-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .advantage-card p {
    font-size: 14px;
    line-height: 1.4;
  }

  /* Adjust heading and description for mobile */
  .forged-advantage-carousel h2 {
    font-size: 35px !important;
    margin-bottom: 8px;
  }

  .forged-advantage-carousel p {
    font-size: 16px !important;
    margin-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  /* Carousel wrapper adjustments */
  .carousel-wrapper {
    padding: 0 !important;
  }
}

@media screen and (max-width: 990px) {
    .tab-nav {
      flex-direction: column !important;
      align-items: stretch !important;
      gap: 10px !important;
    }

    .tab-item {
      width: 100% !important;
      text-align: center !important;
    }
  }

@media screen and (max-width: 749px) {
  .rich-text__heading.h0 {
    font-size: 32px !important;
  }
}

/* Load More Button Styling - Matches Banner Button */
.load-more-btn {
  background-color: #ff0000;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 18px;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.load-more-btn:hover {
  background-color: #000000;
}

/* Checkout page styling */

.i4DWM ._1fragemo5 ._1fragemo2 ._1fragemu0 {
  background-color: #ffffff !important;
}
/* Header hamburger */

.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

@media screen and (max-width: 749px) {
  .header__menu-toggle {
    display: block;
  }
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0; /* slide in from right */
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: white;
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(100%); /* Start off-screen right */
  transition: transform 0.3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  padding: 20px;
}

.mobile-menu-drawer.open {
  transform: translateX(0); /* Slide in */
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-menu-logo {
  height: 28px;
  margin-top: -15px;
}

.mobile-menu-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  padding-left: 1rem;
  margin: 1.5rem 0 0.5rem;
  border-left: 4px solid #ff0000; /* Red accent border only */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 40px;
}


.mobile-menu-close {
  font-size: 42px;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
  margin-top: -17px;
  margin-left: 155px !important;

}

.mobile-menu-links {
  padding: 0px;
  background-color: #fff;
  text-decoration: none;
}

.mobile-menu-card {
  display: flex;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid #f0f0f0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  transition: background-color 0.3s ease;
  text-decoration: none;
  gap: 14px;
}

.mobile-menu-card:hover {
  background-color: #f9f9f9;
  transform: none;
}

.mobile-menu-card .icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}


.mobile-menu-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.mobile-menu-card .text h3 {
  font-size: 17px;
  margin: 0;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
   text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

.mobile-menu-card .text h3 a {
  text-decoration: none !important;
  border: none !important;
}

.mobile-menu-card .text p {
  font-size: 13px;
  color: #666;
  margin: 2px 0 0 0;
  line-height: 1.3;
}


.mobile-menu-small-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 25px 0 10px;
  padding: 0 10px;
}



/* Optional: Ensure text wraps nicely on small screens */
@media screen and (max-width: 749px) {
  .header__icons {
    display: flex;
    align-items: center;
    gap: 1rem !important;
    justify-content: flex-end;
    padding-right: 1rem;
  }
  
.modal__toggle {
  margin-right: -17px;
}
  .header__icon,
  .header__menu-toggle {
    display: flex;
    align-items: center;
    height: 44px;
    width: 44px;
    background-color: transparent;
    border: none;
    color: black;
  }
    .header__menu-toggle {
      margin-top: 4px;
    }

  .header__menu-toggle svg,
  .header__icon svg {
    width: 24px;
    height: 24px;
  }

  .header__heading {
    display: flex;
    align-items: center;
    padding-left: 1rem;
    flex: 1;
  }

  .header__heading-logo-wrapper {
    max-height: 28px;
  }

  .header__heading-logo {
    max-height: 28px;
    width: auto;
  }
} 


@media screen and (max-width: 749px) { 
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
     padding: 5px 1px 5px 10px !important;
  }

}

@media screen and (min-width: 990px) {
    .rich-text__blocks {
        max-width: 90rem !important;
    } 
  
.custom-dots {
  display: none;
}

}

@media only screen and (min-width: 750px) {
    .banner--content-align-left.banner--desktop-transparent .banner__box, .banner--content-align-right.banner--desktop-transparent .banner__box, .banner--medium.banner--desktop-transparent .banner__box {
        max-width: 100rem !important;
    }}

@media screen and (max-width: 750px) {
  .banner__heading {
    font-size: 4rem;
    text-align: left;
    padding: 0 1rem;
  }

  .banner__text p {
    font-size: 1.5rem;
    padding: 0 1rem;
    text-align: left;
    
  }

  .banner {
    height: 100vh;
  }

  .rich-text__heading {
    text-align: left !important;
  }

@media screen and (max-width: 749px) {
  .rich-text__text {
    text-align: left;
  }
}
  
  .section-template--24674959884552__rich_text_yAV4rT-padding  {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

/* Center slideshow arrows on left and right sides */
.slideshow__controls.slider-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  padding: 0 1rem;
  pointer-events: none; /* allow arrows to float above slides */
}

.slideshow__controls .slider-button {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.slideshow__controls .slider-button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.slideshow__controls--top {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: transparent;
  padding: 0;
}

.slider-button .svg-wrapper svg {
  stroke: white; /* or #ff0000 for red */
  fill: white;   /* fallback if stroke is not enough */
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.slider-button:hover .svg-wrapper svg {
  transform: scale(1.1);
  stroke: #ff0000;
  fill: #ff0000;
}

.slider-button--prev,
.slider-button--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 0.8rem;
}

.slider-button--prev {
  left: 3rem; /* spacing from left edge */
}

.slider-button--next {
  right: 3rem; /* spacing from right edge */
}

.slideshow__autoplay {
  display: none !important;
}

.slideshow__text.banner__box {
  max-width: 90rem !important;
}

@media screen and (max-width: 750px){
.slider--tablet.grid--peek {
  padding-bottom: 30px;
}
  
.section-template--24674959556872__multicolumn_y9n8NY-padding {
  padding-bottom: 20px !important;
}

}

@media screen and (max-width: 749px) {
  .multicolumn .slider-buttons {
    display: none !important;
  }

  .multicolumn .custom-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 8px;
  }

  .multicolumn .custom-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: lightgrey;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .multicolumn .custom-dots button.active {
    background-color: red;
  }
}

@media screen and (max-width: 749px) {
  .card__heading {
    font-size: 16px;
    letter-spacing: 0;
  }

  .card__subtitle {
    padding: 6px;
    font-size: 9px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1;
    width: 100%
  }

.grid {
    row-gap: 3rem !important;
  }
  
  .card-wrapper {
    margin: 0 auto;
    box-shadow: none !important;
    padding: 10px;
    width: auto;
  }

.quick-add__submit.button--full-width.button--secondary {
 background-color: #000; 
    color: #fff; 
    padding: 0px !important;
    border-radius: 6px;
    font-size: 11px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.2;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-top: 0 !important;
}
}

.quick-add__submit {
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.2;
    margin-top: -25px;
 }

.quick-add:hover {
  background-color: #ff0000;
  border-radius: 10px !important;
}

.card__heading a,
.card__heading a:hover,
.card__heading a:focus {
  text-decoration: none !important;
}

 .collection-hero__text-wrapper {
    padding: 1rem !important;
  }




/* Container FAQ*/
.accordion details {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.accordion__title {
  font-size: 22px;
  padding-left: 2rem; }

/* Summary (clickable title) */
.accordion summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background 0.2s ease;
}

/* Remove default triangle */
.accordion summary::-webkit-details-marker {
  display: none;
}

/* Add red vertical bar before each title */
.accordion summary {
  position: relative;
  padding-left: 2rem; /* Leave space for bar */
  background: none;
}

.accordion summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 5px;
  background-color: #ff0000;

}

.accordion summary h3 {
  text-decoration: none !important;
  transition: all 0.3s ease;
  background: none;
}

.accordion summary:hover h3 {
  text-decoration: none !important;
  background: none !important;
}

accordion details {
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  background-color: #fff;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.accordion details:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.accordion summary .icon-caret {
  transition: transform 0.3s ease;
}

.accordion[open] summary .icon-caret {
  transform: rotate(180deg);
}

.accordion summary:focus {
  outline: none !important;
  background: transparent !important;
}

.accordion details:not([open]) summary:hover,
.accordion details:not([open]) summary:focus {
  background: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.accordion details[open] > summary {
  background-color: transparent !important;
}

/* Arrow icon */
.accordion .icon-caret {
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* Rotate when open */
.accordion details[open] .icon-caret {
  transform: rotate(180deg);
}
.accordion {
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-radius: 12px;
}

/* Answer text */
.accordion__content {
  padding: 20px 10px !important;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

.collapsible-content-wrapper-narrow {
  max-width: 85rem !important;
}


.accordion__title {
  font-size: 22px;
  padding-left: 2rem;
}

@media screen and (max-width: 749px) {
  .accordion__title {
    font-size: 18px;
    padding-left: 2rem;
  }

  .collapsible-content__heading {
    text-align: left;
  }
  
/* Answer text */
.accordion__content {
  padding: 10px 10px !important;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}  
#Slider-template--24674959753480__multicolumn_kqrnyH .multicolumn-card__image-wrapper {
  width: 40px !important;
}
  
}


#Slider-template--24674959753480__multicolumn_kqrnyH .multicolumn-card__image-wrapper {
  width: 60px;
}

.newsletter-form__field-wrapper .field__input {
  background-color: white !important;
  color: black !important;
  border-radius: 10px;
}

/* Add red border (line) to all footer headings EXCEPT the first one */
.footer__blocks-wrapper .footer-block:not(:first-child) .footer-block__heading {
  position: relative;
  padding-left: 16px;
  margin-bottom: 1em;
}

.footer__blocks-wrapper .footer-block:not(:first-child) .footer-block__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: 1em;
  background-color: red;
}

/* Better spacing between lines */
.footer-block__details-content.contact-info p {
  line-height: 1.5;
  margin: 0.3em 0;
  display: flex;
  align-items: center;
}

.footer__blocks-wrapper {
  justify-content: space-between; /* OR center */
}

.footer-block {
  flex: 1 1 0%;
}

.footer__list-social .icon {
  width: 28px !important;
  height: 28px !important;
}

.footer__content-bottom-wrapper {
  text-align: center;
    justify-content: center;
  padding-bottom: 20px;
}


.mega-menu__link-item h3 {
  position: relative;
  padding-left: 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  min-height: 1.2em;
  display: flex;
  align-items: center;
}

.mega-menu__link-item h3::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #e4002b;
}


.multicolumn-card .content-container {
  background: #fff !important;
}

  .multicolumn-card {
  background: #fff !important;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.multicolumn-card:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

  .multicolumn-card__image {
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;

}

.multicolumn-card__image-wrapper {
  width: 70px !important;
  max-width: 70px;
}



.mobile-menu-buttons {
  padding-top: 70px;
}

.menu-btn {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 1rem;
  color: #000;
  text-decoration: none;
  transition: background 0.3s ease;
  text-align: left;
  border-radius: 8px;
  border-bottom: 1px solid #f3f3f3;
  gap: 10px;
}

.menu-btn:hover {
  color: #000;
  text-decoration: none;
  border-left:7px solid #ff0000;
  border-radius:0;
}

.forged-dropdown {
  padding-left: 0.5rem;
  margin-top: 0px;
  margin-bottom:30px;
  
}

.hidden {
  display: none;
}


#forged-wheels-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#forged-wheels-dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-btn.active {
  background-color: #f9f9f9;
  color: #000;
  text-decoration: none;
  border-left:7px solid #ff0000;
  border-radius:0;
}

/* Hide accelerated checkout button on product pages */
.shopify-payment-button{
  display: none !important;
}


/* default: hide mobile drawer on desktop */
#MobileMenuDrawer {
  display: none;
}

/* on screens under 750px, show it when “open” */
@media only screen and (max-width: 749px) {
  #MobileMenuDrawer {
    display: block;
  }
}