:root {
  --px-navy-950: #07111f;
  --px-navy-900: #0b1729;
  --px-navy-800: #13243c;
  --px-blue-700: #075fc7;
  --px-blue-600: #0877ee;
  --px-blue-500: #2187f4;
  --px-blue-100: #eaf4ff;
  --px-orange-600: #ed5b11;
  --px-orange-500: #ff6a1a;
  --px-green-600: #12a150;
  --px-slate-700: #35445a;
  --px-slate-600: #536176;
  --px-slate-500: #728096;
  --px-slate-300: #cfd8e5;
  --px-slate-200: #e4eaf1;
  --px-slate-100: #f3f6fa;
  --px-white: #fff;
  --px-radius-sm: 10px;
  --px-radius: 16px;
  --px-radius-lg: 24px;
  --px-shadow-sm: 0 6px 22px rgba(7, 17, 31, .07);
  --px-shadow: 0 18px 50px rgba(7, 17, 31, .11);
  --px-container: 1440px;
}

/* v40: reliable inline photo/video swipe navigation */
.route-product-product .product-image.px-manual-gallery .main-image {
  touch-action: pan-y !important;
}

.route-product-product .product-image.px-manual-gallery .main-image img {
  -webkit-user-drag: none;
  user-select: none;
}

.route-product-product .px-product-video {
  position: relative;
}

.route-product-product .px-video-play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 12;
  display: inline-flex;
  min-width: 142px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(15, 23, 42, .88);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .26);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.route-product-product .px-video-play-button span {
  font-size: 19px;
}

.route-product-product .px-product-video.is-playing .px-video-play-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .route-product-product .px-video-play-button {
    min-width: 132px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
  }
}

.route-product-product .px-inline-gallery-nav {
  position: absolute;
  inset: 50% 12px auto;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.route-product-product .px-inline-gallery-nav button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, .13);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .15);
  color: #0f172a;
  font-size: 31px;
  line-height: 38px;
  pointer-events: auto;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.route-product-product .px-inline-gallery-nav button:hover,
.route-product-product .px-inline-gallery-nav button:focus-visible {
  border-color: #f27a1a;
  color: #f27a1a;
  transform: scale(1.05);
  outline: none;
}

@media (max-width: 767px) {
  .route-product-product .px-inline-gallery-nav {
    right: 8px;
    left: 8px;
  }

  .route-product-product .px-inline-gallery-nav button {
    width: 36px;
    height: 36px;
    font-size: 27px;
    line-height: 32px;
    background: rgba(15, 23, 42, .78);
    border-color: rgba(255, 255, 255, .38);
    color: #fff;
    box-shadow: 0 5px 16px rgba(15, 23, 42, .22);
  }
}

/* v39: unified fullscreen photo and video viewer */
html.px-media-viewer-open,
html.px-media-viewer-open body {
  overflow: hidden !important;
}

.px-gallery-expand {
  position: absolute;
  z-index: 10;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #d7e0eb;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #07111f;
  box-shadow: 0 7px 20px rgba(7, 17, 31, .14);
  font-size: 21px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.px-gallery-expand:hover,
.px-gallery-expand:focus-visible {
  border-color: #0877ee;
  color: #0877ee;
  outline: none;
}

.px-media-viewer {
  position: fixed;
  z-index: 250000;
  inset: 0;
  display: none;
  grid-template-rows: 58px minmax(0, 1fr);
  background: rgba(4, 9, 16, .94);
  color: #fff;
  backdrop-filter: blur(8px);
}

.px-media-viewer.is-open {
  display: grid;
}

.px-media-viewer__toolbar {
  min-width: 0;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(4, 9, 16, .72);
}

.px-media-viewer__counter {
  min-width: 62px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .03em;
}

.px-media-viewer__tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.px-media-viewer__tools button,
.px-media-viewer__arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.px-media-viewer__tools button:hover,
.px-media-viewer__tools button:focus-visible,
.px-media-viewer__arrow:hover,
.px-media-viewer__arrow:focus-visible {
  border-color: rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .18);
  outline: none;
  transform: translateY(-1px);
}

.px-media-viewer__shell {
  min-width: 0;
  min-height: 0;
  width: min(1240px, 100%);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 112px;
}

.px-media-viewer__stage {
  min-width: 0;
  min-height: 0;
  position: relative;
  padding: 18px 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: pan-y;
}

.px-media-viewer__media {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.px-media-viewer__media img,
.px-media-viewer__media video,
.px-media-viewer__media iframe {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  border-radius: 8px;
  object-fit: contain;
  transition: transform .18s ease;
}

.px-media-viewer__media img {
  background: #fff;
  box-shadow: 0 16px 55px rgba(0, 0, 0, .32);
  cursor: zoom-in;
  transform-origin: center center;
}

.px-media-viewer__media video,
.px-media-viewer__media iframe {
  width: min(100%, 980px);
  height: min(100%, 720px);
  background: #02050a;
}

.px-media-viewer__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  font-size: 45px;
}

.px-media-viewer__arrow:hover,
.px-media-viewer__arrow:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.px-media-viewer__arrow--prev {
  left: 20px;
}

.px-media-viewer__arrow--next {
  right: 20px;
}

.px-media-viewer__thumbs {
  min-width: 0;
  padding: 10px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: rgba(4, 9, 16, .8);
  scrollbar-width: thin;
}

.px-media-viewer__thumb {
  width: 78px;
  height: 78px;
  min-width: 78px;
  position: relative;
  padding: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #fff;
  opacity: .68;
  cursor: pointer;
}

.px-media-viewer__thumb.is-active {
  border-color: #ff7a00;
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(255, 122, 0, .2);
}

.px-media-viewer__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.px-media-viewer__thumb.is-video {
  background: #07111f;
}

.px-media-viewer__thumb.is-video img {
  opacity: .58;
}

.px-media-viewer__video-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-shadow: 0 2px 7px rgba(0, 0, 0, .7);
}

.px-media-viewer--video [data-px-media-action="zoom-in"],
.px-media-viewer--video [data-px-media-action="zoom-out"] {
  opacity: .35;
  pointer-events: none;
}

