@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap");

:root {
  --orange: #ff6100;
  --ink: #333745;
  --dark: #292a2e;
  --line: #e6e7e9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "PT Sans Narrow", "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(1220px, calc(100% - 34px)); margin-inline: auto; }
/* Nested modules inside an already-padded main.container (product page, etc.) */
main.container .container {
  width: 100%;
  margin-inline: 0;
}

.site-header { height: 141px; color: #fff; }
.topbar {
  height: 40px;
  display: grid;
  grid-template-columns: 1fr 82px 1fr;
  align-items: center;
  padding: 0 max(13px, calc((100% - 1220px) / 2));
  background: #46464f;
  font-size: 14px;
}
.topbar__contact, .account-nav { display: flex; align-items: center; gap: 18px; }
.account-nav { justify-content: flex-end; gap: 12px; }
.account-dropdown {
  position: relative;
}
.account-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color .15s;
}
.account-dropdown__toggle:hover,
.account-dropdown.is-open .account-dropdown__toggle {
  color: var(--orange);
}
.account-dropdown__caret {
  font-size: 10px;
  opacity: 0.75;
}
.account-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  padding: 6px 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility .15s;
  z-index: 40;
}
.account-dropdown:hover .account-dropdown__menu,
.account-dropdown.is-open .account-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.account-dropdown__menu a {
  display: block;
  padding: 8px 14px;
  color: #292a2e !important;
  white-space: nowrap;
}
.account-dropdown__menu a:hover {
  background: #f4f4f6;
  color: var(--orange) !important;
}
.nav-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: inherit;
}
.nav-icon-link i {
  margin-right: 0 !important;
  width: auto !important;
  font-size: 15px;
}
.nav-icon-link .nav-count {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  font-size: 10px;
}
.nav-link-count {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.nav-count.is-empty {
  opacity: 0.45;
}
.topbar a { transition: color .15s; }
.topbar a:hover { color: var(--orange); }
.topbar a i { width: 14px; margin-right: 3px; text-align: center; }
.language-picker {
  position: relative;
  align-self: stretch;
  z-index: 30;
}
.language {
  width: 100%;
  height: 100%;
  border: 0;
  border-inline: 1px solid #5e5e65;
  color: #fff;
  background: #3b3b43;
}
.language img,
.language-menu img {
  display: block;
  width: 17px;
  height: 12px;
  margin: auto;
}
.language-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  width: 56px;
  padding: 4px 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -5px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.language-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  border: 7px solid transparent;
  border-bottom-color: #fff;
  transform: translateX(-50%);
}
.language-menu button {
  width: 100%;
  height: 35px;
  display: grid;
  place-items: center;
  border: 0;
  background: #fff;
}
.language-menu button:hover { background: #f4f4f4; }
.language-picker:hover .language-menu,
.language-picker.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-main {
  height: 101px;
  display: grid;
  grid-template-columns: 304px 1fr 304px;
  align-items: center;
  gap: 24px;
  padding: 5px max(13px, calc((100% - 1220px) / 2));
  background: rgba(0, 0, 0, .85) url("assets/header-bg-live.jpg") center bottom repeat;
}
.header-main__left { display: grid; gap: 8px; }
.search {
  height: 39px;
  display: flex;
  align-items: center;
  border: 1px solid #666;
  border-radius: 22px;
  background: rgba(0, 0, 0, .92);
  overflow: hidden;
}
.search__icon { padding: 0 12px 0 15px; color: var(--orange); font-size: 18px; }
.search input { width: 100%; height: 100%; padding: 0 14px 0 0; border: 0; outline: 0; color: #fff; background: transparent; }
.search input::placeholder { color: #eee; }
.search__submit {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  opacity: 0;
}
.cart-dropdown { justify-self: end; position: relative; }
.cart-dropdown .cart { width: 100%; cursor: pointer; }
.cart__oc-total { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.cart-dropdown > .dropdown-menu { display: none; }
.cart-dropdown.open > .cart-dropdown__menu {
  display: block;
  visibility: visible;
  opacity: 1;
  background: #fff;
  box-shadow: 0 3px 15px -3px rgba(0, 0, 0, .25);
}
.cart-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  width: 380px;
  max-width: min(380px, 94vw);
  min-width: 300px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #222;
  box-shadow: none;
  visibility: hidden;
  opacity: 0;
}
.cart-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 28px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fff;
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, .08));
}
.cart-dropdown__menu > li {
  background: transparent;
  box-shadow: none;
}
.mini-cart-info {
  position: relative;
  max-height: 350px;
  overflow: auto;
  padding: 3px 12px 0;
}
.mini-cart-info table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
.mini-cart-info tr {
  border-bottom: 1px solid #eee;
}
.mini-cart-info tr:last-child {
  border-bottom: 0;
}
.mini-cart-info td {
  padding: 10px 5px 10px 0;
  vertical-align: middle;
  color: #000;
  font-size: 13px;
  line-height: 1.25;
}
.mini-cart-info td.image {
  width: 1%;
  white-space: nowrap;
}
.mini-cart-info td.image img {
  display: block;
  max-width: 50px;
  height: auto;
}
.mini-cart-info td.name {
  padding-left: 5px;
  word-break: break-word;
}
.mini-cart-info td.name a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.mini-cart-info td.name a:hover {
  color: var(--orange);
}
.mini-cart-info td.name .model {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #333;
}
.mini-cart-info td.name .options,
.mini-cart-info td.name .recurring {
  display: block;
  margin-top: 4px;
  line-height: 1.2;
  color: #666;
}
.mini-cart-info td.quantity,
.mini-cart-info td.total {
  width: 1%;
  white-space: nowrap;
  text-align: right;
  font-family: Helvetica, Arial, sans-serif;
}
.mini-cart-info td.remove {
  width: 1%;
  padding-top: 11px;
  padding-right: 0;
  text-align: right;
  white-space: nowrap;
}
.cart-dropdown__remove {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: background-color .2s;
}
.cart-dropdown__remove::before {
  content: "\00d7";
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.cart-dropdown__remove:hover {
  background: var(--orange);
}
.mini-cart-total {
  padding: 8px 12px;
  overflow: hidden;
  text-align: right;
  color: #fff;
  background: #000;
}
.mini-cart-total table {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin: 0;
  border-collapse: collapse;
}
.mini-cart-total td {
  padding: 3px 4px;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.35;
  font-family: Helvetica, Arial, sans-serif;
}
.mini-cart-total td.title {
  min-width: 100px;
  text-align: right;
}
.mini-cart-total td.value {
  min-width: 80px;
  text-align: right;
  white-space: nowrap;
}
.cart-dropdown__checkout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 18px 12px;
  background: #fff;
}
.cart-dropdown__btn {
  display: inline-block;
  min-width: 0;
  padding: 0 14px;
  border: 0;
  border-radius: 30px;
  background: #2a2b2e;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: .04em;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color .15s ease;
}
.cart-dropdown__btn:hover {
  background: var(--orange);
  color: #fff !important;
}
.cart-dropdown__empty {
  margin: 0;
  padding: 50px 16px;
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: #000;
  background: transparent;
}

