/** Shopify CDN: Minification failed

Line 461:0 Unexpected "}"

**/
.header__icon--menu {
  position: initial;
}

.js menu-drawer > details > summary::before,
.js menu-drawer > details[open]:not(.menu-opening) > summary::before {
  content: '';
  position: absolute;
  cursor: default;
  width: 100%;
  height: calc(100vh - 100%);
  height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
  top: 100%;
  left: 0;
  background: rgba(var(--color-foreground), 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: opacity 0s, visibility 0s;
}

menu-drawer > details[open] > summary::before {
  visibility: visible;
  opacity: 1;
  transition: opacity var(--duration-default) ease, visibility var(--duration-default) ease;
}

.menu-drawer {
  position: absolute;
  transform: translateX(-100%);
  visibility: hidden;
  z-index: 3;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 0;
  background-color: rgb(var(--color-background));
  overflow-x: hidden;
  filter: drop-shadow(
    var(--drawer-shadow-horizontal-offset) var(--drawer-shadow-vertical-offset) var(--drawer-shadow-blur-radius)
      rgba(var(--color-shadow), var(--drawer-shadow-opacity))
  );
}

.js .menu-drawer {
  height: calc(100vh - 100%);
  height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
}

.js details[open] > .menu-drawer,
.js details[open] > .menu-drawer__submenu {
  transition: transform var(--duration-default) ease, visibility var(--duration-default) ease;
}

.js details[open].menu-opening > .menu-drawer,
details[open].menu-opening > .menu-drawer__submenu {
  transform: translateX(0);
  visibility: visible;
}

.js .menu-drawer__navigation .submenu-open {
  visibility: hidden; /* hide menus from screen readers when hidden by submenu */
}

@media screen and (min-width: 750px) {
  .menu-drawer {
    width: 40rem;
    border-width: 0 var(--drawer-border-width) 0 0;
    border-style: solid;
    border-color: rgba(var(--color-foreground), var(--drawer-border-opacity));
  }
}

.menu-drawer__inner-container {
  position: relative;
  height: 100%;
}

.menu-drawer__navigation-container {
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: space-between;
  overflow-y: auto;
  height: 100%;
}

.menu-drawer__navigation {
  padding: 3rem 0;
}

.menu-drawer__inner-submenu {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.js .menu-drawer__menu li {
  margin-bottom: 0.2rem;
}

.menu-drawer__menu-item {
  padding: 1.1rem 3rem;
  text-decoration: none;
  font-size: 1.8rem;
}

.menu-drawer summary.menu-drawer__menu-item {
  padding-right: 5.2rem;
}

.menu-drawer__menu-item--active,
.menu-drawer__menu-item:focus,
.menu-drawer__close-button:focus,
.menu-drawer__menu-item:hover,
.menu-drawer__close-button:hover {
  color: rgb(var(--color-foreground));
  background-color: rgba(var(--color-foreground), 0.04);
}

.menu-drawer__menu-item--active:hover {
  background-color: rgba(var(--color-foreground), 0.08);
}

.js .menu-drawer__menu-item .icon-caret {
  display: none;
}

.menu-drawer__menu-item > .svg-wrapper {
  width: 15px;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}

.js .menu-drawer__submenu {
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgb(var(--color-background));
  z-index: 1;
  transform: translateX(100%);
  visibility: hidden;
}

.js .menu-drawer__submenu .menu-drawer__submenu {
  overflow-y: auto;
}

.menu-drawer__close-button {
  margin-top: 1.5rem;
  padding: 1.2rem 2.6rem 1.2rem 3rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  width: 100%;
  background-color: transparent;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  text-align: left;
}

.menu-drawer__close-button .svg-wrapper {
  transform: rotate(180deg);
  margin-right: 1rem;
  width: 15px;
}

.menu-drawer__utility-links {
  padding: 0;
  background-color: rgba(var(--color-foreground), 0.03);
  position: relative;
}

.header--has-social .menu-drawer__utility-links {
  padding: 2rem 3rem;
}

@media screen and (max-width: 749px) {
  .header--has-account:where(:not(.header--has-social):not(.header--has-localizations)) .menu-drawer__utility-links {
    padding: 2rem 3rem;
  }
}

@media screen and (max-width: 989px) {
  .header--has-localizations:where(:not(.header--has-social)) .menu-drawer__utility-links {
    padding: 2rem 3rem;
  }
}

.menu-drawer__account {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
  margin-bottom: 0;
}

.menu-drawer__utility-links:has(.menu-drawer__localization) .menu-drawer__account {
  margin: 0;
}

.menu-drawer__account account-icon > .svg-wrapper {
  height: 2rem;
  width: 2rem;
  margin-right: 1rem;
}

.menu-drawer__account shop-user-avatar {
  --shop-avatar-size: 2.4rem;
  margin-right: 0.55rem;
  margin-left: -0.45rem;
}

.menu-drawer__account:hover account-icon > .svg-wrapper {
  transform: scale(1.07);
}

.menu-drawer .list-social {
  justify-content: flex-start;
  margin-left: -1.25rem;
}

.menu-drawer .list-social:empty {
  display: none;
}

.menu-drawer .list-social__link {
  padding: 1.1rem 1.1rem;
}

@media screen and (max-width: 749px) {
  .menu-drawer.country-selector-open {
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Lucas Batteries mobile Find My Battery CTA */

/* Lucas Batteries mobile Find My Battery CTA */

@media screen and (max-width: 989px) {
  .menu-drawer__navigation .menu-drawer__menu > li:last-child > a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: calc(100% - 4rem);
    margin: 1.6rem 2rem 0;
    padding: 1.5rem 1.8rem !important;
    color: #ffffff !important;
    background: #00843d !important;
    border-radius: 999px;
    font-weight: 800 !important;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 132, 61, 0.22);
  }

  .menu-drawer__navigation .menu-drawer__menu > li:last-child > a:hover,
  .menu-drawer__navigation .menu-drawer__menu > li:last-child > a:focus {
    color: #ffffff !important;
    background: #006f34 !important;
  }
}/* Lucas Batteries mobile menu heading icons */

@media screen and (max-width: 989px) {
  .menu-drawer__navigation .menu-drawer__menu > li > details > summary,
  .menu-drawer__navigation .menu-drawer__menu > li > a {
    position: relative;
    padding-left: 5.2rem !important;
  }

  .menu-drawer__navigation .menu-drawer__menu > li > details > summary::before,
  .menu-drawer__navigation .menu-drawer__menu > li > a::before {
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    width: 2.4rem;
    height: 2.4rem;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 2.1rem;
  }

  .menu-drawer__navigation .menu-drawer__menu > li:nth-child(1) > details > summary::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='7' width='16' height='12' rx='2' stroke='%2300843d' stroke-width='1.8'/%3E%3Cpath d='M8 7V5h3v2M14 7V5h3v2M8 13h4M10 11v4M15 13h3' stroke='%2300843d' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .menu-drawer__navigation .menu-drawer__menu > li:nth-child(2) > details > summary::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 16h14l-1.5-5H6.5L5 16Z' stroke='%2300843d' stroke-width='1.8'/%3E%3Cpath d='M7 11 8.5 7h7L17 11' stroke='%2300843d' stroke-width='1.8'/%3E%3Ccircle cx='8' cy='17' r='1.5' stroke='%2300843d' stroke-width='1.8'/%3E%3Ccircle cx='16' cy='17' r='1.5' stroke='%2300843d' stroke-width='1.8'/%3E%3C/svg%3E");
  }

  .menu-drawer__navigation .menu-drawer__menu > li:nth-child(3) > details > summary::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='8' width='18' height='10' rx='2' stroke='%2300843d' stroke-width='1.8'/%3E%3Cpath d='M7 8V5h10v3M8 13h3M14 13h3' stroke='%2300843d' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .menu-drawer__navigation .menu-drawer__menu > li:nth-child(4) > details > summary::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 15V8h11v7H3Z' stroke='%2300843d' stroke-width='1.8'/%3E%3Cpath d='M14 10h4l3 3v2h-7v-5Z' stroke='%2300843d' stroke-width='1.8'/%3E%3Ccircle cx='7' cy='17' r='2' stroke='%2300843d' stroke-width='1.8'/%3E%3Ccircle cx='18' cy='17' r='2' stroke='%2300843d' stroke-width='1.8'/%3E%3C/svg%3E");
  }

  .menu-drawer__navigation .menu-drawer__menu > li:last-child > a {
    padding-left: 1.8rem !important;
  }

  .menu-drawer__navigation .menu-drawer__menu > li:last-child > a::before {
    display: none;
  }
}