@media (max-width: 767px) {
  .px-gallery-expand {
    top: 9px;
    left: 9px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .px-media-viewer {
    grid-template-rows: 52px minmax(0, 1fr);
  }

  .px-media-viewer__toolbar {
    padding: 6px 10px;
  }

  .px-media-viewer__tools {
    gap: 5px;
  }

  .px-media-viewer__tools button {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .px-media-viewer__shell {
    grid-template-rows: minmax(0, 1fr) 94px;
  }

  .px-media-viewer__stage {
    padding: 8px 10px;
  }

  .px-media-viewer__media img,
  .px-media-viewer__media video,
  .px-media-viewer__media iframe {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
  }

  .px-media-viewer__media video,
  .px-media-viewer__media iframe {
    height: 100%;
  }

  .px-media-viewer__arrow {
    width: 42px;
    height: 42px;
    border-color: rgba(255, 255, 255, .3);
    background: rgba(4, 9, 16, .56);
    font-size: 35px;
  }

  .px-media-viewer__arrow--prev {
    left: 8px;
  }

  .px-media-viewer__arrow--next {
    right: 8px;
  }

  .px-media-viewer__thumbs {
    padding: 8px 10px 10px;
    justify-content: flex-start;
    gap: 7px;
  }

  .px-media-viewer__thumb {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 9px;
  }
}

html {
  background: var(--px-white);
  scroll-behavior: smooth;
}

body {
  background: var(--px-white) !important;
  color: var(--px-navy-950);
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
}

* {
  box-sizing: border-box;
}

a {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.container,
.header-classic .header > *,
.header-classic .header .navbar-nav,
.breadcrumb,
.module-master_slider,
.px-benefits,
.px-model-finder,
.px-buying-guides {
  width: min(calc(100% - 48px), var(--px-container)) !important;
  max-width: var(--px-container) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.site-wrapper {
  background: var(--px-white);
  overflow: clip;
}

/* Announcement */
.header-notice,
.header-notice > div,
.header-notice .module,
.notice-module,
.module-header_notice {
  min-height: 34px !important;
  max-height: 34px !important;
  background: var(--px-navy-950) !important;
  border: 0 !important;
}

.header-notice,
.notice-module,
.module-header_notice {
  position: relative !important;
  overflow: hidden !important;
}

.header-notice *,
.notice-module *,
.module-header_notice * {
  color: #eaf2fb !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .035em;
}

/* Header */
.header-classic {
  background: rgba(255, 255, 255, .97) !important;
  border-bottom: 1px solid var(--px-slate-200);
  box-shadow: 0 8px 28px rgba(7, 17, 31, .055);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 100;
}

.header-classic .header {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  background: transparent !important;
}

.header-classic .top-bar {
  min-height: 32px !important;
  border-bottom: 1px solid var(--px-slate-100);
  color: var(--px-slate-600);
}

.header-classic .top-bar .j-menu {
  align-items: center;
  gap: 17px;
}

.header-classic .top-bar a {
  min-height: 32px !important;
  color: var(--px-slate-600) !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

.header-classic .top-bar a:hover {
  color: var(--px-blue-600) !important;
}

.header-classic .mid-bar {
  min-height: 92px !important;
  padding: 17px 0 !important;
  display: grid !important;
  grid-template-columns: minmax(190px, 240px) minmax(360px, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.desktop-logo-wrapper,
.desktop-search-wrapper,
.classic-cart-wrapper {
  position: static !important;
  width: auto !important;
  inset: auto !important;
  transform: none !important;
}

.desktop-logo-wrapper #logo {
  width: 100%;
}

.desktop-logo-wrapper img {
  display: block;
  width: 100% !important;
  max-width: 235px !important;
  height: auto !important;
  object-fit: contain;
}

.desktop-search-wrapper .dropdown,
.desktop-search-wrapper .dropdown-menu,
.header-search,
.header-search .twitter-typeahead {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  inset: auto !important;
  transform: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.desktop-search-wrapper .search-trigger {
  display: none !important;
}

.header-search {
  min-height: 54px;
  border: 1.5px solid #b9c7d9 !important;
  border-radius: 16px !important;
  background: var(--px-white) !important;
  box-shadow: 0 6px 18px rgba(7, 17, 31, .045) !important;
  overflow: visible !important;
}

.header-search:focus-within {
  border-color: var(--px-blue-600) !important;
  box-shadow: 0 0 0 4px rgba(8, 119, 238, .12) !important;
}

.header-search .search-input,
.header-search input {
  width: 100% !important;
  height: 52px !important;
  padding: 0 74px 0 20px !important;
  border: 0 !important;
  border-radius: 15px !important;
  background: var(--px-white) !important;
  color: var(--px-navy-950) !important;
  font-size: 14px !important;
  font-weight: 550;
  outline: 0 !important;
}

.header-search input::placeholder {
  color: #8290a4 !important;
  opacity: 1;
}

.header-search .search-button {
  position: absolute !important;
  z-index: 4;
  top: 4px !important;
  right: 4px !important;
  width: 52px !important;
  height: 46px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--px-navy-950) !important;
  color: var(--px-white) !important;
  font-size: 20px !important;
}

.header-search .search-button:hover {
  background: var(--px-blue-600) !important;
  transform: translateY(-1px);
}

.header-search .tt-menu {
  top: calc(100% + 8px) !important;
  width: 100% !important;
  padding: 10px !important;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: var(--px-shadow) !important;
}

.classic-cart-wrapper {
  min-width: 292px;
}

.classic-cart-wrapper > .top-menu,
.classic-cart-wrapper .secondary-menu,
.classic-cart-wrapper .j-menu {
  width: 100% !important;
}

.classic-cart-wrapper > .top-menu {
  padding: 0 !important;
  border: 1px solid var(--px-slate-200);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(7, 17, 31, .04);
}

.classic-cart-wrapper .j-menu {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0 !important;
}

.classic-cart-wrapper .j-menu > li,
.classic-cart-wrapper .desktop-cart-wrapper {
  width: auto !important;
  min-width: 0 !important;
  border-right: 1px solid var(--px-slate-200);
}

.classic-cart-wrapper .j-menu > li:last-child,
.classic-cart-wrapper .desktop-cart-wrapper {
  border-right: 0;
}

.classic-cart-wrapper .j-menu > li > a,
.classic-cart-wrapper .cart-heading {
  min-height: 62px !important;
  padding: 9px 11px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--px-navy-900) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.1;
}

.classic-cart-wrapper .j-menu > li > a:hover,
.classic-cart-wrapper .cart-heading:hover {
  background: var(--px-slate-100) !important;
  color: var(--px-blue-600) !important;
}

.classic-cart-wrapper i,
.classic-cart-wrapper .links-text:before {
  font-size: 23px !important;
}

.classic-cart-wrapper .count-badge {
  min-width: 18px !important;
  height: 18px !important;
  padding: 0 5px !important;
  border: 2px solid #fff !important;
  border-radius: 999px !important;
  background: var(--px-orange-500) !important;
  color: #fff !important;
  font-size: 10px !important;
  line-height: 14px !important;
}

.header-classic .main-menu {
  width: 100% !important;
  min-height: 54px !important;
  border-top: 1px solid var(--px-slate-200) !important;
  background: #fff !important;
}

.header-classic .main-menu > .j-menu {
  display: grid !important;
  grid-template-columns: 1.05fr 1.2fr 1.65fr 1.35fr .72fr;
  align-items: stretch;
  width: 100% !important;
}

.header-classic .main-menu .menu-item {
  min-width: 0 !important;
  border-right: 1px solid var(--px-slate-200) !important;
}

.header-classic .main-menu .menu-item:last-child {
  border-right: 0 !important;
}

.header-classic .main-menu .menu-item > a {
  min-height: 54px !important;
  padding: 0 15px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--px-navy-900) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em;
  white-space: normal !important;
  text-align: center;
}

.header-classic .main-menu .menu-item > a:hover,
.header-classic .main-menu .menu-item.active > a {
  background: var(--px-blue-100) !important;
  color: var(--px-blue-700) !important;
}

/* Benefits */
.px-benefits {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px !important;
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.px-benefit {
  min-height: 84px;
  padding: 16px 17px !important;
  display: grid !important;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: var(--px-shadow-sm);
}

.px-benefit:hover {
  border-color: #bcd8f8 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 17, 31, .1);
}

.px-benefit > :first-child,
.px-benefit i {
  width: 44px !important;
  height: 44px !important;
  display: grid !important;
  place-items: center;
  border-radius: 12px !important;
  background: var(--px-blue-100) !important;
  color: var(--px-blue-700) !important;
}

.px-benefit strong {
  display: block;
  margin-bottom: 4px;
  color: var(--px-navy-950);
  font-size: 14px;
  font-weight: 800;
}

.px-benefit small,
.px-benefit span {
  color: var(--px-slate-600);
  font-size: 12px;
}

/* Slider */
.module-master_slider {
  position: relative;
  overflow: hidden !important;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 22px !important;
  background: var(--px-slate-100);
  box-shadow: var(--px-shadow-sm);
  isolation: isolate;
}

.module-master_slider .master-slider,
.module-master_slider .ms-view,
.module-master_slider .ms-inner-controls-cont {
  max-width: 100% !important;
  overflow: hidden !important;
  border-radius: inherit !important;
}

.module-master_slider .ms-slide-container {
  max-width: none !important;
  overflow: visible !important;
}

.module-master_slider .ms-slide,
.module-master_slider .ms-slide-bgcont,
.module-master_slider .ms-slide-bgcont img {
  border-radius: 20px !important;
}

.module-master_slider .ms-slide-bgcont img {
  object-fit: cover !important;
}

.module-master_slider .ms-bullets {
  bottom: 14px !important;
}

.module-master_slider .ms-bullet {
  width: 9px !important;
  height: 9px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .7) !important;
  box-shadow: 0 1px 7px rgba(0, 0, 0, .25);
}

.module-master_slider .ms-bullet-selected {
  width: 26px !important;
  background: var(--px-blue-600) !important;
}

/* Model finder */
.px-model-finder {
  margin-top: 26px !important;
  margin-bottom: 28px !important;
  padding: clamp(22px, 3vw, 38px);
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.5fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  border: 1px solid #cfe2f8;
  border-radius: var(--px-radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(33, 135, 244, .13), transparent 34%),
    linear-gradient(135deg, #f8fbff, #eef6ff);
}

.px-model-finder__eyebrow {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--px-blue-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.px-model-finder h1 {
  margin: 0 0 8px;
  color: var(--px-navy-950);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.07;
}

.px-model-finder p {
  margin: 0;
  color: var(--px-slate-600);
  font-size: 14px;
  line-height: 1.6;
}

.px-model-finder__chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.px-model-chip {
  min-height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5d6e9;
  border-radius: 13px;
  background: rgba(255, 255, 255, .88);
  color: var(--px-navy-900);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.px-model-chip:hover,
.px-model-chip:focus {
  border-color: var(--px-blue-600);
  background: var(--px-blue-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(8, 119, 238, .2);
}

/* Titles and breadcrumbs */
.breadcrumb {
  margin-top: 20px !important;
  margin-bottom: 14px !important;
  padding: 0 !important;
  background: transparent !important;
}

.breadcrumb a,
.breadcrumb li {
  color: var(--px-slate-500) !important;
  font-size: 12px !important;
}

.page-title,
h1.title.page-title {
  margin: 0 auto 26px !important;
  padding: 24px 28px !important;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #f8fafc, #f2f6fb) !important;
  color: var(--px-navy-950) !important;
  font-size: clamp(24px, 2.4vw, 34px) !important;
  font-weight: 850 !important;
  letter-spacing: -.035em;
}

/* Product modules and cards */
.module-products {
  margin-top: 28px !important;
  margin-bottom: 44px !important;
}

.module-title,
.module-products .module-title,
.module-products h3 {
  color: var(--px-navy-950) !important;
  font-weight: 850 !important;
  letter-spacing: -.025em;
}

.product-grid,
.products-grid {
  gap: 0 !important;
}

.product-layout {
  padding: 8px !important;
}

.product-thumb {
  height: 100% !important;
  min-height: 0 !important;
  padding: 14px !important;
  display: flex !important;
  flex-direction: column;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 6px 20px rgba(7, 17, 31, .045) !important;
  overflow: hidden;
}

.product-thumb:hover {
  border-color: #bed8f6 !important;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7, 17, 31, .1) !important;
}

.product-thumb .image {
  height: auto !important;
  min-height: 270px !important;
  aspect-ratio: 1 / 1.08;
  margin: 0 0 15px !important;
  padding: 12px !important;
  display: grid !important;
  place-items: center;
  border: 0 !important;
  border-radius: 15px !important;
  background: #f7f9fc !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.product-thumb .product-img,
.product-thumb .product-img > div {
  width: 100% !important;
  height: 100% !important;
}

.product-thumb .image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: multiply;
}

.product-thumb .caption {
  min-height: 0 !important;
  padding: 0 3px 3px !important;
  display: flex !important;
  flex: 1;
  flex-direction: column;
}

.product-thumb .stats,
.product-thumb .description,
.product-thumb .rating.no-rating,
.product-thumb .btn-compare {
  display: none !important;
}

.product-thumb .name {
  min-height: 45px !important;
  margin: 0 0 10px !important;
  overflow: hidden;
}

.product-thumb .name a {
  color: var(--px-navy-900) !important;
  font-size: 14px !important;
  font-weight: 720 !important;
  line-height: 1.45 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-thumb .name a:hover {
  color: var(--px-blue-700) !important;
}

.product-thumb .price {
  min-height: 34px !important;
  margin: auto 0 11px !important;
  color: var(--px-navy-950) !important;
  font-size: 20px !important;
  font-weight: 850 !important;
  letter-spacing: -.025em;
}

.product-thumb .price-old {
  color: var(--px-slate-500) !important;
  font-size: 13px !important;
}

.product-thumb .rating {
  min-height: 17px !important;
  margin-bottom: 11px !important;
  color: #f4b400 !important;
}

.product-thumb .buttons-wrapper,
.product-thumb .button-group,
.product-thumb .cart-group {
  width: 100% !important;
}

.product-thumb .stepper {
  display: none !important;
}

.product-thumb .button-group {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 9px;
}

.product-thumb .cart-group {
  display: block !important;
}

.product-thumb .btn-cart {
  width: 100% !important;
  min-height: 44px !important;
  padding: 0 15px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--px-blue-600) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 18px rgba(8, 119, 238, .2);
}

.product-thumb .btn-cart:hover {
  background: var(--px-blue-700) !important;
  transform: translateY(-1px);
}

.product-thumb .wish-group {
  position: absolute !important;
  top: 23px !important;
  left: 23px !important;
  z-index: 8;
  display: block !important;
}

.product-thumb .btn-wishlist {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .94) !important;
  color: var(--px-navy-900) !important;
  box-shadow: 0 7px 18px rgba(7, 17, 31, .11);
}

.product-thumb .btn-wishlist:hover {
  border-color: #ffc5c5 !important;
  background: #fff0f0 !important;
  color: #e63d3d !important;
}

.product-thumb .quickview-button {
  top: 23px !important;
  right: 23px !important;
  z-index: 7;
}

.product-thumb .btn-quickview {
  width: 42px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(7, 17, 31, .9) !important;
  color: #fff !important;
  box-shadow: 0 7px 18px rgba(7, 17, 31, .15);
}

.product-thumb .product-labels {
  position: absolute !important;
  top: 20px !important;
  right: 19px !important;
  z-index: 6;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  pointer-events: none;
}

.product-thumb .product-label {
  position: static !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--px-navy-950) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  box-shadow: none !important;
}

.product-thumb .product-label b,
.route-product-product .product-label b {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Category / filter */
.route-product-category #content {
  min-width: 0;
}

.route-product-category .row {
  align-items: flex-start;
}

.route-product-category #column-left {
  width: clamp(260px, 22vw, 315px) !important;
  flex: 0 0 clamp(260px, 22vw, 315px) !important;
  margin-right: 18px !important;
}

.route-product-category #content {
  flex: 1 1 auto !important;
  width: auto !important;
}

.filter,
.module-filter,
#column-left .module {
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 17px !important;
  background: #fff !important;
  box-shadow: var(--px-shadow-sm);
  overflow: hidden;
}

.filter .module-title,
.module-filter .module-title,
#column-left .module-title {
  min-height: 56px;
  margin: 0 !important;
  padding: 0 18px !important;
  display: flex;
  align-items: center;
  background: var(--px-navy-950) !important;
  color: #fff !important;
  font-size: 14px !important;
}

.filter-group {
  padding: 16px 18px !important;
  border-bottom: 1px solid var(--px-slate-200) !important;
}

.filter-group:last-child {
  border-bottom: 0 !important;
}

.filter-group label {
  min-height: 36px;
  color: var(--px-slate-700) !important;
  font-size: 13px !important;
}

.route-product-category .products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.route-product-category .product-layout {
  width: auto !important;
  max-width: none !important;
}

/* Product page */
.route-product-product .product-info {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr);
  align-items: start;
  gap: clamp(24px, 4vw, 52px) !important;
}

.route-product-product .product-left,
.route-product-product .product-right {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.route-product-product .product-left {
  position: sticky;
  top: 18px;
}

.route-product-product .product-image {
  padding: 16px !important;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: var(--px-shadow-sm);
  overflow: hidden !important;
}

.route-product-product .product-image .swiper-container,
.route-product-product .product-image .swiper-wrapper,
.route-product-product .product-image .swiper-slide {
  overflow: hidden !important;
}

.route-product-product .product-image .swiper-slide {
  border-radius: 17px !important;
  background: #f7f9fc !important;
}

.route-product-product .product-image img {
  width: 100% !important;
  max-height: 600px !important;
  object-fit: contain !important;
}

.route-product-product .additional-images {
  margin-top: 12px !important;
  gap: 9px !important;
}

.route-product-product .additional-image {
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 11px !important;
  background: #fff !important;
  overflow: hidden;
}

.route-product-product .product-details {
  padding: clamp(22px, 3vw, 34px) !important;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: var(--px-shadow);
}

.route-product-product .product-details .page-title {
  margin: 0 0 13px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--px-navy-950) !important;
  font-size: clamp(24px, 2.1vw, 34px) !important;
  line-height: 1.18 !important;
}

.route-product-product .product-price {
  margin: 18px 0 !important;
  padding: 17px 0 !important;
  border-top: 1px solid var(--px-slate-200);
  border-bottom: 1px solid var(--px-slate-200);
  color: var(--px-blue-700) !important;
  font-size: clamp(31px, 3vw, 42px) !important;
  font-weight: 900 !important;
  letter-spacing: -.04em;
}

.route-product-product .product-stats {
  margin: 0 0 16px !important;
  padding: 14px 16px !important;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 14px !important;
  background: var(--px-slate-100) !important;
}

.route-product-product .product-stats ul {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.route-product-product .product-stats li {
  min-width: 0;
  padding: 0 10px !important;
  border-right: 1px solid var(--px-slate-200);
  color: var(--px-slate-600) !important;
  text-align: center;
}

.route-product-product .product-stats li:last-child {
  border-right: 0;
}

.route-product-product .product-stats b {
  display: block;
  margin-bottom: 4px;
  color: var(--px-slate-500);
  font-size: 10px;
  font-weight: 650;
}

.route-product-product .product-stats span,
.route-product-product .product-stats a {
  color: var(--px-navy-900) !important;
  font-size: 12px;
  font-weight: 750;
}

.route-product-product .product-options,
.route-product-product .product-extra,
.route-product-product .button-group-page {
  margin-top: 14px !important;
}

.route-product-product #button-cart,
.route-product-product .btn-cart {
  min-height: 54px !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: var(--px-blue-600) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  box-shadow: 0 10px 23px rgba(8, 119, 238, .24) !important;
}

.route-product-product #button-cart:hover,
.route-product-product .btn-cart:hover {
  background: var(--px-blue-700) !important;
  transform: translateY(-2px);
}

.route-product-product .btn-extra-quickbuy,
.route-product-product [class*="quick-buy"],
.route-product-product [class*="quickbuy"] {
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: var(--px-orange-500) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  box-shadow: 0 10px 23px rgba(255, 106, 26, .22) !important;
}

.route-product-product .product-labels {
  position: absolute !important;
  z-index: 5;
  top: 20px !important;
  right: 20px !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.route-product-product .product-label {
  position: static !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--px-navy-950) !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  line-height: 1.15 !important;
  box-shadow: none !important;
}

.route-product-product .px-product-assurance,
.route-product-product .px-product-benefits {
  margin: 14px 0 !important;
}

.route-product-product .product-blocks {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.route-product-product .product-blocks:empty,
.route-product-product .buttons-wrapper:empty,
.route-product-product .wish-group:empty {
  display: none !important;
}

.route-product-product .product-tabs {
  margin-top: 40px !important;
}

.route-product-product .nav-tabs {
  border-bottom: 1px solid var(--px-slate-200) !important;
}

.route-product-product .nav-tabs > li > a {
  padding: 14px 20px !important;
  color: var(--px-slate-600) !important;
  font-weight: 750 !important;
}

.route-product-product .nav-tabs > li.active > a {
  border-color: var(--px-slate-200) var(--px-slate-200) #fff !important;
  color: var(--px-blue-700) !important;
}

.route-product-product .tab-content {
  padding: 24px !important;
  border: 1px solid var(--px-slate-200);
  border-top: 0;
  border-radius: 0 0 17px 17px;
  color: var(--px-slate-700);
  font-size: 15px;
  line-height: 1.75;
}

/* Cart and checkout */
.route-checkout-cart .cart-page,
.route-checkout-checkout #content,
.route-journal3-checkout #content {
  padding: 20px !important;
  border: 1px solid var(--px-slate-200);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--px-shadow-sm);
}

.cart-page .table-responsive {
  border: 0 !important;
  border-radius: 15px;
  overflow: hidden;
}

.cart-page table {
  margin: 0 !important;
  border: 1px solid var(--px-slate-200) !important;
}

.cart-page thead td {
  padding: 14px 12px !important;
  border: 0 !important;
  background: var(--px-slate-100) !important;
  color: var(--px-slate-600) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cart-page tbody td {
  padding: 17px 12px !important;
  border-color: var(--px-slate-200) !important;
  vertical-align: middle !important;
}

.cart-page .td-name a {
  color: var(--px-navy-900) !important;
  font-weight: 750 !important;
}

.cart-page .cart-bottom {
  margin-top: 20px !important;
}

.cart-page .cart-total,
.cart-page .cart-panels {
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 15px !important;
  overflow: hidden;
}

.cart-page .btn-primary,
.route-checkout-checkout .btn-primary,
.route-journal3-checkout .btn-primary {
  min-height: 50px !important;
  padding: 0 25px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--px-orange-500) !important;
  color: #fff !important;
  font-weight: 850 !important;
  box-shadow: 0 9px 22px rgba(255, 106, 26, .2);
}

.route-checkout-checkout .checkout-wrapper,
.route-journal3-checkout .checkout-wrapper {
  min-height: 360px;
}

.route-checkout-checkout .checkout-loading,
.route-journal3-checkout .checkout-loading {
  color: var(--px-slate-600);
}

/* Account forms */
.route-account-login .login_reg_new,
.route-account-register #content,
.route-account-forgotten #content {
  max-width: 680px !important;
  margin: 28px auto 50px !important;
  padding: clamp(24px, 4vw, 44px) !important;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: var(--px-shadow);
}