.language-picker #form-language {
  margin: 0;
  height: 100%;
}
.category-button {
  height: 43px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 21px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--orange);
  font-weight: 700;
}
.hamburger { font-size: 17px; line-height: 1; }
.logo { justify-self: center; }
.logo img { display: block; width: 249px; height: 41px; }
.cart {
  height: 39px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 13px;
  padding: 0 15px 0 24px;
  border: 1px solid #666;
  border-radius: 22px;
  color: #fff;
  background: rgba(0, 0, 0, .86);
}
.cart__icon {
  width: 40px;
  height: 38px;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  color: var(--orange);
}
.cart__icon i { display: none; }
.cart__icon::before {
  width: 28px;
  height: 28px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%23ff6100' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h4l3.1 14.2h15L28 9H8.2'/%3E%3Cpath d='M10.5 22h14'/%3E%3Ccircle cx='12' cy='26' r='1.8'/%3E%3Ccircle cx='24' cy='26' r='1.8'/%3E%3C/svg%3E") center/contain no-repeat;
}

.catalog-strip { min-height: 65px; padding: 10px max(13px, calc((100% - 1220px) / 2)); }
.download-button {
  width: max-content;
  height: 45px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 3px;
  color: #fff;
  background: var(--orange);
  font-size: 17px;
}
.download-button__icon { font-size: 23px; }
.download-button__text { white-space: nowrap; }