/* Lucas Batteries mobile menu row polish */

@media screen and (max-width: 989px) {
  .menu-drawer__navigation .menu-drawer__menu > li > details > summary {
    margin: 0.5rem 1.6rem;
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 1.2rem;
    background: #ffffff;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease;
  }

  .menu-drawer__navigation .menu-drawer__menu > li > details > summary:hover,
  .menu-drawer__navigation .menu-drawer__menu > li > details > summary:focus {
    background: #f7fbf8;
    border-color: rgba(0, 132, 61, 0.25);
    transform: translateX(2px);
  }

  .menu-drawer__navigation .menu-drawer__menu > li:last-child > a {
    margin-top: 1.4rem !important;
  }
}

/* Lucas Batteries mobile submenu polish */

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

  /* Submenu background */
  .menu-drawer__submenu {
    background: #ffffff !important;
  }

  /* Back button at the top of each submenu */
  .menu-drawer__close-button {
    margin: 1.2rem 1.6rem 0.8rem !important;
    padding: 1.2rem 1.4rem !important;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 1.2rem;
    background: #f7faf8;
    color: #071a2f !important;
    font-weight: 700;
  }

  .menu-drawer__close-button .svg-wrapper {
    color: #00843d;
  }

  /* Submenu links */
  .menu-drawer__submenu .menu-drawer__menu-item {
    margin: 0.45rem 1.6rem;
    padding: 1.25rem 1.5rem !important;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 1.2rem;
    background: #ffffff;
    color: #071a2f !important;
    font-weight: 600;
    transition:
      background 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease;
  }

  .menu-drawer__submenu .menu-drawer__menu-item:hover,
  .menu-drawer__submenu .menu-drawer__menu-item:focus {
    background: #f7fbf8;
    border-color: rgba(0, 132, 61, 0.28);
    transform: translateX(2px);
  }
}