.route-account-login .login_reg_new .in:first-child {
  height: auto !important;
  margin-bottom: 20px !important;
}

.route-account-login .login_reg_new #logo img {
  width: 230px !important;
  height: auto !important;
  margin: 0 auto;
  display: block;
}

.route-account-login .form-in input,
.form-control {
  min-height: 45px;
  border: 1px solid #c7d2e1 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--px-navy-950) !important;
}

.route-account-login .form-in input:focus,
.form-control:focus {
  border-color: var(--px-blue-600) !important;
  box-shadow: 0 0 0 3px rgba(8, 119, 238, .11) !important;
}

/* Buying guides */
.px-buying-guides {
  margin-top: 36px !important;
  margin-bottom: 54px !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.px-guide-card {
  min-height: 170px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--px-slate-200);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--px-shadow-sm);
}

.px-guide-card__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--px-blue-100);
  color: var(--px-blue-700);
  font-size: 18px;
}

.px-guide-card h2 {
  margin: 0 0 7px;
  color: var(--px-navy-950);
  font-size: 18px;
  font-weight: 830;
}

.px-guide-card p {
  margin: 0 0 15px;
  color: var(--px-slate-600);
  font-size: 13px;
  line-height: 1.55;
}

.px-guide-card a {
  margin-top: auto;
  color: var(--px-blue-700);
  font-size: 13px;
  font-weight: 800;
}