@media (min-width: 901px) {
  .catalog-strip {
    position: absolute;
    top: 169px;
    left: 0;
    z-index: 8;
    width: 100%;
    min-height: 0;
    padding: 0 12px 0 0;
    pointer-events: none;
  }

  .download-button {
    position: absolute;
    left: max(8px, calc((100% - 1220px) / 2 - 57px));
    width: 45px;
    height: 155px;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 9px;
    padding: 7px 8px;
    pointer-events: auto;
  }

  .download-button__text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .download-button__icon { font-size: 23px; }

  main .container,
  main.container {
    width: min(1220px, calc(100% - 110px));
  }
}

.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 36px 24px;
  padding: 23px 0 68px;
}
.category-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #eceeef;
  overflow: hidden;
}
.category-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}
.category-card__image:hover img { transform: scale(1.08); }
.category-card__title {
  margin: 7px 0 11px;
  color: #161616;
  font-size: 16px;
  line-height: 1.25;
}
.category-card__title a:hover { color: var(--orange); }
.tags { display: flex; flex-wrap: wrap; gap: 6px 8px; }
.tags a {
  padding: 3px 9px;
  border: 1px solid #dadde0;
  border-radius: 3px;
  color: #555;
  background: #fff;
  line-height: 1.1;
}
.tags a:hover { color: #fff; border-color: var(--orange); background: var(--orange); }

.products-section { margin-bottom: 33px; }
.section-title {
  margin: 0 0 32px;
  color: #171717;
  font-size: 15px;
  letter-spacing: .3px;
}
.product-swiper { padding-bottom: 31px; }
.product-swiper .swiper-wrapper { align-items: stretch; }
.product-card {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 392px;
  padding: 8px 15px 17px;
  border: 1px solid #dfe1e3;
  text-align: center;
  height: auto;
}
.product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.product-card__image {
  width: 100%;
  height: 100%;
  display: block;
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card__actions {
  position: absolute;
  right: 7px;
  bottom: 10px;
  left: 7px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.product-card:hover .product-card__actions,
.product-card:focus-within .product-card__actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.product-card__actions button,
.product-card__actions a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #050505;
  font-size: 19px;
  text-decoration: none;
  transition: background .15s;
}
.product-card__actions button:hover,
.product-card__actions a:hover { background: var(--orange); color: #fff; }
.product-card__title {
  width: 100%;
  min-height: 53px;
  max-height: 53px;
  margin: 5px 0 7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 16px;
  line-height: 1.08;
  font-weight: 400;
}
.product-card__title a:hover { color: var(--orange); }
.product-swiper .product-model { display: none; }
.price { min-height: 21px; margin: auto 0 11px; font-size: 16px; font-weight: 700; }
.price del { margin-right: 4px; color: #c63247; font-weight: 400; }
.buy-button {
  min-height: 34px;
  padding: 8px 18px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  background: var(--dark);
  font-size: 12px;
  font-weight: 700;
  transition: background .15s;
}
.buy-button:hover { background: var(--orange); }
.discount {
  position: absolute;
  top: 13px;
  right: 9px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ec0024;
  font-size: 15px;
  font-weight: 700;
}
.product-swiper .swiper-pagination { bottom: 7px; }
.product-swiper .swiper-pagination-bullet {
  width: 21px;
  height: 6px;
  border-radius: 6px;
  background: #090909;
  opacity: 1;
}
.product-swiper .swiper-pagination-bullet-active { background: var(--orange); }
.product-swiper .swiper-button-prev,
.product-swiper .swiper-button-next {
  width: 34px;
  height: 34px;
  margin-top: -31px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(40, 41, 45, .82);
  opacity: 0;
  transition: opacity .2s, background .2s;
}
.product-swiper:hover .swiper-button-prev,
.product-swiper:hover .swiper-button-next { opacity: 1; }
.product-swiper .swiper-button-prev:hover,
.product-swiper .swiper-button-next:hover { background: var(--orange); }
.product-swiper .swiper-button-prev::after,
.product-swiper .swiper-button-next::after { font-size: 13px; font-weight: 700; }

.footer { color: #ddd; background: #050505; }
.footer__top { display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 26px 0 20px; }
.order-status { padding: 10px 16px; border: 0; border-radius: 3px; color: #fff; background: var(--orange); font-weight: 700; }
.order-status-modal {
  position: relative;
  width: min(480px, calc(100vw - 30px));
  max-width: 100%;
  display: none;
  padding: 0;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .38);
}
.order-status-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 24px 20px;
  color: #292929;
  text-align: center;
}
.order-status-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  color: #d4d4d4;
  background: transparent;
  font-size: 16px;
}
.order-status-title {
  margin-bottom: 4px;
  padding-inline: 24px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}
.order-status-form p {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.4;
}
.order-status-form input {
  width: 100%;
  height: 36px;
  padding: 6px 10px;
  border: 1px solid #999;
  border-radius: 0;
  outline: 0;
  color: #555;
  background: #fff;
  font: inherit;
  font-size: 14px;
}
.order-status-form input:focus { border-color: var(--orange); }
.order-status-submit {
  min-width: 160px;
  padding: 10px 18px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
}
.order-status-submit:disabled { opacity: .65; cursor: wait; }
.order-status-result {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: #f6f6f6;
  color: #292929;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}
.order-status-result.is-error {
  background: #fdecea;
  color: #b42318;
}
.order-status-result.is-loading {
  color: #666;
}
.order-status-item + .order-status-split { margin: 10px 0; border: 0; border-top: 1px dashed #ccc; }
.order-status-item b { font-weight: 700; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #5d5e60; font: 700 18px Arial, sans-serif; }
.socials a:hover { background: var(--orange); }
.footer__columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 15px 0 20px; }
.footer__columns section { display: flex; flex-direction: column; gap: 8px; }
.footer__title { margin: 0 0 6px; padding-bottom: 12px; border-bottom: 1px solid #252525; color: #fff; font-size: 15px; letter-spacing: 1px; }
.footer__columns a { font-size: 14px; }
.footer__columns a:hover { color: var(--orange); }
.footer__bottom { min-height: 73px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #868686; }
.cards { display: flex; align-items: center; gap: 8px; }
.cards img { width: 51px; height: 32px; object-fit: contain; }

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 10px;
  z-index: 9;
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #526a77;
  font-size: 21px;
}
.mega-menu {
  position: absolute;
  top: 135px;
  left: max(13px, calc((100% - 1220px) / 2));
  z-index: 20;
  width: max-content;
  max-width: min(1100px, calc(100% - 26px));
  height: 642px;
  display: grid;
  grid-template-columns: 370px;
  color: #444;
  background: #fff;
  border-radius: 0 4px 4px 4px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .27);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .15s, transform .15s, visibility .15s;
  overflow: hidden;
}
.mega-menu:has(#menu-level-two:not([hidden])) {
  grid-template-columns: 370px 370px;
}
.mega-menu:has(#menu-level-two:not([hidden])):has(#menu-level-three:not([hidden])) {
  grid-template-columns: 370px 370px 1fr;
  width: min(1100px, calc(100% - 26px));
}
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-menu__categories,
.mega-menu__levels {
  min-width: 0;
  border-right: 1px solid #ddd;
  background: #fff;
  overflow-y: auto;
}
.mega-menu__item,
.mega-menu__level-item {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: 50px 1fr 20px;
  align-items: center;
  padding: 0 9px 0 7px;
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  color: #3d3d3d;
  background: #fff;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.mega-menu__item-icon {
  width: 43px;
  height: 43px;
  display: block;
}
.mega-menu__levels[hidden],
.mega-menu__levels--third[hidden] {
  display: none !important;
}
.mega-menu__item img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}
.mega-menu__item span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}
.mega-menu__item b,
.mega-menu__level-item b {
  display: inline-block;
  color: #aaa;
  font-size: 17px;
  font-weight: 400;
  transition: transform .15s;
}
.mega-menu__item:hover b,
.mega-menu__item.is-active b,
.mega-menu__level-item:hover b,
.mega-menu__level-item.is-active b { transform: rotate(-90deg); }
.mega-menu__item:hover,
.mega-menu__item.is-active,
.mega-menu__level-item:hover,
.mega-menu__level-item.is-active { color: #111; background: #fafafa; }
.mega-menu__level-item {
  grid-template-columns: 1fr 20px;
  min-height: 49px;
  padding-left: 22px;
  font-size: 15px;
}
.mega-menu__levels--third .mega-menu__level-item {
  display: block;
  padding: 16px 24px;
  color: #333;
}
.mega-menu__levels--third .mega-menu__level-item.is-active { color: inherit; }
.mega-menu__close {
  position: absolute;
  top: 3px;
  right: 7px;
  z-index: 2;
  display: none;
  border: 0;
  color: #777;
  background: transparent;
  font-size: 28px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 30;
  padding: 10px 17px;
  border-radius: 3px;
  color: #fff;
  background: #25262a;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: .2s;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.product-notice {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 120;
  width: min(420px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .25s ease, transform .25s ease;
}
.product-notice.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.product-notice[hidden] { display: none !important; }
.product-notice__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px 12px 16px;
  color: #fff;
  background: #111;
}
.product-notice__title {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
.product-notice__close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin: -2px -4px 0 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 16px;
}
.product-notice__body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px 6px;
  color: #3a3d4a;
  font-size: 14px;
  line-height: 1.35;
}
.product-notice__image {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
}
.product-notice__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-notice__message { min-width: 0; }
.product-notice__message a { color: var(--orange); font-weight: 700; }
.product-notice__message a:hover { text-decoration: underline; }
.product-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 14px 14px;
}
.product-notice__actions[hidden] { display: none !important; }
.product-notice__btn {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 20px;
  color: #fff;
  background: #292a2e;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background .15s;
}
.product-notice__btn:hover { background: var(--orange); color: #fff; }

@media (max-width: 520px) {
  .product-notice {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}

.is-filtered-out { display: none; }

@media (max-width: 1100px) {
  .account-dropdown__label,
  .account-dropdown__caret {
    display: none;
  }
  .account-dropdown__toggle {
    width: 28px;
    height: 28px;
    justify-content: center;
  }
  .account-nav {
    gap: 8px;
  }
  .account-nav__blog span {
    display: none;
  }
}
@media (max-width: 900px) {
  .site-header {
    position: relative;
    height: 157px;
  }
  .topbar {
    height: 32px;
    grid-template-columns: auto 1fr auto;
    padding: 0 12px;
    font-size: 12px;
    gap: 8px;
  }
  .language-picker {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 26px;
  }
  .language {
    border: 0;
    background: transparent;
  }
  .topbar__contact {
    grid-column: 2;
    grid-row: 1;
    justify-content: start;
    gap: 10px;
    min-width: 0;
    overflow: hidden;
  }
  .topbar__contact a:nth-child(2),
  .topbar__contact a:nth-child(3) {
    display: none;
  }
  .account-nav {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 6px;
  }
  .account-dropdown__label,
  .account-dropdown__caret,
  .account-nav__blog {
    display: none;
  }
  .account-dropdown__toggle {
    width: 28px;
    height: 28px;
    justify-content: center;
  }
  .account-dropdown__toggle i:first-child {
    margin-right: 0;
  }
  .account-dropdown__menu {
    right: 0;
    left: auto;
  }
  .topbar a i {
    width: auto;
    margin-right: 2px;
  }
  .header-main {
    position: relative;
    height: 132px;
    display: block;
    padding: 0;
  }
  .header-main__left { display: contents; }
  .logo {
    position: absolute;
    top: 13px;
    left: 0;
    width: 170px;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 3px 3px 3px 7px;
  }
  .logo img {
    width: 160px;
    height: 26px;
  }
  .search {
    position: absolute;
    top: 61px;
    right: 15px;
    left: 15px;
    width: auto;
    height: 29px;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }
  .search__icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    padding: 0;
    font-size: 16px;
  }
  .search input {
    width: 100%;
    padding: 5px 0 5px 30px;
    border: 1px solid #505050;
    color: #fff;
    background: #444349;
    font-size: 13px;
  }
  .search input::placeholder { color: #ddd; }
  .category-button {
    position: absolute;
    top: 95px;
    right: 15px;
    left: 15px;
    width: auto;
    height: 33px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
  }
  .cart {
    position: absolute;
    top: 28px;
    right: 0;
    width: 140px;
    height: 30px;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .cart span:first-child {
    position: absolute;
    top: 0;
    right: 4px;
    z-index: 1;
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    color: #fff;
    background: var(--orange);
    font-size: 0;
    line-height: 15px;
    text-align: center;
  }
  .cart #cart-count {
    color: #fff;
    font-size: 11px;
    line-height: 15px;
  }
  .cart #cart-total { display: none; }
  .cart__icon {
    width: 40px;
    height: 30px;
    flex-basis: 40px;
  }
  .cart-dropdown__menu {
    position: fixed;
    top: 70px;
    right: 8px;
    left: auto;
    width: min(360px, calc(100vw - 16px));
    max-width: calc(100vw - 16px);
  }
  .cart-dropdown__menu::before {
    right: 18px;
  }
  .cart-dropdown__checkout {
    flex-wrap: wrap;
    gap: 10px;
  }
  .cart-dropdown__btn {
    flex: 1 1 auto;
    min-width: 140px;
  }
  .cart__icon::before {
    width: 30px;
    height: 30px;
  }
  .catalog-strip {
    position: absolute;
    top: 30px;
    right: 10px;
    z-index: 20;
    width: auto;
    min-height: 0;
    padding: 0;
  }
  .download-button {
    width: auto;
    height: 21px;
    gap: 4px;
    padding: 0 6px;
    border-radius: 0;
    font-size: 12px;
  }
  .download-button__icon { font-size: 14px; }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .mega-menu {
    position: absolute;
    top: 153px;
    right: 15px;
    left: 15px;
    width: auto;
    height: auto;
    max-height: calc(100dvh - 165px);
    display: block;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .23);
    transform: translateY(-4px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .mega-menu.is-open { transform: translateY(0); }
  .mega-menu__categories {
    border-right: 0;
    overflow: visible;
  }
  .mega-menu__item {
    min-height: 50px;
    grid-template-columns: 44px 1fr 22px;
    padding: 4px 10px 4px 6px;
    border-bottom-color: #ddd;
    background: #fafafa;
  }
  .mega-menu__item img {
    width: 38px;
    height: 38px;
  }
  .mega-menu__item span {
    padding-left: 2px;
    white-space: normal;
    font-size: 14px;
    line-height: 1.15;
  }
  .mega-menu__item b {
    color: #3b3d48;
    font-size: 0;
    text-align: center;
    transform: none !important;
  }
  .mega-menu__item b i { display: none; }
  .mega-menu__item b::before {
    content: "+";
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }
  .mega-menu.is-mobile-category-open .mega-menu__item.is-active {
    color: #2795d2;
    background: #f5f5f5;
  }
  .mega-menu.is-mobile-category-open .mega-menu__item.is-active b {
    color: #2795d2;
  }
  .mega-menu.is-mobile-category-open .mega-menu__item.is-active b::before { content: "−"; }
  .mega-menu__levels {
    display: none;
    border: 0;
    overflow: visible;
  }
  .mega-menu.is-mobile-category-open #menu-level-two { display: block; }
  .mobile-menu__group {
    border-bottom: 1px solid #ddd;
    background: #fff;
  }
  .mobile-menu__section,
  .mobile-menu__link {
    min-height: 38px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
    color: #3d3d3d;
    background: #fff;
    line-height: 1.2;
    text-decoration: none;
  }
  .mobile-menu__section {
    padding: 5px 12px 5px 18px;
    font-size: 15px;
    font-weight: 700;
  }
  .mobile-menu__link {
    padding: 5px 12px 5px 58px;
    font-size: 14px;
  }
  .mobile-menu__group:last-child,
  .mobile-menu__group:last-child .mobile-menu__link:last-child { border-bottom: 0; }
  .mega-menu__levels--third { display: none !important; }
  .mega-menu__close {
    display: none;
  }
  .footer__columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 22px); }
  .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
    padding-top: 10px;
  }
  .category-card__image { max-height: 390px; }
  .section-title { margin-bottom: 18px; }
  .footer__columns { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; padding-block: 12px 70px; }
  .cards { max-width: 100%; flex-wrap: wrap; }
}

/* Cart page quantity — keep narrow (form-control is width:100%) */
.cart-qty-group {
  max-width: 140px;
  width: 140px;
}
.cart-qty-group .cart-qty,
input.form-control.cart-qty {
  width: 56px;
  max-width: 56px;
  min-width: 48px;
  text-align: center;
  padding-left: 6px;
  padding-right: 6px;
}