/* Lucas Batteries deeper mobile submenu polish */

@media screen and (max-width: 989px) {
  .menu-drawer__submenu .menu-drawer__submenu {
    background: #ffffff !important;
  }

  .menu-drawer__submenu .menu-drawer__submenu .menu-drawer__close-button {
    margin: 1.2rem 1.6rem 0.8rem !important;
    padding: 1.2rem 1.4rem !important;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 1.2rem;
    background: #f7faf8;
    color: #071a2f !important;
    font-weight: 700;
  }

  .menu-drawer__submenu
  .menu-drawer__submenu
  .menu-drawer__menu-item {
    margin: 0.45rem 1.6rem;
    padding: 1.25rem 1.5rem !important;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 1.2rem;
    background: #ffffff;
    color: #071a2f !important;
    font-weight: 600;
  }
}

/* Lucas Batteries mobile menu descriptions */

@media screen and (max-width: 989px) {
  .menu-drawer__main-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    line-height: 1.25;
  }

  .menu-drawer__main-title {
    color: #071a2f;
    font-weight: 700;
  }

  .menu-drawer__main-label small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(7, 26, 47, 0.72);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
}
  }

  .menu-drawer__navigation
  .menu-drawer__menu
  > li
  > details
  > summary {
    min-height: 6.2rem;
  }
}

/* Lucas Batteries mobile finder introduction — forced selector */

@media screen and (max-width: 989px) {
  #MenuDrawerFinderIntro {
    display: block !important;
    width: calc(100% - 3.2rem) !important;
    margin: 1.2rem 1.6rem 1.4rem !important;
    padding: 1.5rem 1.6rem !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(0, 132, 61, 0.2) !important;
    border-radius: 1.4rem !important;
    background: linear-gradient(
      135deg,
      rgba(0, 132, 61, 0.1),
      rgba(7, 26, 47, 0.04)
    ) !important;
  }

  #MenuDrawerFinderIntro > span {
    display: block !important;
    margin: 0 0 0.4rem !important;
    color: #00843d !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.12em !important;
  }

  #MenuDrawerFinderIntro > strong {
    display: block !important;
    margin: 0 !important;
    color: #071a2f !important;
    font-size: 1.55rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
  }

  #MenuDrawerFinderIntro > p {
    display: block !important;
    margin: 0.55rem 0 0 !important;
    color: rgba(7, 26, 47, 0.74) !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
  }
}