/* Footer */
footer {
  margin-top: 30px !important;
  border-top: 4px solid var(--px-blue-600) !important;
  background: var(--px-navy-950) !important;
  color: #d7e2ef !important;
}

footer .links-menu h3,
footer h3 {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

footer a,
footer .links-text {
  color: #c9d5e4 !important;
}

footer a:hover {
  color: #fff !important;
}

footer input {
  min-height: 45px !important;
  border: 1px solid #41516a !important;
  border-radius: 12px 0 0 12px !important;
  background: #fff !important;
  color: var(--px-navy-950) !important;
}

footer button {
  min-width: 52px !important;
  border-radius: 0 12px 12px 0 !important;
  background: var(--px-blue-600) !important;
  color: #fff !important;
}

footer a[href="#"],
footer a[href=""] {
  display: none !important;
}

/* Notifications and support */
.notification-wrapper {
  z-index: 10010 !important;
}

.notification-wrapper-bottom {
  left: 20px !important;
  right: auto !important;
  bottom: 20px !important;
  max-width: min(360px, calc(100vw - 40px)) !important;
}

.notification-wrapper .notification {
  padding: 16px 40px 16px 17px !important;
  border: 1px solid #263754 !important;
  border-radius: 14px !important;
  background: rgba(7, 17, 31, .96) !important;
  color: #fff !important;
  box-shadow: 0 16px 45px rgba(7, 17, 31, .28) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.px-toast-region {
  position: fixed;
  z-index: 10050;
  top: 18px;
  right: 18px;
  width: min(390px, calc(100vw - 36px));
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.px-toast {
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #bde6ce;
  border-radius: 15px;
  background: #fff;
  color: var(--px-navy-950);
  box-shadow: 0 18px 48px rgba(7, 17, 31, .18);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: auto;
}

.px-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.px-toast__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #e7f8ee;
  color: var(--px-green-600);
  font-size: 18px;
  font-weight: 900;
}

.px-toast strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 850;
}

.px-toast span {
  color: var(--px-slate-600);
  font-size: 12px;
}

.px-toast a {
  padding: 9px 11px;
  border-radius: 9px;
  background: var(--px-navy-950);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.px-mobile-buybar {
  display: none;
}

@media (max-width: 1180px) {
  .header-classic .mid-bar {
    grid-template-columns: 190px minmax(300px, 1fr) 260px;
    gap: 24px;
  }

  .route-product-category .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  .container,
  .header-classic .header > *,
  .header-classic .header .navbar-nav,
  .breadcrumb,
  .module-master_slider,
  .px-benefits,
  .px-model-finder,
  .px-buying-guides {
    width: min(calc(100% - 28px), var(--px-container)) !important;
  }

  .px-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .px-model-finder {
    grid-template-columns: 1fr;
  }

  .route-product-category #column-left {
    width: 245px !important;
    flex-basis: 245px !important;
  }

  .route-product-category .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .route-product-product .product-info {
    grid-template-columns: 1fr !important;
  }

  .route-product-product .product-left {
    position: static;
  }
}

@media (max-width: 767px) {
  .container,
  .breadcrumb,
  .module-master_slider,
  .px-benefits,
  .px-model-finder,
  .px-buying-guides {
    width: calc(100% - 22px) !important;
  }

  .header-notice,
  .header-notice > div,
  .header-notice .module {
    min-height: 30px !important;
    max-height: 30px !important;
  }

  .mobile-header {
    min-height: 64px !important;
    border-bottom: 1px solid var(--px-slate-200) !important;
    background: rgba(255, 255, 255, .97) !important;
    box-shadow: 0 7px 20px rgba(7, 17, 31, .07);
  }

  .mobile-header img {
    max-width: 150px !important;
    max-height: 42px !important;
    object-fit: contain;
  }

  .mobile-header a,
  .mobile-header button {
    color: var(--px-navy-950) !important;
  }

  .px-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px !important;
    margin-top: 11px !important;
    margin-bottom: 12px !important;
  }

  .px-benefit {
    min-height: 72px !important;
    padding: 12px !important;
    grid-template-columns: 36px 1fr;
    gap: 9px;
    border-radius: 13px !important;
  }

  .px-benefit > :first-child,
  .px-benefit i {
    width: 36px !important;
    height: 36px !important;
  }

  .px-benefit strong {
    font-size: 12px;
  }

  .px-benefit small,
  .px-benefit span {
    font-size: 10px;
  }

  .module-master_slider {
    border-radius: 15px !important;
  }

  .module-master_slider .master-slider,
  .module-master_slider .ms-view,
  .module-master_slider .ms-slide,
  .module-master_slider .ms-slide-bgcont,
  .module-master_slider .ms-slide-bgcont img {
    border-radius: 14px !important;
  }

  .px-model-finder {
    margin-top: 16px !important;
    margin-bottom: 20px !important;
    padding: 20px 16px;
    border-radius: 17px;
  }

  .px-model-finder__chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .px-model-chip {
    min-height: 43px;
    font-size: 12px;
  }

  .page-title,
  h1.title.page-title {
    margin-bottom: 18px !important;
    padding: 18px !important;
    border-radius: 15px !important;
    font-size: 24px !important;
  }

  .product-layout {
    padding: 5px !important;
  }

  .product-thumb {
    padding: 10px !important;
    border-radius: 14px !important;
  }

  .product-thumb .image {
    min-height: 170px !important;
    padding: 8px !important;
    border-radius: 12px !important;
  }

  .product-thumb .name {
    min-height: 42px !important;
  }

  .product-thumb .name a {
    font-size: 12px !important;
  }

  .product-thumb .price {
    font-size: 17px !important;
  }

  .product-thumb .quickview-button {
    display: none !important;
  }

  .product-thumb .wish-group {
    top: 15px !important;
    left: 15px !important;
  }

  .product-thumb .btn-wishlist {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .product-thumb .btn-cart {
    min-height: 41px !important;
    padding: 0 9px !important;
    font-size: 11px !important;
  }

  .route-product-category #column-left {
    display: none !important;
  }

  .route-product-category #content {
    width: 100% !important;
  }

  .route-product-category .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 5px !important;
  }

  .route-product-product .product-info {
    gap: 16px !important;
  }

  .route-product-product .product-image {
    padding: 10px !important;
    border-radius: 16px !important;
  }

  .route-product-product .product-details {
    padding: 19px 15px 22px !important;
    border-radius: 17px !important;
  }

  .route-product-product .product-details .page-title {
    font-size: 24px !important;
  }

  .route-product-product .product-stats ul {
    grid-template-columns: 1fr 1fr !important;
  }

  .route-product-product .product-stats li {
    border: 0 !important;
  }

  .route-product-product .tab-content {
    padding: 17px !important;
  }

  .px-buying-guides {
    grid-template-columns: 1fr;
    margin-bottom: 35px !important;
  }

  .cart-page {
    padding: 11px !important;
  }

  .cart-page thead {
    display: none !important;
  }

  .cart-page tbody tr {
    padding: 12px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px 12px;
    border-bottom: 1px solid var(--px-slate-200);
  }

  .cart-page tbody td {
    padding: 5px !important;
    display: block;
    border: 0 !important;
    text-align: left !important;
  }

  .cart-page .td-image {
    grid-row: span 4;
  }

  .px-toast-region {
    top: auto;
    right: 11px;
    bottom: 82px;
    width: calc(100vw - 22px);
  }

  .px-toast {
    grid-template-columns: 36px 1fr;
  }

  .px-toast a {
    display: none;
  }

  .route-product-product .px-mobile-buybar {
    position: fixed;
    z-index: 10020;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr minmax(160px, 1.4fr);
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--px-slate-200);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -8px 25px rgba(7, 17, 31, .12);
    backdrop-filter: blur(16px);
  }

  .px-mobile-buybar__price {
    color: var(--px-navy-950);
    font-size: 19px;
    font-weight: 900;
  }

  .px-mobile-buybar__button {
    min-height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--px-orange-500);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
  }

  footer {
    padding-bottom: 74px !important;
  }
}

/* v36: complete mobile product gallery and buying layout */
.route-product-product .product-image.px-manual-gallery .main-image {
  position: relative !important;
}

.route-product-product .px-gallery-counter {
  position: absolute;
  z-index: 8;
  right: 13px;
  bottom: 13px;
  min-width: 48px;
  min-height: 30px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(7, 17, 31, .76);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.route-product-product .product-image.px-gallery-video-active .product-labels {
  display: none !important;
}

@media (max-width: 767px) {
  .route-product-product .container {
    width: 100% !important;
    max-width: none !important;
    margin: 12px 0 88px !important;
    padding: 0 10px !important;
  }

  .route-product-product .container > .row,
  .route-product-product .container > .row > div,
  .route-product-product #content,
  .route-product-product .product-info,
  .route-product-product .product-left,
  .route-product-product .product-right {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .route-product-product .product-info {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .route-product-product .product-left,
  .route-product-product .product-right {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .route-product-product .product-image.px-manual-gallery {
    width: 100% !important;
    max-width: none !important;
    padding: 8px !important;
    display: block !important;
    border-radius: 18px !important;
  }

  .route-product-product .product-image.px-manual-gallery .main-image,
  .route-product-product .product-image.px-manual-gallery .main-image .swiper-container {
    width: 100% !important;
    max-width: none !important;
  }

  .route-product-product .product-image.px-manual-gallery .main-image .swiper-container {
    aspect-ratio: 1 / 1 !important;
    border-radius: 15px !important;
    touch-action: pan-y !important;
  }

  .route-product-product .product-image.px-manual-gallery .main-image .swiper-slide,
  .route-product-product .product-image.px-manual-gallery .main-image .swiper-slide > img,
  .route-product-product .product-image.px-manual-gallery .px-product-video,
  .route-product-product .product-image.px-manual-gallery .px-product-video video,
  .route-product-product .product-image.px-manual-gallery .px-product-video iframe {
    border-radius: 14px !important;
  }

  .route-product-product .product-image.px-manual-gallery .additional-images {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 9px !important;
    padding: 2px 0 5px !important;
    overflow: hidden !important;
  }

  .route-product-product .product-image.px-manual-gallery .additional-images .swiper-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 2px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .route-product-product .product-image.px-manual-gallery .additional-images .swiper-container::-webkit-scrollbar {
    display: none;
  }

  .route-product-product .product-image.px-manual-gallery .additional-images .swiper-wrapper {
    width: max-content !important;
    min-width: 100% !important;
    height: auto !important;
    display: flex !important;
    gap: 8px !important;
    transform: none !important;
    transition: none !important;
  }

  .route-product-product .product-image.px-manual-gallery .additional-images .additional-image {
    width: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    height: 72px !important;
    flex: 0 0 72px !important;
    box-sizing: border-box !important;
    padding: 4px !important;
    scroll-snap-align: start;
    border-radius: 11px !important;
  }

  .route-product-product .px-gallery-counter {
    right: 10px;
    bottom: 10px;
    min-width: 44px;
    min-height: 28px;
    font-size: 11px;
  }

  .route-product-product .product-details {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 17px 14px 20px !important;
  }

  .route-product-product .product-details .page-title {
    font-size: 21px !important;
    line-height: 1.25 !important;
  }

  .route-product-product .px-mobile-buybar {
    min-height: 70px !important;
    grid-template-columns: minmax(105px, .8fr) minmax(175px, 1.35fr) !important;
    padding: 9px 11px max(9px, env(safe-area-inset-bottom)) !important;
    gap: 9px !important;
  }

  .route-product-product .px-mobile-buybar__price {
    font-size: 18px !important;
    white-space: nowrap;
  }

  .route-product-product .px-mobile-buybar__button {
    width: 100% !important;
    min-height: 48px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
  }
}

/* v35: Trendyol-style single product media stage */
.route-product-product .product-image.px-manual-gallery .main-image .swiper-container {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid #dbe4ef !important;
  border-radius: 18px !important;
  background: #fff !important;
}

.route-product-product .product-image.px-manual-gallery .main-image .swiper-wrapper {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  transform: none !important;
  transition: none !important;
}

.route-product-product .product-image.px-manual-gallery .main-image .swiper-slide {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  inset: 0 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 17px !important;
  background: #fff !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: none !important;
}

.route-product-product .product-image.px-manual-gallery .main-image .swiper-slide.px-gallery-active {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}

.route-product-product .product-image.px-manual-gallery .main-image .swiper-slide > img,
.route-product-product .product-image.px-manual-gallery .px-product-video,
.route-product-product .product-image.px-manual-gallery .px-product-video video,
.route-product-product .product-image.px-manual-gallery .px-product-video iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
}

.route-product-product .product-image.px-manual-gallery .px-product-video,
.route-product-product .product-image.px-manual-gallery .px-product-video video,
.route-product-product .product-image.px-manual-gallery .px-product-video iframe {
  background: #050a12 !important;
}

.route-product-product .product-image.px-manual-gallery .main-image .swiper-controls {
  display: none !important;
}

.route-product-product .product-image.px-manual-gallery .additional-image.px-gallery-selected {
  border-color: #0877ee !important;
  box-shadow: 0 0 0 2px rgba(8, 119, 238, .16), 0 7px 18px rgba(15, 23, 42, .1) !important;
  opacity: 1 !important;
}

@media (max-width: 390px) {
  .px-benefits {
    grid-template-columns: 1fr;
  }

  .route-product-category .products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Language control */
.classic-cart-wrapper .desktop-language-wrapper {
  position: relative !important;
  width: 66px !important;
  min-width: 66px !important;
  height: 64px !important;
  display: flex !important;
  align-items: stretch;
  justify-content: stretch;
  border-left: 1px solid var(--px-slate-200);
}

.classic-cart-wrapper .desktop-language-wrapper,
.classic-cart-wrapper .desktop-language-wrapper .language,
.classic-cart-wrapper .desktop-language-wrapper #form-language,
.classic-cart-wrapper .desktop-language-wrapper .drop-menu {
  visibility: visible !important;
  opacity: 1 !important;
}

.classic-cart-wrapper .desktop-language-wrapper #form-language,
.classic-cart-wrapper .desktop-language-wrapper .drop-menu {
  width: 100% !important;
  height: 100% !important;
}

.classic-cart-wrapper #form-language .dropdown-toggle {
  width: 100% !important;
  height: 100% !important;
  padding: 8px 5px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: 0 16px 16px 0 !important;
  background: #fff !important;
  color: var(--px-navy-900) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}

.classic-cart-wrapper #form-language .dropdown-toggle:hover {
  background: var(--px-slate-100) !important;
  color: var(--px-blue-700) !important;
}

.classic-cart-wrapper #form-language .language-flag-title {
  display: grid !important;
  justify-items: center;
  gap: 4px;
}

.classic-cart-wrapper #form-language .symbol img {
  width: 20px !important;
  height: auto !important;
}

.classic-cart-wrapper #form-language .dropdown-menu {
  top: calc(100% + 8px) !important;
  right: 0 !important;
  left: auto !important;
  min-width: 150px !important;
  padding: 7px !important;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 13px !important;
  background: #fff !important;
  box-shadow: var(--px-shadow) !important;
}

.classic-cart-wrapper #form-language .dropdown-menu a {
  min-height: 38px !important;
  padding: 8px 10px !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  color: var(--px-navy-900) !important;
  cursor: pointer;
}

.classic-cart-wrapper #form-language .dropdown-menu a:hover {
  background: var(--px-blue-100) !important;
  color: var(--px-blue-700) !important;
}

.header-notice .desktop-language-wrapper {
  position: absolute !important;
  z-index: 20 !important;
  top: 0 !important;
  right: max(12px, calc((100vw - var(--px-container)) / 2 + 12px)) !important;
  width: 104px !important;
  height: 34px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-notice .desktop-language-wrapper,
.header-notice .desktop-language-wrapper .language,
.header-notice .desktop-language-wrapper #form-language,
.header-notice .desktop-language-wrapper .drop-menu {
  width: 104px !important;
  height: 34px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-notice #form-language .dropdown-toggle {
  width: 104px !important;
  height: 34px !important;
  padding: 0 10px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 0 !important;
  background: var(--px-navy-950) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 850 !important;
}

.header-notice #form-language .language-flag-title {
  display: flex !important;
  align-items: center;
  gap: 7px;
}

.header-notice #form-language .symbol img {
  width: 18px !important;
  height: auto !important;
}

.header-notice #form-language .dropdown-menu {
  position: fixed !important;
  z-index: 10050 !important;
  top: 37px !important;
  right: 12px !important;
  left: auto !important;
  min-width: 150px !important;
  padding: 7px !important;
  border: 1px solid var(--px-slate-200) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: var(--px-shadow) !important;
}

.header-notice #form-language .dropdown-menu a {
  min-height: 38px !important;
  padding: 8px 10px !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  color: var(--px-navy-900) !important;
  cursor: pointer;
}

.header-notice #form-language .dropdown-menu a:hover {
  background: var(--px-blue-100) !important;
  color: var(--px-blue-700) !important;
}

.header-notice .px-desktop-language,
.notice-module .px-desktop-language,
.module-header_notice .px-desktop-language {
  position: absolute !important;
  z-index: 25 !important;
  top: 0 !important;
  right: max(12px, calc((100vw - var(--px-container)) / 2 + 12px)) !important;
  width: 82px !important;
  height: 34px !important;
  margin: 0 !important;
}

.header-notice .px-desktop-language select,
.notice-module .px-desktop-language select,
.module-header_notice .px-desktop-language select {
  width: 82px !important;
  height: 34px !important;
  padding: 0 9px !important;
  border: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: 0 !important;
  background: var(--px-navy-950) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  outline: 0 !important;
  cursor: pointer;
}

/* Mobile storefront */
@media (max-width: 767px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .header-notice,
  .notice-module,
  .module-header_notice {
    display: none !important;
  }

  .mobile-header {
    position: sticky !important;
    z-index: 10010 !important;
    top: 0 !important;
    min-height: 116px !important;
    display: block !important;
    border-bottom: 1px solid var(--px-slate-200) !important;
    background: rgba(255, 255, 255, .98) !important;
    box-shadow: 0 8px 24px rgba(7, 17, 31, .08) !important;
    backdrop-filter: blur(18px);
  }

  .mobile-header .mobile-top-bar {
    display: none !important;
  }

  .mobile-header .mobile-bar {
    width: 100% !important;
    height: 60px !important;
    min-height: 60px !important;
    padding: 7px 12px !important;
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) 58px 58px;
    align-items: center;
    gap: 7px;
    background: #fff !important;
  }

  .mobile-header .menu-trigger {
    position: static !important;
    width: 44px !important;
    height: 44px !important;
  }

  .mobile-header .menu-trigger button {
    position: relative !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border: 1px solid var(--px-slate-200) !important;
    border-radius: 12px !important;
    background: var(--px-slate-100) !important;
  }

  .mobile-header .menu-trigger button span {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }

  .mobile-header .menu-trigger button::before {
    content: "☰";
    color: var(--px-navy-950);
    font-size: 23px;
    line-height: 1;
  }

  .mobile-logo-wrapper {
    position: static !important;
    min-width: 0 !important;
    height: 44px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .mobile-logo-wrapper .px-mobile-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-logo-wrapper .px-mobile-logo img {
    width: auto !important;
    max-width: 164px !important;
    height: 38px !important;
    max-height: 38px !important;
    object-fit: contain !important;
  }

  .mobile-cart-wrapper {
    position: static !important;
    width: 58px !important;
    height: 44px !important;
  }

  .px-mobile-cart {
    position: relative;
    width: 58px;
    height: 44px;
    display: grid !important;
    place-items: center;
    border: 1px solid var(--px-slate-200);
    border-radius: 12px;
    background: #fff;
    color: var(--px-navy-900) !important;
    font-size: 10px;
    font-weight: 850;
  }

  .px-mobile-cart__count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--px-orange-500);
    color: #fff;
    font-size: 9px;
  }

  .px-mobile-language {
    position: static !important;
    width: 58px;
    height: 44px;
  }

  .px-mobile-language select {
    width: 100%;
    height: 44px;
    padding: 0 8px;
    border: 1px solid var(--px-slate-200);
    border-radius: 12px;
    background: var(--px-slate-100);
    color: var(--px-navy-900);
    font-size: 11px;
    font-weight: 850;
    outline: 0;
  }

  .mobile-search-group {
    position: static !important;
    width: 100% !important;
    min-height: 56px !important;
    padding: 4px 12px 10px !important;
    display: block !important;
    background: #fff !important;
  }

  .mobile-search-wrapper {
    position: static !important;
    width: 100% !important;
    height: 42px !important;
    display: block !important;
  }

  .px-mobile-search-form {
    position: relative;
    width: 100%;
    height: 42px;
    display: flex;
  }

  .px-mobile-search-form input {
    width: 100% !important;
    height: 42px !important;
    padding: 0 52px 0 14px !important;
    border: 1.5px solid #b9c7d9 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--px-navy-950) !important;
    font-size: 13px !important;
    outline: 0 !important;
  }

  .px-mobile-search-form input:focus {
    border-color: var(--px-blue-600) !important;
    box-shadow: 0 0 0 3px rgba(8, 119, 238, .12) !important;
  }

  .px-mobile-search-form button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 38px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: var(--px-navy-950);
    color: #fff;
    font-size: 17px;
  }

  .px-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .px-benefit {
    min-height: 68px !important;
    padding: 10px !important;
  }

  .module-products {
    margin-top: 19px !important;
    margin-bottom: 28px !important;
  }

  .module-products .module-title,
  .module-products h3 {
    margin-bottom: 13px !important;
    font-size: 21px !important;
  }

  .product-grid,
  .products-grid {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  .product-layout {
    padding: 4px !important;
  }

  .product-thumb {
    padding: 8px !important;
  }

  .product-thumb .image {
    min-height: 145px !important;
    margin-bottom: 10px !important;
    padding: 5px !important;
  }

  .product-thumb .product-labels {
    top: 10px !important;
    right: 8px !important;
    gap: 3px !important;
  }

  .product-thumb .product-label b {
    max-width: 45px !important;
    max-height: 45px !important;
    background-size: contain !important;
  }

  .product-thumb .wish-group {
    top: 11px !important;
    left: 11px !important;
  }

  .product-thumb .btn-wishlist {
    width: 32px !important;
    min-width: 32px !important;
    height: 32px !important;
  }

  .product-thumb .name {
    min-height: 39px !important;
    margin-bottom: 7px !important;
  }

  .product-thumb .name a {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .product-thumb .price {
    min-height: 27px !important;
    margin-bottom: 8px !important;
    font-size: 16px !important;
  }

  .product-thumb .rating {
    display: none !important;
  }

  .product-thumb .btn-cart {
    min-height: 39px !important;
    border-radius: 10px !important;
    font-size: 10px !important;
  }

  .route-product-category .products-grid,
  .module-products .product-grid,
  .module-products .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .route-product-product .product-info {
    grid-template-columns: 1fr !important;
  }

  .route-product-product .product-labels {
    top: 12px !important;
    right: 12px !important;
  }

  .route-product-product .product-label b {
    max-width: 50px !important;
    max-height: 50px !important;
    background-size: contain !important;
  }
}

@media (max-width: 390px) {
  .px-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .route-product-category .products-grid,
  .module-products .product-grid,
  .module-products .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .px-benefit {
    grid-template-columns: 31px 1fr !important;
    gap: 7px !important;
  }

  .px-benefit > :first-child,
  .px-benefit i {
    width: 31px !important;
    height: 31px !important;
  }

  .px-benefit small,
  .px-benefit span {
    display: none !important;
  }

  .mobile-header .mobile-bar {
    grid-template-columns: 42px minmax(0, 1fr) 51px 51px;
    gap: 5px;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .mobile-logo-wrapper .px-mobile-logo img {
    max-width: 135px !important;
  }

  .px-mobile-cart,
  .mobile-cart-wrapper,
  .px-mobile-language {
    width: 51px !important;
  }

  .product-thumb .image {
    min-height: 132px !important;
  }
}

/* Header language control, footer social links and mobile collision fixes */
@media (min-width: 768px) {
  .header-search .search-input,
  .header-search input {
    padding-right: 74px !important;
  }

  .header-classic,
  .header-classic .header,
  .header-classic .mid-bar {
    background: #fff !important;
  }

  .header-classic .mid-bar {
    min-height: 92px !important;
    grid-template-columns: minmax(190px, 220px) minmax(430px, 1fr) minmax(270px, 292px) !important;
    gap: clamp(22px, 2.4vw, 34px) !important;
  }

  .desktop-logo-wrapper img {
    max-width: 215px !important;
  }

  .desktop-logo-wrapper {
    width: 100% !important;
    max-width: 220px !important;
  }

  .desktop-search-wrapper {
    min-width: 0 !important;
    height: 66px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 76px !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .desktop-search-wrapper > .dropdown {
    min-width: 0 !important;
  }

  .desktop-search-wrapper > .px-desktop-language {
    position: relative !important;
    z-index: 6 !important;
    inset: auto !important;
    width: 76px !important;
    height: 54px !important;
    margin: 0 !important;
    display: block !important;
  }

  .desktop-search-wrapper > .px-desktop-language select {
    width: 76px !important;
    height: 54px !important;
    padding: 0 14px !important;
    border: 1.5px solid #b9c7d9 !important;
    border-radius: 15px !important;
    background: #fff !important;
    color: var(--px-navy-900) !important;
    box-shadow: 0 6px 18px rgba(7, 17, 31, .045) !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    outline: 0 !important;
    cursor: pointer;
  }

  .desktop-search-wrapper > .px-desktop-language select:hover,
  .desktop-search-wrapper > .px-desktop-language select:focus {
    border-color: var(--px-blue-600) !important;
    background: #f8fbff !important;
    color: var(--px-blue-700) !important;
    box-shadow: 0 0 0 4px rgba(8, 119, 238, .1) !important;
  }
}

footer .icons-menu:not(.icons-menu-228) .j-menu,
footer [class*="icons-menu"]:not(.icons-menu-228) > .j-menu {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
}

footer .icons-menu:not(.icons-menu-228) .icons-menu-item {
  display: block !important;
  margin: 0 !important;
}

footer .icons-menu:not(.icons-menu-228) .icons-menu-item > a {
  width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 17px !important;
  background: #101e33 !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

footer .icons-menu:not(.icons-menu-228) .icons-menu-item > a:hover {
  border-color: #2c91ff !important;
  background: var(--px-blue-600) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.px-social-link .px-social-svg,
.px-social-link .px-social-svg svg {
  width: 31px !important;
  height: 31px !important;
  display: block !important;
}

.px-social-link .px-social-svg svg {
  fill: currentColor;
  stroke: none;
}

.px-social-link.px-social-instagram .px-social-svg svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.px-social-link.px-social-whatsapp .px-social-svg svg path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.px-social-link.px-social-whatsapp .px-social-svg svg path:last-child {
  fill: currentColor;
}

.px-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

footer .grid-row-1 .grid-col-6 {
  min-height: 184px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(255, 255, 255, .1) !important;
}

footer .grid-row-1 .grid-col-6 img {
  width: min(310px, 72vw) !important;
  height: auto !important;
}

footer .grid-row-2 {
  min-height: 106px !important;
  padding: 18px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-top: 1px solid rgba(255, 255, 255, .1) !important;
  background: #050c16 !important;
}

footer .grid-row-2 .grid-cols,
footer .grid-row-2 .grid-col,
footer .icons-menu-228,
footer .icons-menu-228 ul,
footer .icons-menu-228 li,
footer .icons-menu-228 a {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

footer .icons-menu-228 img {
  width: clamp(460px, 48vw, 613px) !important;
  max-width: calc(100vw - 48px) !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .header-classic .top-bar,
  .header-classic .mid-bar,
  .header-classic .desktop-main-menu-wrapper {
    display: none !important;
  }

  .header-classic,
  .header-classic .header {
    min-height: 0 !important;
    height: auto !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .mobile-header {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    overflow: visible !important;
  }

  .mobile-header .mobile-bar {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 58px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 7px 10px !important;
    grid-template-columns: 42px minmax(86px, 1fr) 50px 50px !important;
    gap: 6px !important;
    transform: none !important;
    overflow: visible !important;
  }

  .mobile-header .menu-trigger,
  .mobile-header .mobile-logo-wrapper,
  .mobile-header .mobile-cart-wrapper,
  .mobile-header .px-mobile-language {
    position: relative !important;
    inset: auto !important;
    margin: 0 !important;
    transform: none !important;
  }

  .mobile-logo-wrapper .px-mobile-logo img {
    width: 100% !important;
    max-width: 132px !important;
    height: 34px !important;
    max-height: 34px !important;
  }

  .mobile-cart-wrapper,
  .px-mobile-cart,
  .px-mobile-language {
    width: 50px !important;
  }

  .px-mobile-cart,
  .px-mobile-language select {
    height: 42px !important;
    border-radius: 11px !important;
  }

  .mobile-search-group {
    position: relative !important;
    inset: auto !important;
    clear: both !important;
    width: 100% !important;
    min-height: 54px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 3px 10px 9px !important;
    transform: none !important;
  }

  .mobile-search-wrapper,
  .px-mobile-search-form {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 42px !important;
    margin: 0 !important;
    transform: none !important;
  }

  footer .icons-menu:not(.icons-menu-228) .icons-menu-item > a {
    width: 52px !important;
    height: 52px !important;
    border-radius: 15px !important;
  }

  .px-social-link .px-social-svg,
  .px-social-link .px-social-svg svg {
    width: 28px !important;
    height: 28px !important;
  }

  footer .grid-row-2 {
    min-height: 86px !important;
    padding: 14px 16px !important;
  }

  footer .icons-menu-228 img {
    width: min(560px, calc(100vw - 32px)) !important;
  }
}

.px-lang-en .module-master_slider {
  display: none !important;
}

.px-lang-en .product-labels {
  display: none !important;
}

.px-english-hero {
  width: min(calc(100% - 48px), var(--px-container));
  min-height: 430px;
  margin: 18px auto 32px;
  padding: clamp(34px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  overflow: hidden;
  border: 1px solid #234d80;
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(42, 144, 255, .38), transparent 32%),
    linear-gradient(135deg, #06101e 0%, #0c2340 58%, #075fc7 140%);
  box-shadow: var(--px-shadow);
}

.px-english-hero__copy > span {
  display: inline-flex;
  margin-bottom: 15px;
  color: #74baff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.px-english-hero h1 {
  max-width: 720px;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.px-english-hero p {
  max-width: 650px;
  margin: 0 0 25px;
  color: #c8d8ea;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.7;
}

.px-english-hero a {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #fff;
  color: var(--px-navy-950);
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.px-english-hero a:hover {
  background: var(--px-blue-100);
  color: var(--px-blue-700);
  transform: translateY(-2px);
}

.px-english-hero__visual {
  min-height: 290px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 55px rgba(0, 0, 0, .22);
  transform: rotate(2deg);
}

.px-english-hero__visual img {
  width: 100%;
  max-width: 300px;
  height: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .px-english-hero {
    width: calc(100% - 20px);
    min-height: 0;
    margin: 12px auto 22px;
    padding: 26px 20px 22px;
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 18px;
  }

  .px-english-hero h1 {
    font-size: 32px;
  }

  .px-english-hero__visual {
    min-height: 210px;
    transform: none;
  }

  .px-english-hero__visual img {
    height: 200px;
  }
}

/* Premium unified header and exact brand assets */
.px-premium-header {
  display: none;
}

.px-brand-logo,
.px-brand-logo svg {
  display: block;
}

.px-brand-logo--footer {
  width: min(300px, 72vw);
  margin: 0 auto 12px;
}

footer img.px-replaced-footer-logo {
  display: none !important;
}

.px-brand-logo--footer svg {
  width: 100%;
  height: auto;
}

.px-brand-logo--footer svg text:first-of-type tspan:not(:nth-child(2)) {
  fill: #f8fafc !important;
}

.px-brand-logo--footer svg text:last-of-type {
  fill: #94a3b8 !important;
}

footer .px-social-link::before,
footer .px-social-link::after,
footer .px-social-link .px-social-svg::before,
footer .px-social-link .px-social-svg::after {
  display: none !important;
  content: none !important;
}

footer .px-social-link .px-social-svg {
  width: 30px !important;
  height: 30px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

footer .icons-menu:not(.icons-menu-228) .icons-menu-item > a.px-social-link {
  width: 56px !important;
  height: 56px !important;
  border: 0 !important;
  border-radius: 16px !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24) !important;
}

footer .px-social-facebook {
  background: #1877f2 !important;
}

footer .px-social-instagram {
  background: radial-gradient(circle at 31% 100%, #fdf497 0 5%, #fdf497 6%, #fd5949 46%, #d6249f 69%, #285aeb 100%) !important;
}

footer .px-social-whatsapp {
  background: #25d366 !important;
}

footer .icons-menu:not(.icons-menu-228) .icons-menu-item > a.px-social-link:hover {
  filter: brightness(1.08);
  transform: translateY(-3px) scale(1.03);
}

@media (min-width: 768px) {
  .header-classic .mid-bar {
    display: none !important;
  }

  .px-premium-header {
    width: min(calc(100% - 48px), 1400px);
    min-height: 94px;
    margin: 0 auto;
    padding: 16px 0;
    display: grid;
    grid-template-columns: 220px minmax(360px, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 2.6vw, 42px);
    background: #fff;
  }

  .px-premium-brand {
    width: 220px;
    color: inherit;
  }

  .px-premium-brand svg {
    width: 220px;
    height: 68px;
  }

  .px-premium-search {
    position: relative;
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1.5px solid #c5d2e3;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 9px 26px rgba(15, 23, 42, .07);
    transition: border-color .2s ease, box-shadow .2s ease;
  }

  .px-premium-search:focus-within {
    border-color: #0877ee;
    box-shadow: 0 0 0 4px rgba(8, 119, 238, .11), 0 12px 30px rgba(15, 23, 42, .08);
  }

  .px-premium-search input {
    min-width: 0;
    width: 100%;
    height: 54px;
    padding: 0 72px 0 20px;
    border: 0;
    background: transparent;
    color: #0a1526;
    font-size: 14px;
    font-weight: 600;
    outline: 0;
  }

  .px-premium-search input::placeholder {
    color: #7d8da3;
    opacity: 1;
  }

  .px-premium-search button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 48px;
    height: 46px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(145deg, #0d1d34, #07111f);
    color: #fff;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
  }

  .px-premium-search button:hover {
    background: #0877ee;
    transform: translateY(-1px);
  }

  .px-premium-search button svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
  }

  .px-premium-tools {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .px-premium-language {
    position: relative;
    flex: 0 0 84px;
    width: 84px;
  }

  .px-premium-language select {
    width: 84px !important;
    height: 54px !important;
    padding: 0 12px !important;
    border: 1.5px solid #c5d2e3 !important;
    border-radius: 15px !important;
    background: #fff !important;
    color: #0a1526 !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .06) !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    outline: 0 !important;
    cursor: pointer;
  }

  .px-premium-language select:hover,
  .px-premium-language select:focus {
    border-color: #0877ee !important;
    box-shadow: 0 0 0 4px rgba(8, 119, 238, .1) !important;
  }

  .px-currency-source {
    display: none;
  }

  .px-premium-actions {
    height: 64px;
    padding: 4px;
    display: grid;
    grid-template-columns: repeat(3, minmax(72px, 82px));
    gap: 2px;
    border: 1px solid #d7e0ec;
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: 0 9px 24px rgba(15, 23, 42, .055);
  }

  .px-premium-action {
    position: relative;
    min-width: 0;
    height: 54px;
    padding: 5px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 13px;
    color: #172235;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
  }

  .px-premium-action + .px-premium-action {
    border-left: 1px solid #e2e8f0;
  }

  .px-premium-action:hover {
    background: #fff;
    color: #0877ee;
    transform: translateY(-1px);
  }

  .px-premium-action svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .px-premium-action__label {
    max-width: 100%;
    overflow: hidden;
    color: inherit;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .px-premium-count {
    position: absolute;
    top: 1px;
    right: 9px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #f45116;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
  }

  .header-classic .desktop-main-menu-wrapper {
    border-top: 1px solid #edf1f6 !important;
    border-bottom: 1px solid #dfe7f1 !important;
    background: #fff !important;
  }
}

@media (min-width: 768px) and (max-width: 1120px) {
  .px-premium-header {
    grid-template-columns: 180px minmax(300px, 1fr) auto;
    gap: 18px;
  }

  .px-premium-brand,
  .px-premium-brand svg {
    width: 180px;
  }

  .px-premium-language {
    flex-basis: 72px;
    width: 72px;
  }

  .px-premium-language select {
    width: 72px !important;
    padding: 0 8px !important;
  }

  .px-premium-actions {
    grid-template-columns: repeat(3, 52px);
  }

  .px-premium-action__label {
    display: none;
  }
}

@media (max-width: 767px) {
  .px-premium-header {
    display: none !important;
  }

  .mobile-logo-wrapper .px-brand-logo--mobile {
    width: min(136px, 100%);
    margin: 0 auto;
  }

  .mobile-logo-wrapper .px-brand-logo--mobile svg {
    width: 100%;
    height: auto;
  }

  footer .icons-menu:not(.icons-menu-228) .icons-menu-item > a.px-social-link {
    width: 52px !important;
    height: 52px !important;
    border-radius: 15px !important;
  }
}

/* Crystal-clear product imagery in Journal quick view */
.popup-quickview,
.popup-quickview .popup-container,
.popup-quickview .popup-body,
.popup-quickview .popup-inner-body,
.popup-quickview iframe {
  filter: none !important;
  backdrop-filter: none !important;
}

.route-product-product.popup-quickview .product-image,
.route-product-product.popup-quickview .product-image .swiper-container,
.route-product-product.popup-quickview .product-image .swiper-slide,
.route-product-product.popup-quickview .product-image img,
.route-product-product.popup-quickview .additional-images img {
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

.route-product-product.popup-quickview .product-image img,
.route-product-product.popup-quickview .additional-images img {
  image-rendering: auto !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* v25: product video, quick view clarity and final responsive consolidation */
.px-product-video-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #07111f;
  border-radius: 18px;
  overflow: hidden;
}

.px-product-video,
.px-product-video video,
.px-product-video iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 420px;
  display: block;
  border: 0;
  background: #07111f;
  object-fit: contain;
}

.px-video-thumbnail {
  position: relative !important;
  cursor: pointer;
  overflow: hidden;
}

.px-video-thumbnail::after {
  content: "VİDEO";
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(7, 17, 31, .88);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .7px;
}

.px-video-thumbnail__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #0877ee;
  color: #fff;
  box-shadow: 0 7px 18px rgba(8, 119, 238, .32);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

.px-prof-modal img,
.popup-quickview .product-image img {
  filter: none !important;
  opacity: 1 !important;
  image-rendering: auto !important;
  object-fit: contain !important;
}

.btn-cart.is-loading {
  pointer-events: none;
  opacity: .68;
}

@media (max-width: 767px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: clip !important;
  }

  .mobile-header {
    position: sticky !important;
    inset: auto !important;
    top: 0 !important;
    z-index: 10010 !important;
    width: 100% !important;
    min-height: 112px !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    overflow: visible !important;
    border-bottom: 1px solid var(--px-slate-200) !important;
    background: rgba(255, 255, 255, .98) !important;
    box-shadow: 0 8px 24px rgba(7, 17, 31, .08) !important;
  }

  .mobile-header .mobile-top-bar {
    display: none !important;
  }

  .mobile-header .mobile-bar {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 58px !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 7px 10px !important;
    display: grid !important;
    grid-template-columns: 42px minmax(90px, 1fr) 50px 50px !important;
    align-items: center !important;
    gap: 6px !important;
    transform: none !important;
    overflow: visible !important;
    background: #fff !important;
  }

  .mobile-header .menu-trigger,
  .mobile-header .mobile-logo-wrapper,
  .mobile-header .mobile-cart-wrapper,
  .mobile-header .px-mobile-language {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    margin: 0 !important;
    transform: none !important;
  }

  .mobile-header .menu-trigger,
  .mobile-header .menu-trigger button {
    width: 42px !important;
    height: 42px !important;
  }

  .mobile-logo-wrapper {
    min-width: 0 !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-logo-wrapper .px-mobile-logo,
  .mobile-logo-wrapper .px-brand-logo--mobile {
    width: 100% !important;
    max-width: 145px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-logo-wrapper svg,
  .mobile-logo-wrapper img {
    width: 100% !important;
    max-width: 145px !important;
    height: 40px !important;
    max-height: 40px !important;
    object-fit: contain !important;
  }

  .mobile-cart-wrapper,
  .px-mobile-cart,
  .px-mobile-language {
    width: 50px !important;
    height: 42px !important;
  }

  .px-mobile-cart,
  .px-mobile-language select {
    height: 42px !important;
    border-radius: 11px !important;
  }

  .mobile-search-group {
    position: relative !important;
    inset: auto !important;
    clear: both !important;
    width: 100% !important;
    min-height: 54px !important;
    height: 54px !important;
    margin: 0 !important;
    padding: 3px 10px 9px !important;
    display: block !important;
    transform: none !important;
  }

  .mobile-search-wrapper,
  .px-mobile-search-form {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 42px !important;
    margin: 0 !important;
    display: flex !important;
    transform: none !important;
  }

  .px-mobile-search-form input {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .px-product-video,
  .px-product-video video,
  .px-product-video iframe {
    min-height: 300px;
  }

  .px-prof-modal {
    width: calc(100vw - 20px) !important;
    max-width: 620px !important;
    max-height: calc(100vh - 20px) !important;
    overflow-y: auto !important;
  }

  .px-toast-region {
    right: 10px !important;
    bottom: 78px !important;
    left: 10px !important;
    width: auto !important;
  }

  .px-toast {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Pexura v30: final mobile header and compact home layout */
@media (max-width: 767px) {
  .mobile-header {
    min-height: 116px !important;
  }

  .mobile-header .mobile-bar {
    height: 62px !important;
    min-height: 62px !important;
    padding: 8px 10px !important;
    grid-template-columns: 44px minmax(104px, 1fr) 46px 58px !important;
    gap: 6px !important;
  }

  .mobile-header .menu-trigger,
  .mobile-header .menu-trigger button {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    overflow: hidden !important;
  }

  .mobile-header .menu-trigger::before,
  .mobile-header .menu-trigger::after,
  .mobile-header .menu-trigger button::after {
    content: none !important;
    display: none !important;
  }

  .mobile-header .menu-trigger button::before {
    content: "" !important;
    display: block !important;
    width: 22px !important;
    height: 16px !important;
    margin: auto !important;
    background: linear-gradient(to bottom, #07111f 0 2px, transparent 2px 7px, #07111f 7px 9px, transparent 9px 14px, #07111f 14px 16px) !important;
  }

  .mobile-logo-wrapper,
  .mobile-logo-wrapper #logo,
  .mobile-logo-wrapper #logo > a {
    width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-logo-wrapper img,
  .mobile-logo-wrapper svg {
    width: 100% !important;
    max-width: 142px !important;
    height: 38px !important;
    max-height: 38px !important;
    object-fit: contain !important;
  }

  .mobile-cart-wrapper {
    width: 46px !important;
    min-width: 46px !important;
    height: 44px !important;
  }

  .mobile-cart-wrapper > :not(.px-mobile-cart) {
    display: none !important;
  }

  .px-mobile-cart {
    width: 46px !important;
    height: 44px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1px !important;
    line-height: 1 !important;
  }

  .px-mobile-cart__icon,
  .px-mobile-cart__icon svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
  }

  .px-mobile-cart__label {
    font-size: 8px !important;
    font-weight: 850 !important;
    letter-spacing: .15px !important;
  }

  .px-mobile-language {
    width: 58px !important;
    min-width: 58px !important;
    height: 44px !important;
  }

  .px-mobile-language select {
    width: 58px !important;
    height: 44px !important;
    padding: 0 6px !important;
    font-size: 10px !important;
  }

  .mobile-search-group {
    min-height: 54px !important;
    height: 54px !important;
    padding: 3px 10px 9px !important;
  }

  .mobile-search-wrapper {
    width: 100% !important;
    height: 42px !important;
    overflow: visible !important;
  }

  .mobile-search-wrapper > :not(.px-mobile-search-form) {
    display: none !important;
  }

  .px-mobile-search-form {
    width: 100% !important;
    height: 42px !important;
    display: flex !important;
  }

  .px-mobile-search-form input {
    width: 100% !important;
    height: 42px !important;
    padding: 0 52px 0 14px !important;
    border: 1px solid #cbd6e4 !important;
    border-radius: 12px !important;
    background: #fff !important;
  }

  .px-benefit-row,
  .px-benefit-grid {
    width: 100% !important;
  }

  .px-benefit-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .px-benefit {
    width: 100% !important;
    min-height: 72px !important;
    margin: 0 !important;
    padding: 10px !important;
  }
}

@media (max-width: 359px) {
  .mobile-header .mobile-bar {
    grid-template-columns: 42px minmax(88px, 1fr) 44px 54px !important;
    gap: 4px !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
  }

  .px-mobile-language,
  .px-mobile-language select {
    width: 54px !important;
    min-width: 54px !important;
  }
}

@media (max-width: 767px) {
  .mobile-logo-wrapper > #logo {
    display: none !important;
  }

  .mobile-logo-wrapper > .px-mobile-logo {
    width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .module-notification-137 {
    right: 10px !important;
    bottom: 86px !important;
    left: 10px !important;
    width: auto !important;
    max-width: 340px !important;
  }
}

/* v34: clearer product thumbnails and click-to-play product video */
.route-product-product .product-image .additional-images {
  margin-top: 14px !important;
  padding: 2px !important;
}

.route-product-product .product-image .additional-images .swiper-wrapper {
  gap: 10px !important;
  align-items: stretch !important;
}

.route-product-product .product-image .additional-images .additional-image {
  width: 94px !important;
  min-width: 94px !important;
  height: 88px !important;
  padding: 5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #d5deea !important;
  border-radius: 13px !important;
  background: #fff !important;
  opacity: 1 !important;
  box-shadow: 0 5px 14px rgba(15, 23, 42, .06) !important;
  cursor: pointer;
}

.route-product-product .product-image .additional-images .additional-image:hover,
.route-product-product .product-image .additional-images .additional-image:focus-visible,
.route-product-product .product-image .additional-images .additional-image.swiper-slide-active {
  border-color: #0877ee !important;
  box-shadow: 0 0 0 2px rgba(8, 119, 238, .12), 0 7px 18px rgba(15, 23, 42, .09) !important;
  outline: none !important;
}

.route-product-product .product-image .additional-images .additional-image > img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain !important;
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
}

.route-product-product .px-video-thumbnail {
  background: #07111f !important;
}

.route-product-product .px-video-thumbnail > img {
  opacity: .64 !important;
}

.route-product-product .px-video-thumbnail::after {
  right: 7px;
  bottom: 7px;
  padding: 4px 7px;
  font-size: 9px;
}

.route-product-product .px-video-thumbnail__play {
  width: 36px;
  height: 36px;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(8, 119, 238, .45);
}

.route-product-product .px-product-video video {
  cursor: pointer;
}

@media (max-width: 767px) {
  .route-product-product .product-image .additional-images .swiper-wrapper {
    gap: 7px !important;
  }

  .route-product-product .product-image .additional-images .additional-image {
    width: 72px !important;
    min-width: 72px !important;
    height: 70px !important;
    padding: 4px !important;
  }

  .route-product-product .px-product-video,
  .route-product-product .px-product-video video,
  .route-product-product .px-product-video iframe {
    min-height: 280px !important;
  }
}

/* v36 final mobile cascade lock */
@media (max-width: 767px) {
  html.route-product-product body .container > .row > div {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  html.route-product-product body #content .product-info .product-left,
  html.route-product-product body #content .product-info .product-right {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .route-product-product #content {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .route-product-product .product-info {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: minmax(0, 1fr) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .route-product-product .product-left,
  .route-product-product .product-right {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .route-product-product .product-image.px-manual-gallery {
    width: 100% !important;
    max-width: none !important;
  }

  .route-product-product .product-image.px-manual-gallery .additional-images .swiper-wrapper {
    width: max-content !important;
    min-width: 100% !important;
    height: auto !important;
    display: flex !important;
    gap: 8px !important;
    transform: none !important;
  }

  .route-product-product .product-image.px-manual-gallery .additional-images .additional-image {
    width: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    height: 72px !important;
    flex: 0 0 72px !important;
    box-sizing: border-box !important;
    padding: 4px !important;
  }

  .route-product-product .product-image.px-manual-gallery .px-product-video,
  .route-product-product .product-image.px-manual-gallery .px-product-video video,
  .route-product-product .product-image.px-manual-gallery .px-product-video iframe {
    min-height: 0 !important;
  }
}
