@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2'), url('../fonts/Satoshi-Variable.woff') format('woff');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'), url('../fonts/Satoshi-VariableItalic.woff') format('woff');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #29303f;
  background: #f6f7fb;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.container {
  max-width: 1320px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #29303f;
}
p {
  font-family: 'Inter', sans-serif;
  color: #4b5565;
}
a {
  color: #5324CD;
  text-decoration-color: rgba(83, 36, 205, 0.28);
  text-underline-offset: 2px;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}
a:hover {
  color: #481fb3;
  text-decoration-color: rgba(83, 36, 205, 0.55);
}
a.btn {
  text-decoration: none;
}
::selection {
  background: rgba(83, 36, 205, 0.18);
}
.section-space {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .section-space {
    padding: 64px 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Satoshi', sans-serif;
}
@media (max-width: 575.98px) {
  .btn {
    max-width: 220px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.btn-primary {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #6A39FF 0%, #5324CD 100%);
  box-shadow: 0 16px 34px rgba(83, 36, 205, 0.22);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(83, 36, 205, 0.28);
  color: #fff;
}
.btn-secondary {
  color: #29303f;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(83, 36, 205, 0.26);
  color: #29303f;
  background: white;
}
.btn-alt {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0 2px;
  border-radius: 0;
  line-height: 1.2;
}
.btn-alt::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-alt:hover,
.btn-alt:focus-visible {
  color: #fff;
}
.btn-alt:hover::after,
.btn-alt:focus-visible::after {
  background: #fff;
}
.btn-outline-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}
.btn--sm {
  padding: 0.58rem 0.95rem;
  font-size: 13px;
  border-radius: 6px;
}
.form-control,
textarea.form-control,
select.form-control {
  min-height: 48px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: none;
  color: #29303f;
  font-family: 'Inter', sans-serif;
}
.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  border-color: rgba(83, 36, 205, 0.32);
  box-shadow: 0 0 0 4px rgba(83, 36, 205, 0.1);
}
/* pagination */
.catalog-pagination {
  margin: 48px 0 72px;
}
.catalog-pagination__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid #e9e9f2;
}
.catalog-pagination__summary {
  margin: 0;
  color: #6f7685;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.catalog-pagination__nav {
  margin-left: auto;
}
.catalog-pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.catalog-pagination__item {
  display: flex;
}
.catalog-pagination__item.is-disabled .catalog-pagination__link {
  opacity: 0.42;
  pointer-events: none;
  background: #f5f6fa;
  border-color: #ececf3;
  color: #a0a7b6;
  box-shadow: none;
}
.catalog-pagination__link,
.catalog-pagination__current,
.catalog-pagination__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.catalog-pagination__link {
  background: #fff;
  border: 1px solid #e8e8f0;
  color: #232838;
  text-decoration: none;
  transition: all 0.22s ease;
}
.catalog-pagination__link:hover,
.catalog-pagination__link:focus {
  color: #5a2be0;
  border-color: #5a2be0;
  box-shadow: 0 10px 24px rgba(90, 43, 224, 0.12);
  transform: translateY(-1px);
}
.catalog-pagination__current {
  background: linear-gradient(135deg, #5a2be0 0%, #7a3cff 100%);
  border: 1px solid #5a2be0;
  color: #fff;
  box-shadow: 0 12px 28px rgba(90, 43, 224, 0.22);
}
.catalog-pagination__dots {
  min-width: auto;
  padding: 0 4px;
  color: #9aa1b0;
}
.catalog-pagination__item--first .catalog-pagination__link,
.catalog-pagination__item--prev .catalog-pagination__link,
.catalog-pagination__item--next .catalog-pagination__link,
.catalog-pagination__item--last .catalog-pagination__link {
  min-width: 44px;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .catalog-pagination {
    margin: 40px 0 56px;
  }
  .catalog-pagination__inner {
    justify-content: center;
    padding-top: 20px;
  }
  .catalog-pagination__summary {
    width: 100%;
    text-align: center;
  }
  .catalog-pagination__nav {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: center;
  }
  .catalog-pagination__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .catalog-pagination__list {
    gap: 6px;
  }
  .catalog-pagination__link,
  .catalog-pagination__current {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }
  .catalog-pagination__item--first .catalog-pagination__link,
  .catalog-pagination__item--prev .catalog-pagination__link,
  .catalog-pagination__item--next .catalog-pagination__link,
  .catalog-pagination__item--last .catalog-pagination__link {
    min-width: 38px;
    font-size: 14px;
  }
  .catalog-pagination__summary {
    font-size: 13px;
  }
}
.hp-field {
  display: none;
}
#information-information ul.breadcrumb {
  display: none;
}
p.white,
#information-information.information-page p.white {
  color: white;
}
.bjutip-stock-note {
  display: none;
  width: 100%;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: #6a3df0;
}
.list-row.bjutip-max-reached .bjutip-stock-note,
.product-card.bjutip-max-reached .bjutip-stock-note,
#product.bjutip-max-reached .bjutip-stock-note,
.restock-row.bjutip-max-reached .bjutip-stock-note,
.dashboard-offer-card.bjutip-max-reached .bjutip-stock-note {
  display: block;
}
.list-row.bjutip-max-reached .add-to-cart-btn,
.product-card.bjutip-max-reached .add-to-cart-btn,
#product.bjutip-max-reached #button-cart,
.restock-row.bjutip-max-reached .js-dashboard-add,
.dashboard-offer-card.bjutip-max-reached .js-dashboard-add {
  display: none;
}
.list-row__cta .bjutip-stock-note,
.product-card__overlay .bjutip-stock-note,
.product-purchase-card .bjutip-stock-note,
.restock-row__actions .bjutip-stock-note,
.dashboard-offer-card__actions .bjutip-stock-note {
  text-align: left;
}
.product-card__overlay .bjutip-stock-note,
.restock-row__actions .bjutip-stock-note,
.dashboard-offer-card__actions .bjutip-stock-note {
  text-align: center;
}
.site-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  z-index: 1000;
}
.site-header .topbar {
  padding: 20px 0;
  position: relative;
  justify-content: center;
}
.site-header .brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}
.site-header .brand .logo-dark {
  display: block;
}
.site-header .brand .logo-light {
  display: none;
}
.site-header .brand img {
  display: block;
  height: 40px;
  width: auto;
}
.site-header .main-nav {
  gap: 38px;
  flex: 0 0 auto;
}
.site-header .main-nav a {
  position: relative;
  display: inline-block;
  color: rgba(17, 17, 17, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  letter-spacing: 3.5px;
  margin-right: -3.5px;
  line-height: 22px;
  transition: color 0.28s ease;
}
.site-header .main-nav a::after {
  content: '';
  position: absolute;
  left: -4px;
  right: 0;
  bottom: -4px;
  width: 95%;
  height: 1px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.2, 0.65, 0.2, 1), opacity 0.22s ease;
}
.site-header .main-nav a:hover,
.site-header .main-nav a.active {
  color: #111111;
}
.site-header .main-nav a:hover::after,
.site-header .main-nav a.active::after {
  transform: scaleX(1);
  opacity: 1;
}
.site-header .main-nav-left {
  margin-right: 60px;
}
.site-header .main-nav-right {
  margin-left: 60px;
}
.site-header .nav-has-badge {
  position: relative;
  padding-right: 0;
}
.site-header .nav-has-badge .nav-badge {
  position: absolute;
  top: -10px;
  right: -15px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  background: #5324CD;
  color: #fff;
  font-size: 8px;
  font-weight: 300;
  line-height: 17px;
  text-align: center;
  text-indent: 4px;
  padding: 0 3px;
  font-family: 'Satoshi', sans-serif;
  display: inline-block;
}
.site-header .header-icons {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  gap: 4px;
}
.site-header .header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-header .header-icon:hover {
  opacity: 0.6;
}
.site-header .header-icon svg {
  display: block;
}
.site-header .header-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  background: #5324CD;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  padding: 0 3px;
  font-family: 'Satoshi', sans-serif;
}
.site-header .dropdown-menu {
  border: 1px solid rgba(17, 17, 17, 0.06) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 20px 50px rgba(15, 21, 34, 0.12) !important;
  border-radius: 5px !important;
  padding: 12px !important;
  min-width: 210px !important;
  margin-top: 45px !important;
  animation: dropdownFadeIn 0.3s ease forwards;
  left: auto !important;
  right: 0 !important;
}
.site-header .dropdown-menu .dropdown-item {
  font-family: 'Satoshi', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(17, 17, 17, 0.6) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  padding: 14px 18px !important;
  border-radius: 5px !important;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: transparent !important;
}
.site-header .dropdown-menu .dropdown-item::after {
  content: '→';
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.28s ease;
  color: #5324CD;
}
.site-header .dropdown-menu .dropdown-item:hover,
.site-header .dropdown-menu .dropdown-item:focus,
.site-header .dropdown-menu .dropdown-item:active {
  background-color: rgba(83, 36, 205, 0.04) !important;
  color: #111 !important;
  padding-left: 24px !important;
}
.site-header .dropdown-menu .dropdown-item:hover::after,
.site-header .dropdown-menu .dropdown-item:focus::after,
.site-header .dropdown-menu .dropdown-item:active::after {
  opacity: 1;
  transform: translateX(0);
}
.site-header .dropdown-menu .dropdown-item.text-danger {
  color: rgba(255, 77, 79, 0.7) !important;
}
.site-header .dropdown-menu .dropdown-item.text-danger:hover {
  background-color: rgba(255, 77, 79, 0.04) !important;
  color: #ff4d4f !important;
}
.site-header .dropdown-menu .dropdown-item.text-danger::after {
  color: #ff4d4f;
}
.site-header .dropdown-menu .dropdown-divider {
  margin: 8px 18px !important;
  border-top: 1px solid rgba(17, 17, 17, 0.04) !important;
  background: transparent !important;
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-header .header-burger {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #111;
  background: none;
  border: none;
  padding: 4px 8px;
  box-shadow: none;
}
.site-header--dark {
  background: transparent;
  border-bottom: none;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 1000;
}
.site-header--dark .brand .logo-dark {
  display: none;
}
.site-header--dark .brand .logo-light {
  display: block;
}
.site-header--dark .main-nav a {
  color: rgba(255, 255, 255, 0.8);
}
.site-header--dark .main-nav a:hover,
.site-header--dark .main-nav a.active {
  color: #ffffff;
}
.site-header--dark .header-icon {
  color: rgba(255, 255, 255, 0.8);
}
.site-header--dark .header-burger {
  color: #fff;
}
@media (max-width: 992px) {
  .site-header .topbar {
    min-height: 60px;
    padding: 14px 148px 14px 60px;
    justify-content: flex-start;
  }
  .site-header .main-nav-left {
    margin-right: 0;
  }
  .site-header .main-nav-right {
    margin-left: 0;
  }
  .site-header .brand img {
    height: 30px;
  }
  .site-header .header-icons {
    gap: 0;
  }
  .site-header .header-icons .header-icon {
    width: 36px;
    height: 36px;
  }
  .site-header .header-icons .header-icon svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 575px) {
  .site-header .topbar {
    padding-right: 138px;
  }
  .site-header .brand img {
    height: 28px;
  }
}
@media (max-width: 399px) {
  .site-header .topbar {
    padding-right: 128px;
  }
  .site-header .brand img {
    height: 26px;
  }
  .site-header .header-icons .header-icon {
    width: 34px;
    height: 34px;
  }
}
.hero-section {
  min-height: 700px;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.52) 0%, rgba(5, 7, 11, 0.42) 45%, rgba(5, 7, 11, 0.72) 100%), url('../image/hero-banner-overlay.png') center / cover no-repeat;
  display: flex;
  align-items: stretch;
}
.hero-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-split {
  flex: 1;
  align-items: center;
  position: relative;
}
.hero-split::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 14%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.05));
  transform: rotate(12deg);
}
.hero-panel {
  text-align: center;
}
.hero-panel h2 {
  color: #fff;
  font-size: 44px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .hero-section {
    min-height: 500px;
  }
  .hero-wrap {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .hero-split::before {
    display: none;
  }
  .hero-panel h2 {
    font-size: clamp(28px, 8vw, 40px);
  }
}
.offcanvas {
  border: none;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  max-width: 85vw;
}
.offcanvas .offcanvas-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}
.offcanvas .offcanvas-header .btn-close {
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.offcanvas .offcanvas-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.offcanvas .offcanvas-header .btn-close:focus {
  box-shadow: none;
}
.offcanvas .offcanvas-body {
  padding: 10px 32px;
  background-color: #fafbfc;
}
.offcanvas .offcanvas-body nav {
  gap: 0 !important;
}
.offcanvas .offcanvas-body nav .nav-link {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas .offcanvas-body nav .nav-link::after {
  content: '→';
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #5324CD;
}
.offcanvas .offcanvas-body nav .nav-link:hover,
.offcanvas .offcanvas-body nav .nav-link:focus {
  color: #111;
  padding-left: 8px;
  border-bottom-color: rgba(17, 17, 17, 0.15);
}
.offcanvas .offcanvas-body nav .nav-link:hover::after,
.offcanvas .offcanvas-body nav .nav-link:focus::after {
  opacity: 1;
  transform: translateX(0);
}
.offcanvas .offcanvas-body nav .nav-link:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}
.offcanvas .offcanvas-body nav hr {
  display: none;
}
.offcanvas .offcanvas-body nav .btn {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offcanvas .offcanvas-body nav .btn-primary {
  background-color: #5324CD;
  border-color: #5324CD;
  box-shadow: 0 4px 14px rgba(83, 36, 205, 0.25);
  margin-top: 24px;
}
.offcanvas .offcanvas-body nav .btn-primary:hover {
  background-color: #401a9e;
  border-color: #401a9e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(83, 36, 205, 0.35);
}
.offcanvas .offcanvas-body nav .btn-outline-secondary {
  color: #111;
  border: 1px solid rgba(17, 17, 17, 0.15);
  background: transparent;
}
.offcanvas .offcanvas-body nav .btn-outline-secondary:hover {
  background: #fff;
  border-color: #111;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.06);
}
.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 11, 0.42);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10000;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(440px, 92vw);
  background: #ffffff;
  box-shadow: -20px 0 50px rgba(5, 7, 11, 0.12);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(17, 17, 17, 0.06);
}
.cart-drawer--open {
  transform: translateX(0);
}
.cart-drawer__header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  background: #ffffff;
}
.cart-drawer__header span {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #29303f;
  text-transform: none;
}
.cart-drawer__header .cart-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), background 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.cart-drawer__header .cart-drawer-close:hover {
  background: rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
.cart-drawer__body {
  overflow-y: auto;
  padding: 18px 22px;
  flex: 1;
  background: #ffffff;
}
.cart-drawer__footer {
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  padding: 18px 22px;
  background: #ffffff;
}
#cart-drawer-overlay.cart-drawer__overlay--open {
  opacity: 1;
  visibility: visible;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  margin: 0 0 12px;
  background: #f6f7fb;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  align-items: flex-start;
}
.cart-item:last-child {
  margin-bottom: 0;
}
.cart-item__thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #ffffff;
}
.cart-item__meta {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  color: #29303f;
  margin: 0 0 8px;
  text-decoration: none;
}
.cart-item__name:hover {
  color: #5324CD;
}
.cart-item__options {
  margin-bottom: 10px;
}
.cart-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 6px;
  overflow: hidden;
  height: 32px;
}
.qty-control .qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #29303f;
  transition: background 0.25s cubic-bezier(0.23, 1, 0.32, 1), transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.qty-control .qty-btn:hover {
  background: rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
.qty-control .qty-btn:disabled {
  opacity: 0.35;
}
.qty-control .qty-input {
  width: 38px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #29303f;
  padding: 0;
  -moz-appearance: textfield;
}
.qty-control .qty-input::-webkit-inner-spin-button,
.qty-control .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-item__price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}
.cart-item__price-total {
  font-weight: 800;
  font-size: 13px;
  color: #29303f;
}
.cart-item__price-sep {
  color: rgba(41, 48, 63, 0.4);
  font-weight: 700;
}
.cart-item__price-unit {
  font-weight: 700;
  font-size: 12px;
  color: rgba(41, 48, 63, 0.55);
}
.cart-remove {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 77, 79, 0.2);
  background: rgba(255, 77, 79, 0.04);
  border-radius: 6px;
  opacity: 0.65;
  transition: opacity 0.25s cubic-bezier(0.23, 1, 0.32, 1), background 0.25s cubic-bezier(0.23, 1, 0.32, 1), transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.cart-remove img {
  width: 18px;
  height: 18px;
  display: block;
}
.cart-remove:hover {
  opacity: 1;
  background: rgba(255, 77, 79, 0.08);
  transform: translateY(-1px);
}
.cart-drawer__totals .cart-drawer__line {
  padding: 6px 0;
  font-size: 14px;
  color: rgba(41, 48, 63, 0.7);
}
.cart-drawer__totals .cart-drawer__line span:last-child {
  color: #29303f;
  font-weight: 800;
}
.cart-drawer__totals .cart-drawer__subtotal {
  margin-top: 2px;
}
@media (max-width: 575px) {
  .cart-drawer {
    width: min(420px, 94vw);
  }
  .cart-drawer__header,
  .cart-drawer__body,
  .cart-drawer__footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cart-item__thumb {
    width: 52px;
    height: 52px;
  }
}
.page-dashboard {
  background-color: #f8f9fc;
  min-height: 80vh;
}
.page-dashboard .text-purple {
  color: #5324CD;
}
.page-dashboard .dashboard-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.page-dashboard .dashboard-hero .hero-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.page-dashboard .dashboard-hero .hero-subtitle {
  font-size: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-bottom: 32px;
}
.page-dashboard .dashboard-hero .hero-stats {
  display: flex;
  gap: 32px;
}
.page-dashboard .dashboard-hero .hero-stats .stat-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-dashboard .dashboard-hero .hero-stats .stat-pill .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 17, 0.4);
  font-weight: 700;
}
.page-dashboard .dashboard-hero .hero-stats .stat-pill .stat-value {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}
.page-dashboard .dashboard-card {
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 4px 20px rgba(15, 22, 37, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-dashboard .dashboard-card .card-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}
.page-dashboard .dashboard-card .card-header .card-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.page-dashboard .dashboard-card .card-header .card-subtitle {
  font-size: 13px;
  color: rgba(17, 17, 17, 0.4);
  margin: 4px 0 0;
}
.page-dashboard .dashboard-card .card-header .card-action {
  font-size: 13px;
  color: #5324CD;
  text-decoration: none;
  font-weight: 500;
}
.page-dashboard .dashboard-card .card-header .card-action:hover {
  text-decoration: underline;
}
.page-dashboard .dashboard-card .card-body {
  padding: 32px;
}
.page-dashboard .dashboard-card .card-footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(17, 17, 17, 0.04);
  margin-top: auto;
}
.page-dashboard .premium-table-wrapper {
  overflow-x: auto;
}
.page-dashboard .premium-table {
  width: 100%;
  border-collapse: collapse;
}
.page-dashboard .premium-table th {
  text-align: left;
  padding: 16px 32px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(17, 17, 17, 0.4);
  font-weight: 700;
  background: rgba(17, 17, 17, 0.02);
}
.page-dashboard .premium-table td {
  padding: 20px 32px;
  font-size: 14px;
  color: #111;
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}
.page-dashboard .premium-table .order-id {
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
}
.page-dashboard .premium-table .order-date {
  color: rgba(17, 17, 17, 0.5);
}
.page-dashboard .premium-table .order-total {
  font-weight: 700;
}
.page-dashboard .premium-table .status-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(17, 17, 17, 0.05);
  color: rgba(17, 17, 17, 0.6);
}
.page-dashboard .premium-table .status-pill.status-complete,
.page-dashboard .premium-table .status-pill.status-5 {
  background: rgba(67, 160, 71, 0.1);
  color: #1f7a33;
}
.page-dashboard .premium-table .status-pill.status-pending,
.page-dashboard .premium-table .status-pill.status-1 {
  background: rgba(255, 193, 7, 0.1);
  color: #b38700;
}
.page-dashboard .premium-table .btn-icon {
  color: rgba(17, 17, 17, 0.3);
  transition: color 0.2s;
}
.page-dashboard .premium-table .btn-icon:hover {
  color: #5324CD;
}
.page-dashboard .frequent-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-dashboard .frequent-mini-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.page-dashboard .frequent-mini-card:hover {
  border-color: rgba(17, 17, 17, 0.06);
  background: rgba(17, 17, 17, 0.01);
}
.page-dashboard .frequent-mini-card .mini-card-img {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.04);
}
.page-dashboard .frequent-mini-card .mini-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-dashboard .frequent-mini-card .mini-card-info {
  flex: 1;
}
.page-dashboard .frequent-mini-card .mini-card-info .mini-card-name {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-dashboard .frequent-mini-card .mini-card-info .mini-card-price {
  font-size: 12px;
  color: #5324CD;
  font-weight: 700;
  margin: 2px 0 0;
}
.page-dashboard .frequent-mini-card .btn-restock {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: all 0.2s;
}
.page-dashboard .frequent-mini-card .btn-restock:hover {
  background: #5324CD;
  border-color: #5324CD;
  color: #fff;
}
.page-dashboard .dashboard-section {
  margin-top: 96px;
}
.page-dashboard .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.page-dashboard .section-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.page-dashboard .section-subtitle {
  font-size: 15px;
  color: rgba(17, 17, 17, 0.5);
}
.page-dashboard .premium-product-card {
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-dashboard .premium-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 22, 37, 0.08);
}
.page-dashboard .premium-product-card .pp-card-img {
  position: relative;
  padding: 32px;
  background: #fff;
  display: flex;
  justify-content: center;
}
.page-dashboard .premium-product-card .pp-card-img img {
  max-height: 180px;
  width: auto;
  transition: transform 0.5s ease;
}
.page-dashboard .premium-product-card .pp-card-img .pp-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #5324CD;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.page-dashboard .premium-product-card:hover .pp-card-img img {
  transform: scale(1.05);
}
.page-dashboard .premium-product-card .pp-card-body {
  padding: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.03);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-dashboard .premium-product-card .pp-card-body .pp-card-brand {
  font-size: 11px;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}
.page-dashboard .premium-product-card .pp-card-body .pp-card-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 16px;
}
.page-dashboard .premium-product-card .pp-card-body .pp-card-title a {
  color: #111;
  text-decoration: none;
}
.page-dashboard .premium-product-card .pp-card-body .pp-card-title a:hover {
  color: #5324CD;
}
.page-dashboard .premium-product-card .pp-card-body .pp-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-dashboard .premium-product-card .pp-card-body .pp-card-footer .pp-card-price {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.page-dashboard .premium-product-card .pp-card-body .pp-card-footer .pp-card-btn {
  background: transparent;
  border: 1.5px solid rgba(17, 17, 17, 0.15);
  border-radius: 5px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.page-dashboard .premium-product-card .pp-card-body .pp-card-footer .pp-card-btn:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
@media (max-width: 991px) {
  .page-dashboard .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .page-dashboard .dashboard-hero .hero-title {
    font-size: 32px;
  }
}
.order-assistant {
  width: 280px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  margin-right: 40px;
}
.order-assistant .order-assistant__inner {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(15, 21, 34, 0.05);
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.04);
}
.order-assistant .order-assistant__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.order-assistant .order-assistant__head h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #111;
  text-transform: none;
  letter-spacing: 0;
}
.order-assistant .order-assistant__head #oaCount {
  background: #5324CD;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.order-assistant .order-assistant__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  max-height: 300px;
  overflow-y: auto;
}
.order-assistant .order-assistant__list .oa-empty {
  color: rgba(17, 17, 17, 0.3);
  font-size: 13px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}
.order-assistant .order-assistant__list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.order-assistant .order-assistant__list li .oa-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.order-assistant .order-assistant__list li .oa-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
}
.order-assistant .order-assistant__list li .oa-item .oa-item__info {
  flex: 1;
}
.order-assistant .order-assistant__list li .oa-item .oa-item__info p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}
.order-assistant .order-assistant__list li .oa-item .oa-item__info small {
  color: rgba(17, 17, 17, 0.5);
  font-size: 11px;
}
.order-assistant .order-assistant__list li .oa-item__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.order-assistant .order-assistant__list li .oa-item__right strong {
  font-size: 12px;
  color: #111;
}
.order-assistant .order-assistant__list li .oa-item__right .oa-remove {
  border: none;
  background: transparent;
  color: #ff4d4f;
  padding: 0 4px;
  font-size: 16px;
  line-height: 1;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.order-assistant .order-assistant__list li .oa-item__right .oa-remove:hover {
  opacity: 1;
}
.order-assistant .order-assistant__summary {
  margin: 0 0 24px 0;
  font-size: 13px;
}
.order-assistant .order-assistant__summary div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.order-assistant .order-assistant__summary div dt {
  font-weight: 400;
  color: rgba(17, 17, 17, 0.5);
}
.order-assistant .order-assistant__summary div dd {
  margin: 0;
  color: #111;
  font-weight: 500;
}
.order-assistant .order-assistant__summary div.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}
.order-assistant .order-assistant__summary div.total dt {
  font-weight: 700;
  color: #111;
  font-size: 15px;
}
.order-assistant .order-assistant__summary div.total dd {
  font-weight: 700;
  color: #111;
  font-size: 15px;
}
.order-assistant .btn-primary {
  width: 100%;
  background: #5324CD;
  border: none;
  border-radius: 5px;
  padding: 14px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(83, 36, 205, 0.2);
}
.order-assistant .btn-primary:hover {
  background: #401a9e;
  transform: translateY(-1px);
}
.logged-layout {
  display: flex;
  padding-top: 40px;
}
.product-content {
  flex: 1;
}
@media (max-width: 1200px) {
  .order-assistant {
    display: none;
  }
}
.hero--catalog {
  background: linear-gradient(90deg, #1A1F2C 0%, #301F5E 50%, #5324CD 100%);
  padding: 80px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hero--catalog .hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero--catalog .hero__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.hero--catalog .hero__sub {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 8px;
  font-weight: 400;
}
.hero--catalog .hero__tags {
  font-size: 14px;
  opacity: 0.5;
  margin: 0;
}
.hero--catalog .hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero--catalog .hero__ctas .btn-primary {
  background: #5324CD;
  border: none;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.hero--catalog .hero__ctas .btn--link {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
  font-weight: 700;
}
.hero--catalog .hero__ctas .btn--link:hover {
  opacity: 1;
}
.hero--catalog .hero__ctas .hero__or {
  opacity: 0.3;
  font-size: 14px;
}
/* posunuti kdyz je info banner */
#info-banner + .site-header.site-header--dark,
#info-banner + header.site-header.site-header--dark,
#info-banner + .site-header.site-header--dark {
  top: 62px;
}
@media (max-width: 767.98px) {
  #info-banner {
    min-height: 44px;
  }
  #info-banner + .site-header.site-header--dark,
  #info-banner + header.site-header.site-header--dark,
  #info-banner + .site-header.site-header--dark {
    top: 44px;
  }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  background: transparent;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: #8a8798;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #c5c1d3;
}
.breadcrumb a {
  color: #7b778d;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: #5b2be0;
}
.breadcrumb .alert {
  border: 1px solid #e8e7ef;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(26, 22, 40, 0.04);
  font-family: 'Inter', sans-serif;
}
.information-subheader {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 0px;
  padding: 0;
  border-radius: 0;
  color: #fff;
  box-shadow: 0 22px 60px rgba(24, 10, 43, 0.18);
  background: url('../../image/subheader-bg.png');
  background-size: cover;
}
.information-subheader::before {
  content: '';
  position: absolute;
  inset: 0;
}
.information-subheader .row {
  margin: 0;
}
.information-subheader .container {
  max-width: 1320px;
}
.information-subheader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  min-height: 200px;
  padding: 25px 0;
}
.information-subheader__content {
  flex: 1 1 auto;
  max-width: 760px;
}
.information-subheader__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}
.information-subheader__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}
.information-subheader__title,
.information-subheader h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(1.75rem, 2.2vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  font-weight: 800;
}
.information-subheader__text,
.information-subheader p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.information-subheader__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.information-subheader__meta li {
  position: relative;
  padding-right: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.05px;
  font-weight: 300;
}
.information-subheader__meta li::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.information-subheader__meta li:last-of-type::after {
  display: none;
}
.information-subheader__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 250px;
}
.information-subheader__actions .btn-primary {
  background: #5b2be0;
  border-color: #5b2be0;
  color: #fff;
}
.information-subheader__actions .btn-primary:hover,
.information-subheader__actions .btn-primary:focus {
  background: #693de3;
  border-color: #693de3;
  color: #fff;
}
.information-subheader__actions .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}
.information-subheader__actions .btn-secondary:hover,
.information-subheader__actions .btn-secondary:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
@media (max-width: 1199.98px) {
  .information-subheader__inner {
    gap: 26px;
    min-height: auto;
    padding: 34px 0;
  }
  .information-subheader__actions {
    min-width: 0;
  }
}
@media (max-width: 991.98px) {
  .information-subheader__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .information-subheader__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .information-subheader {
    margin-bottom: 24px;
  }
  .information-subheader .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .information-subheader__inner {
    padding: 24px 0 26px;
  }
  .information-subheader__title {
    font-size: 32px;
    line-height: 1.08;
  }
  .information-subheader__text {
    font-size: 15px;
    line-height: 1.58;
  }
  .information-subheader__meta {
    gap: 6px 12px;
    margin-top: 18px;
  }
  .information-subheader__meta li {
    font-size: 12px;
  }
  .information-subheader__actions {
    width: 100%;
  }
  .information-subheader__actions .btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .information-subheader__actions .btn {
    flex-basis: 100%;
  }
}
.info-panel {
  margin: 0;
  border: 0;
  border-radius: 0 !important;
  padding: 0 !important;
  min-height: 52px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #3a0b63 0%, #6d2d73 35%, #b06a77 68%, #d59a68 100%);
  box-shadow: none;
}
.info-panel .container-fluid,
.info-panel .container-xl {
  padding-top: 0;
  padding-bottom: 0;
}
.info-panel #account-type-banner,
.info-panel #eu-vat-banner,
.info-panel #min-order-banner,
.info-panel #promo-banner {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}
.info-panel a {
  color: #FFF !important;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.info-panel a,
.info-panel .alert-link,
.info-panel .alert-link.violet {
  color: #FFF !important;
  text-decoration: underline !important;
  font-weight: 700;
  transition: opacity 0.2s ease;
}
.info-panel a:hover,
.info-panel .alert-link:hover,
.info-panel .alert-link.violet:hover,
.info-panel a:focus,
.info-panel .alert-link:focus,
.info-panel .alert-link.violet:focus {
  color: #FFF !important;
  opacity: 0.85;
}
.info-panel strong {
  font-weight: 700;
}
.info-panel.alert,
.info-panel.alert-warning,
.info-panel.info {
  background-color: transparent;
  border: 0;
  color: #FFF;
}
@media (max-width: 767.98px) {
  .info-panel {
    min-height: 44px;
  }
  .info-panel #account-type-banner,
  .info-panel #eu-vat-banner,
  .info-panel #min-order-banner,
  .info-panel #promo-banner {
    min-height: 44px;
    padding: 7px 0;
  }
  .info-panel span,
  .info-panel a,
  .info-panel strong,
  .info-panel u {
    font-size: 14px;
    line-height: 22px;
  }
  .info-panel .container-fluid,
  .info-panel .container-xl {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.site-footer {
  position: relative;
  color: #fff;
  padding: 80px 0 40px;
  background: url('../../image/footer-bg.png') center / cover no-repeat !important;
  font-family: 'Satoshi', sans-serif;
}
.site-footer .footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}
.site-footer .footer-newsletter-text {
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.08px;
  margin-bottom: 20px;
}
.site-footer .footer-disclosure {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin-bottom: 24px;
  line-height: 1.4;
}
.site-footer .footer-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.site-footer .newsletter-form {
  margin-bottom: 24px;
}
.site-footer .newsletter-form .premium-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}
.site-footer .newsletter-form .premium-input-group input {
  flex: 1;
  min-width: 0;
  max-width: 165px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: #fff;
  padding: 0 16px;
  height: 44px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.site-footer .newsletter-form .premium-input-group input::placeholder {
  color: #888;
}
.site-footer .newsletter-form .premium-input-group input:focus {
  outline: none;
  border-color: #5324CD;
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.18);
}
.site-footer .newsletter-form .premium-input-group .btn,
.site-footer .newsletter-form .premium-input-group .btn-signup {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 5px;
  border: 1px solid #5324CD;
  background: #5324CD;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  white-space: nowrap;
}
.site-footer .newsletter-form .premium-input-group .btn:hover,
.site-footer .newsletter-form .premium-input-group .btn-signup:hover {
  background: #441fb1;
  border-color: #441fb1;
  transform: translateY(-2px);
}
.site-footer .newsletter-form .premium-input-group .btn:focus-visible,
.site-footer .newsletter-form .premium-input-group .btn-signup:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.25);
}
.site-footer .footer-socials {
  display: flex;
  gap: 16px;
}
.site-footer .footer-socials a {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.site-footer .footer-socials a:hover {
  transform: translateY(-2px);
  color: #5324CD;
}
.site-footer .footer-socials a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.25);
  border-radius: 8px;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}
.site-footer .footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.site-footer .footer-links li a {
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 3.25px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-links li a:hover {
  color: #fff;
}
.site-footer .footer-family-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.site-footer .footer-auth-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .footer-auth-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Satoshi', sans-serif;
  white-space: nowrap;
}
.site-footer .footer-auth-buttons .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.25);
}
.site-footer .footer-auth-buttons .btn.btn-primary,
.site-footer .footer-auth-buttons .btn-signin {
  background: #5324CD;
  color: #fff;
  border: 1.5px solid #5324CD;
}
.site-footer .footer-auth-buttons .btn.btn-primary:hover,
.site-footer .footer-auth-buttons .btn-signin:hover {
  background: #441fb1;
  border-color: #441fb1;
  transform: translateY(-2px);
}
.site-footer .footer-auth-buttons .btn.btn-secondary,
.site-footer .footer-auth-buttons .btn-register {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
}
.site-footer .footer-auth-buttons .btn.btn-secondary:hover,
.site-footer .footer-auth-buttons .btn-register:hover {
  background: #fff;
  color: #5324CD;
  border-color: #fff;
  transform: translateY(-2px);
}
.site-footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 64px 0 32px;
}
.site-footer .footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  margin: 0;
}
.site-footer .footer-column {
  flex: 0 1 auto;
  min-width: 200px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .site-footer {
    padding: 72px 0 42px;
  }
  .site-footer .footer-tablet .footer-logo img {
    margin-bottom: 20px;
  }
  .site-footer .footer-tablet .footer-brand,
  .site-footer .footer-tablet .footer-family,
  .site-footer .footer-tablet .footer-column {
    text-align: left;
  }
  .site-footer .footer-tablet .footer-title {
    margin-bottom: 22px;
  }
  .site-footer .footer-tablet .newsletter-form .premium-input-group .btn {
    padding: 0 18px;
  }
  .site-footer .footer-tablet .footer-links li {
    padding-left: 0;
  }
  .site-footer .footer-tablet .footer-links li::before {
    display: none;
  }
  .site-footer .footer-tablet .footer-links li a {
    letter-spacing: 2.8px;
  }
  .site-footer .footer-tablet .footer-socials {
    margin-top: 18px;
  }
  .site-footer .footer-tablet .footer-family-text {
    margin-bottom: 18px;
  }
  .site-footer .footer-divider {
    margin: 54px 0 28px;
  }
}
@media (max-width: 767.98px) {
  .site-footer {
    padding: 56px 0 30px;
  }
  .site-footer .footer-mobile {
    text-align: center;
  }
  .site-footer .footer-mobile .footer-logo img {
    margin: 0 auto 18px;
  }
  .site-footer .footer-mobile .footer-brand {
    margin-bottom: 22px;
  }
  .site-footer .footer-mobile .footer-newsletter {
    margin: 0 auto 26px;
  }
  .site-footer .footer-mobile .footer-newsletter .footer-title {
    margin-bottom: 14px;
  }
  .site-footer .footer-mobile .newsletter-form .premium-input-group {
    flex-direction: column;
    gap: 10px;
  }
  .site-footer .footer-mobile .newsletter-form .premium-input-group input {
    flex: auto;
    max-width: 220px;
  }
  .site-footer .footer-mobile .newsletter-form .premium-input-group .btn {
    width: 100%;
  }
  .site-footer .footer-mobile .footer-family {
    margin: 0 auto 26px;
  }
  .site-footer .footer-mobile .footer-family .footer-title {
    margin-bottom: 14px;
  }
  .site-footer .footer-mobile .footer-family .footer-auth-buttons {
    justify-content: center;
  }
  .site-footer .footer-mobile .footer-accordion {
    width: 100%;
    margin: 10px 0;
  }
  .site-footer .footer-mobile .footer-accordion__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.085);
    border: none;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  }
  .site-footer .footer-mobile .footer-accordion__toggle:hover {
    background: rgba(255, 255, 255, 0.085);
    border-color: rgba(83, 36, 205, 0.55);
  }
  .site-footer .footer-mobile .footer-accordion__toggle:active {
    transform: translateY(1px);
  }
  .site-footer .footer-mobile .footer-accordion__toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.25);
  }
  .site-footer .footer-mobile .footer-accordion__toggle .footer-accordion__title {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .site-footer .footer-mobile .footer-accordion__toggle .footer-accordion__icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
    line-height: 1;
  }
  .site-footer .footer-mobile .footer-accordion__panel {
    padding: 12px 10px 8px;
    text-align: left;
  }
  .site-footer .footer-mobile .footer-accordion__panel:not([hidden]) {
    animation: footerPanelIn 0.18s ease-out;
  }
  .site-footer .footer-mobile .footer-accordion__panel .footer-links {
    padding-left: 5px;
  }
  .site-footer .footer-mobile .footer-accordion__panel .footer-links li {
    padding-left: 15px;
    margin-bottom: 12px;
  }
  .site-footer .footer-mobile .footer-accordion__panel .footer-links li a {
    letter-spacing: 2.6px;
  }
  .site-footer .footer-mobile .footer-socials {
    justify-content: center;
    margin-top: 18px;
  }
  .site-footer .footer-bottom {
    text-align: center;
  }
  .site-footer .footer-divider {
    margin: 34px 0 22px;
  }
}
@keyframes footerPanelIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
footer:not(.site-footer) {
  display: none !important;
}
.site-header--light {
  background: #fff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.site-header--light .container {
  position: relative;
}
.site-header--light .topbar {
  padding-top: 40px;
  padding-bottom: 0;
  justify-content: center;
  gap: 0;
  position: relative;
}
.site-header--light .brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.site-header--light .main-nav-left {
  margin-right: 40px;
}
.site-header--light .main-nav-right {
  margin-left: 40px;
}
.site-header--light .main-nav {
  gap: 38px;
  flex: 0 0 auto;
}
.site-header--light .main-nav a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-stretch: 125%;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.7);
  text-decoration: none;
  line-height: 22px;
  transition: color 0.28s ease;
}
.site-header--light .main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.2, 0.65, 0.2, 1), opacity 0.22s ease;
}
.site-header--light .main-nav a:hover,
.site-header--light .main-nav a:focus-visible {
  color: #111111;
}
.site-header--light .main-nav a:hover::after,
.site-header--light .main-nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}
.site-header--light .main-nav a.active {
  color: #111111;
}
.site-header--light .main-nav a.active::after {
  transform: scaleX(1);
  opacity: 1;
}
.site-header--light .header-icons {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-header--light .header-icons .header-icon {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-header--light .header-icons .header-icon svg {
  stroke: #111;
}
.site-header--light .header-icons .header-icon:hover {
  opacity: 0.6;
}
.site-header--light .header-icons .header-icon--cart span {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #5324CD;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
@media (max-width: 992px) {
  .site-header--light .topbar {
    justify-content: space-between;
    padding: 14px 0;
  }
  .site-header--light .main-nav-left,
  .site-header--light .main-nav-right {
    display: none;
  }
  .site-header--light .header-icons {
    position: static;
    transform: none;
  }
}
.user-icon-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
}
.user-icon-light svg {
  width: 22px;
  height: 22px;
  display: block;
}
.header-icons {
  gap: 4px;
}
.header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #111;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header-icon:hover {
  opacity: 0.7;
}
.header-icon svg {
  display: block;
}
.header-icon--cart {
  position: relative;
}
.header-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  background: #5324CD;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  padding: 0 3px;
  font-family: 'Satoshi', sans-serif;
}
.site-header .dropdown-menu.header-dropdown {
  position: absolute;
  width: 360px;
  min-width: 360px !important;
  max-width: calc(100vw - 24px);
  padding: 18px !important;
  margin-top: 18px !important;
  border: 1px solid rgba(15, 21, 34, 0.08) !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.985) !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 24px 64px rgba(15, 21, 34, 0.14) !important;
  overflow: visible;
}
.site-header .dropdown-menu.header-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid rgba(15, 21, 34, 0.08);
  border-left: 1px solid rgba(15, 21, 34, 0.08);
  transform: rotate(45deg);
}
.site-header .header-dropdown__head {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 21, 34, 0.08);
}
.site-header .header-dropdown__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(41, 48, 63, 0.52);
  font-size: 11px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-header .header-dropdown__title {
  margin: 0 0 4px;
  color: #29303f;
  font-size: 20px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  line-height: 1.15;
}
.site-header .header-dropdown__meta,
.site-header .header-dropdown__hint {
  color: rgba(41, 48, 63, 0.56);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-header .header-dropdown__hint {
  margin: 12px 2px 0;
}
.site-header .header-dropdown__table {
  border: 1px solid rgba(15, 21, 34, 0.08);
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}
.site-header .header-dropdown__table-head {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(15, 21, 34, 0.08);
  background: #f8f9fc;
}
.site-header .header-dropdown__table-head span {
  display: block;
  color: rgba(41, 48, 63, 0.56);
  font-size: 11px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-header .header-dropdown__list {
  display: block;
}
.site-header .header-dropdown__row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  color: #29303f;
  text-decoration: none;
  transition: background-color 0.24s ease, transform 0.24s ease;
  border-bottom: 1px solid rgba(15, 21, 34, 0.06);
}
.site-header .header-dropdown__row:last-child {
  border-bottom: 0;
}
.site-header .header-dropdown__row:hover,
.site-header .header-dropdown__row:focus {
  background: rgba(83, 36, 205, 0.04);
}
.site-header .header-dropdown__thumb {
  width: 54px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid rgba(15, 21, 34, 0.08);
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  overflow: hidden;
  flex-shrink: 0;
}
.site-header .header-dropdown__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.site-header .header-dropdown__content {
  min-width: 0;
  display: flex;
  align-items: center;
}
.site-header .header-dropdown__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #29303f;
  font-size: 15px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  line-height: 1.35;
}
.site-header .header-dropdown__empty {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(15, 21, 34, 0.12);
  border-radius: 6px;
  background: #fafbff;
}
.site-header .header-dropdown__empty strong {
  color: #29303f;
  font-size: 16px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  line-height: 1.25;
}
.site-header .header-dropdown__empty span {
  color: rgba(41, 48, 63, 0.68);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
.site-header .header-dropdown__button {
  margin-top: 16px;
  min-height: 44px;
  border-radius: 6px;
  font-size: 12px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .site-header .dropdown-menu.header-dropdown {
    width: calc(100vw - 20px);
    min-width: 0 !important;
    max-width: calc(100vw - 20px);
    padding: 16px !important;
    right: -10px !important;
    left: auto !important;
  }
  .site-header .dropdown-menu.header-dropdown::before {
    right: 18px;
  }
  .site-header .header-dropdown__title {
    font-size: 18px;
  }
  .site-header .header-dropdown__row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 12px;
  }
  .site-header .header-dropdown__thumb {
    width: 48px;
    height: 58px;
  }
  .site-header .header-dropdown__name {
    font-size: 14px;
  }
}
.brands-section {
  background: #fff;
  text-align: center;
}
.brands-section h1 {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}
.brands-section .lead {
  max-width: 950px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}
.brands-section .brand-logos {
  margin-top: 2.4rem;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.brands-section .brand-logos .brand-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: brandMarquee 95s linear infinite;
}
.brands-section .brand-logos a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.82;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.brands-section .brand-logos a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.brands-section .brand-logos img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.commitment {
  background: #fff;
  border-bottom: 1px solid #d7d7d7;
  padding-top: 72px;
  padding-bottom: 72px;
}
.commitment h2 {
  max-width: 500px;
  color: #222222;
  font-size: 40px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  line-height: 48px;
  word-wrap: break-word;
  margin: 0;
}
.commitment p {
  margin: 0;
  padding-left: 36px;
  border-left: 1px solid #d1d1d1;
  max-width: 700px;
  color: #333333;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 30px;
  word-wrap: break-word;
}
.commitment p strong {
  color: #333333;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 30px;
  word-wrap: break-word;
}
.benefits {
  background: #fff;
  padding-top: 68px;
}
.benefits .benefit-card {
  text-align: center;
}
.benefits .benefit-card h3 {
  color: #222222;
  font-size: 28px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  line-height: 36px;
  word-wrap: break-word;
  margin: 0 auto 0.9rem;
  max-width: 430px;
}
.benefits .benefit-card p {
  color: #333333;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 28px;
  word-wrap: break-word;
  max-width: 390px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .brands-section .brand-logos .brand-track {
    gap: 28px;
    animation-duration: 90s;
  }
  .commitment {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .commitment h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .commitment p {
    padding-left: 0;
    border-left: 0;
    margin-top: 1rem;
    font-size: 17px;
    line-height: 28px;
  }
  .benefits .benefit-card {
    text-align: left;
  }
  .benefits .benefit-card h3,
  .benefits .benefit-card p {
    margin-left: auto;
    margin-right: auto;
  }
  .about-products .about-left {
    margin-bottom: 1rem;
  }
  .about-products .product-slider-fade {
    min-height: 360px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
  }
  .about-products .product-slider-fade .slider-title,
  .about-products .product-slider-fade .product-stage,
  .about-products .product-slider-fade .product-caption,
  .about-products .product-slider-fade .slider-nav {
    grid-column: 1;
  }
  .about-products .product-slider-fade .slider-nav {
    grid-row: 2;
    justify-self: center;
    margin: 0.5rem 0.8rem 0;
  }
  .about-products .product-slider-fade .slider-nav.prev,
  .about-products .product-slider-fade .slider-nav.next {
    display: inline-block;
  }
  .about-products .product-slider-fade .slider-nav.prev::after,
  .about-products .product-slider-fade .slider-nav.next::after {
    display: none;
  }
  .about-products .product-slider-fade .product-stage {
    grid-row: 3;
  }
  .about-products .product-slider-fade .product-caption {
    grid-row: 4;
  }
}
@media (max-width: 768px) {
  .brands-section h1 {
    font-size: 32px;
    line-height: 38px;
  }
  .brands-section .lead {
    font-size: 15px;
    line-height: 26px;
  }
  .brands-section .brand-logos {
    margin-top: 1.4rem;
  }
  .brands-section .brand-logos .brand-track {
    gap: 20px;
    animation-duration: 38s;
  }
  .brands-section .brand-logos img {
    height: 44px;
  }
  .about-products .about-left h2 {
    font-size: 34px;
    line-height: 38px;
  }
  .about-products .about-left p {
    font-size: 16px;
    line-height: 26px;
  }
  .about-products .product-slider-fade {
    min-height: 330px;
  }
  .about-products .product-slider-fade .slider-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .about-products .product-slider-fade .slider-title span {
    font-size: 18px;
    line-height: 24px;
  }
  .about-products .product-slider-fade .product-stage {
    min-width: 100%;
    min-height: 210px;
  }
  .about-products .product-slider-fade .product-stage img {
    width: min(200px, 100%);
  }
  .about-products .product-slider-fade .slider-nav {
    width: 118px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .about-products .product-slider-fade .product-caption {
    margin-top: 18px;
    font-size: 14px;
  }
  .about-products .product-slider-fade .product-caption span {
    font-size: 11px;
  }
  .commitment h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .commitment p,
  .commitment p strong {
    font-size: 16px;
    line-height: 26px;
  }
  .benefits {
    padding-top: 44px;
  }
  .benefits .benefit-card h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .benefits .benefit-card p {
    font-size: 15px;
    line-height: 25px;
  }
}
:root {
  --hero-scroll-bar-h: 100px;
  --hero-info-banner-h: 0px;
}
.hero-desktop-wrap {
  position: relative;
  background: #000;
}
.hero-section {
  position: relative;
  height: calc(100vh - var(--hero-info-banner-h) - var(--hero-scroll-bar-h));
  min-height: 440px;
  background: #000;
  overflow: hidden;
  isolation: isolate;
  --split-top: 55%;
  --split-bottom: 45%;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
  clip-path: polygon(54.95% 0, 55.05% 0, 45.05% 100%, 44.95% 100%);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.22));
  opacity: 0.95;
}
.hero-section .hero-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.hero-section .hero-panel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: grayscale(100%) brightness(0.32);
  transform: scale(1.02);
  transition: filter 0.6s ease, transform 0.8s ease;
  will-change: transform, filter;
}
.hero-section .hero-panel .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.38) 35%, rgba(0, 0, 0, 0.55) 100%);
  transition: background 0.5s ease, opacity 0.5s ease;
}
.hero-section .hero-panel .hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 3rem 2rem;
  opacity: 0.82;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-section .hero-panel .hero-content h2 {
  margin: 0 0 30px;
  font-size: clamp(2.4rem, 2.4vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 15px rgba(0, 0, 0, 0.65);
}
.hero-section .hero-panel .hero-content .hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-section .hero-panel .hero-content .btn {
  min-width: 140px;
}
.hero-section .hero-panel:hover video {
  filter: grayscale(0%) brightness(0.72);
  transform: scale(1.06);
}
.hero-section .hero-panel:hover .hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.22) 35%, rgba(0, 0, 0, 0.38) 100%);
}
.hero-section .hero-panel:hover .hero-content {
  opacity: 1;
  transform: translateY(0);
}
.hero-section .left-panel {
  left: 0;
  width: 55%;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 81.818% 100%, 0 100%);
}
.hero-section .left-panel .hero-content {
  padding-left: 6vw;
  padding-right: 7vw;
}
.hero-section .right-panel {
  right: 0;
  width: 55%;
  z-index: 2;
  clip-path: polygon(18.182% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-section .right-panel .hero-content {
  padding-left: 7vw;
  padding-right: 6vw;
}
.hero-scroll-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  height: var(--hero-scroll-bar-h);
  padding: 0 36px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.35s ease, color 0.35s ease, opacity 0.35s ease;
  opacity: 0.6;
}
.hero-scroll-bar:hover,
.hero-scroll-bar:focus {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  opacity: 1;
}
.hero-scroll-bar:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.hero-scroll-bar__line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}
.hero-scroll-bar__content {
  flex: 0 0 auto;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  text-align: center;
}
.hero-scroll-bar__label {
  display: block;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
.hero-scroll-bar__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.hero-scroll-bar__arrows span {
  display: block;
  width: 10px;
  height: 10px;
  margin: -2px 0;
  border-right: 1.5px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  opacity: 0;
  animation: heroBottomArrow 1.8s infinite;
}
.hero-scroll-bar__arrows span:nth-child(1) {
  animation-delay: 0s;
}
.hero-scroll-bar__arrows span:nth-child(2) {
  animation-delay: 0.18s;
}
.hero-scroll-bar__arrows span:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes heroBottomArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  30% {
    opacity: 0.3;
  }
  60% {
    opacity: 1;
    transform: rotate(45deg) translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}
@media (max-width: 1399.98px) {
  .hero-section .hero-panel .hero-content h2 {
    font-size: clamp(2.2rem, 2.7vw, 3.7rem);
  }
}
@media (max-width: 1199.98px) {
  .hero-section {
    min-height: 420px;
  }
  .hero-section .hero-panel .hero-content {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }
  .hero-section .hero-panel .hero-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }
  .hero-section .left-panel {
    width: 56%;
    clip-path: polygon(0 0, 100% 0, 82.143% 100%, 0 100%);
  }
  .hero-section .right-panel {
    width: 56%;
    clip-path: polygon(17.857% 0, 100% 0, 100% 100%, 0 100%);
  }
  .hero-scroll-bar {
    gap: 16px;
    padding: 0 24px;
  }
  .hero-scroll-bar__content {
    min-width: 180px;
    gap: 8px;
  }
}
@media (max-width: 991.98px) {
  :root {
    --hero-info-banner-h: 0px;
  }
  .hero-desktop-wrap,
  .hero-section,
  .hero-scroll-bar {
    display: none;
  }
}
.hero-mobile {
  display: none;
  position: relative;
  background: #000;
  overflow: hidden;
  isolation: isolate;
  height: 78vh;
  min-height: 480px;
  max-height: 760px;
}
.hero-mobile .hero-mobile__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-mobile .hero-mobile__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) contrast(1.05);
  transform: scale(1.05);
  opacity: 0;
  transition: opacity 0.55s ease, transform 1.1s ease, filter 0.6s ease;
  will-change: opacity, transform;
}
.hero-mobile .hero-mobile__video[data-hero-video="about"] {
  object-position: center;
}
.hero-mobile .hero-mobile__video[data-hero-video="shop"] {
  object-position: center;
}
.hero-mobile .hero-mobile__video.is-active {
  opacity: 1;
  transform: scale(1.075);
}
.hero-mobile .hero-mobile__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(60% 60% at 30% 20%, rgba(111, 35, 255, 0.2), rgba(0, 0, 0, 0) 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.44) 45%, rgba(0, 0, 0, 0.78) 100%);
}
.hero-mobile .hero-mobile__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: clamp(90px, 14vh, 140px);
  padding-bottom: 28px;
}
.hero-mobile .hero-mobile__switch {
  position: relative;
  width: min(420px, 100%);
  margin: 14px auto 0;
  display: flex;
  gap: 0;
  padding: 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.hero-mobile .hero-mobile__switch::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 6px;
  background: linear-gradient(135deg, #6A39FF99 0%, #5324CD99 100%);
  border: 1px solid rgba(111, 35, 255, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: translateX(0%);
  transition: transform 0.28s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.hero-mobile[data-active="about"] .hero-mobile__switch::after {
  transform: translateX(100%);
}
.hero-mobile .hero-mobile__tab {
  position: relative;
  z-index: 1;
  flex: 1;
  background: transparent;
  border: 0;
  border-radius: 6px;
  padding: 12px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1;
  transition: color 0.25s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.hero-mobile .hero-mobile__tab.is-active {
  color: #fff;
}
.hero-mobile .hero-mobile__tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(111, 35, 255, 0.35);
}
.hero-mobile .hero-mobile__panels {
  display: grid;
  width: min(520px, 100%);
  margin: auto;
}
.hero-mobile .hero-mobile__panel {
  grid-area: 1 / 1;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.hero-mobile .hero-mobile__panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-mobile .hero-mobile__headline {
  margin: 0 0 25px;
  font-size: clamp(1.95rem, 9vw, 3rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
  color: white;
}
.hero-mobile .hero-mobile__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .hero-section {
    display: none;
  }
  .hero-mobile {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .hero-mobile {
    height: 76vh;
    min-height: 460px;
  }
  .hero-mobile .hero-mobile__inner {
    padding-top: clamp(86px, 13vh, 128px);
    padding-bottom: 22px;
  }
  .hero-mobile .hero-mobile__switch {
    margin-top: 12px;
    max-width: 320px;
  }
  .hero-mobile .hero-mobile__headline {
    font-size: clamp(1.75rem, 9.5vw, 2.6rem);
    color: white;
  }
  .hero-mobile .hero-mobile__panels {
    display: grid;
    width: min(520px, 100%);
    margin: 0 auto 30% auto;
  }
}
.about-products {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 75px 0;
  background: url('../../image/about-bg-main.png') center center / cover no-repeat;
}
.about-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(111, 35, 255, 0.28) 0%, transparent 28%), radial-gradient(circle at 24% 75%, rgba(255, 115, 0, 0.18) 0%, transparent 24%), radial-gradient(circle at 82% 18%, rgba(146, 65, 255, 0.22) 0%, transparent 24%), radial-gradient(circle at 86% 72%, rgba(255, 141, 26, 0.22) 0%, transparent 26%);
  pointer-events: none;
  z-index: 1;
}
.about-products::after {
  content: '';
  position: absolute;
  inset: -6%;
  background: url('../../image/about-bg-smoke.png') center center / cover no-repeat;
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.about-products .container {
  position: relative;
  z-index: 2;
}
.about-products .row {
  min-height: 410px;
}
.about-products .about-left h2 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  max-width: 620px;
}
.about-products .about-left p {
  margin: 0;
  max-width: 290px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
.about-products .about-left .d-flex {
  margin-top: 38px !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px !important;
}
.about-products .product-slider-fade {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  grid-template-rows: auto 1fr auto;
  align-items: center;
  background: none;
}
.about-products .product-slider-fade .slider-title {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  text-align: center;
  margin: 0 0 28px;
  color: #fff;
  font-size: 34px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.about-products .product-slider-fade .slider-title span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}
.about-products .product-slider-fade .product-stage {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  min-width: 430px;
  height: 320px;
  margin: 0 auto;
  perspective: 1100px;
  transform-style: preserve-3d;
  will-change: transform;
  --p-tx: 0px;
  --p-ty: 0px;
  --p-rx: 0deg;
  --p-ry: 0deg;
  --p-x: 50%;
  --p-y: 40%;
  --p-scale: 1;
}
.about-products .product-slider-fade .product-stage:hover {
  --p-scale: 1.02;
}
.about-products .product-slider-fade .product-stage .product-stage-bg {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 18px;
  bottom: 14px;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 42%, rgba(111, 35, 255, 0.1) 0%, transparent 40%), radial-gradient(circle at 50% 78%, rgba(255, 141, 76, 0.07) 0%, transparent 32%), linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 35px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.about-products .product-slider-fade .product-stage .product-stage-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.035) 0%, transparent 62%);
  opacity: 1;
}
.about-products .product-slider-fade .product-stage .product-stage-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--p-x) var(--p-y), rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 26%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.9;
}
.about-products .product-slider-fade .product-stage .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.about-products .product-slider-fade .product-stage .slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.about-products .product-slider-fade .product-stage .slide a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transform-style: preserve-3d;
  will-change: transform;
  isolation: isolate;
}
.about-products .product-slider-fade .product-stage .slide a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(122, 74, 255, 0.16) 0%, rgba(122, 74, 255, 0.1) 24%, rgba(255, 146, 83, 0.07) 44%, rgba(255, 255, 255, 0.025) 58%, transparent 76%);
  filter: blur(34px);
  opacity: 0.75;
  mix-blend-mode: screen;
  transition: transform 0.45s cubic-bezier(0.22, 0.7, 0.2, 1), opacity 0.45s cubic-bezier(0.22, 0.7, 0.2, 1), filter 0.45s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.about-products .product-slider-fade .product-stage .slide a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 150px;
  height: 24px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0) 82%);
  filter: blur(10px);
  opacity: 0.82;
  transition: transform 0.45s cubic-bezier(0.22, 0.7, 0.2, 1), opacity 0.45s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.about-products .product-slider-fade .product-stage .slide a img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  max-height: 260px;
  transform: translateY(0) scale(1);
  opacity: 0.96;
  filter: saturate(0.86) contrast(0.94) brightness(0.98) drop-shadow(0 8px 10px rgba(0, 0, 0, 0.16)) drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18)) drop-shadow(0 0 20px rgba(124, 80, 255, 0.06));
  transition: transform 0.45s cubic-bezier(0.22, 0.7, 0.2, 1), filter 0.45s cubic-bezier(0.22, 0.7, 0.2, 1), opacity 0.45s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.about-products .product-slider-fade .product-stage .slide a.is-active img,
.about-products .product-slider-fade .product-stage .slide a:hover img {
  transform: translateY(-2px) scale(1.02);
  opacity: 0.985;
  filter: saturate(0.92) contrast(0.96) brightness(0.99) drop-shadow(0 10px 12px rgba(0, 0, 0, 0.18)) drop-shadow(0 20px 32px rgba(0, 0, 0, 0.22)) drop-shadow(0 0 24px rgba(124, 80, 255, 0.08));
}
.about-products .product-slider-fade .product-stage .slide a.is-active a,
.about-products .product-slider-fade .product-stage .slide a:hover a {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -36px 90px rgba(0, 0, 0, 0.22), 0 24px 56px rgba(0, 0, 0, 0.3);
}
.about-products .product-slider-fade .product-stage .slide a.is-active a::before,
.about-products .product-slider-fade .product-stage .slide a:hover a::before {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1.05);
  filter: blur(38px);
}
.about-products .product-slider-fade .product-stage .slide a.is-active a::after,
.about-products .product-slider-fade .product-stage .slide a:hover a::after {
  opacity: 0.92;
  transform: translateX(-50%) scale(1.04);
}
.about-products .product-slider-fade .product-stage .slide a.is-active img,
.about-products .product-slider-fade .product-stage .slide a:hover img {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.18)) drop-shadow(0 20px 32px rgba(0, 0, 0, 0.22)) drop-shadow(0 0 26px rgba(124, 80, 255, 0.1));
}
.about-products .product-slider-fade .product-stage .slide a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 30px;
}
.about-products .product-slider-fade .product-stage .slide a > img {
  position: relative;
  z-index: 2;
}
@media (hover: hover) {
  .about-products .product-slider-fade .product-stage .slide.is-active a {
    animation: bestsellerFloat 7.5s ease-in-out infinite;
  }
}
.about-products .product-slider-fade .product-stage .slide.is-active:hover a::before,
.about-products .product-slider-fade .product-stage .slide.is-active a:hover::before {
  transform: translate(-50%, -52%) scale(1.04);
  opacity: 1;
  filter: blur(32px);
}
.about-products .product-slider-fade .product-stage .slide.is-active:hover a::after,
.about-products .product-slider-fade .product-stage .slide.is-active a:hover::after {
  transform: translateX(-50%) scale(1.05);
  opacity: 1;
}
.about-products .product-slider-fade .product-stage .slide.is-active:hover img,
.about-products .product-slider-fade .product-stage .slide.is-active a:hover img {
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.36)) drop-shadow(0 30px 68px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 22px rgba(132, 76, 255, 0.16));
}
.about-products .product-slider-fade .slider-nav {
  align-self: center;
  background: transparent;
  border: 0;
  font-size: 0;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  width: 130px;
  height: 34px;
  padding: 0;
  cursor: pointer;
  opacity: 0.78;
  transition: opacity 0.25s ease, color 0.35s ease;
  color: #fff;
}
.about-products .product-slider-fade .slider-nav::before {
  transition: color 0.35s ease, transform 0.35s ease;
}
.about-products .product-slider-fade .slider-nav::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 130px;
  height: 1px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.45)), linear-gradient(#ffffff, #ffffff);
  background-repeat: no-repeat;
  background-size: 100% 100%, 0% 100%;
  background-position: 0 0, 0 0;
  transition: background-size 0.42s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.about-products .product-slider-fade .slider-nav:hover,
.about-products .product-slider-fade .slider-nav:focus-visible {
  opacity: 1;
  color: white;
}
.about-products .product-slider-fade .slider-nav:hover::after,
.about-products .product-slider-fade .slider-nav:focus-visible::after {
  background-size: 100% 100%, 100% 100%;
}
.about-products .product-slider-fade .slider-nav.prev {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
  margin-right: 25px;
}
.about-products .product-slider-fade .slider-nav.prev::before {
  content: 'Previous';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: inherit;
}
.about-products .product-slider-fade .slider-nav.prev::after {
  right: 0;
  transform: translateY(13px);
  background-position: 0 0, 100% 0;
}
.about-products .product-slider-fade .slider-nav.prev:hover::before,
.about-products .product-slider-fade .slider-nav.prev:focus-visible::before {
  transform: translateX(-2px);
}
.about-products .product-slider-fade .slider-nav.next {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
  margin-left: 25px;
}
.about-products .product-slider-fade .slider-nav.next::before {
  content: 'Next';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: inherit;
}
.about-products .product-slider-fade .slider-nav.next::after {
  left: 0;
  transform: translateY(13px);
  background-position: 0 0, 0 0;
}
.about-products .product-slider-fade .slider-nav.next:hover::before,
.about-products .product-slider-fade .slider-nav.next:focus-visible::before {
  transform: translateX(2px);
}
.about-products .product-slider-fade .product-caption {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin-top: 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s cubic-bezier(0.22, 0.7, 0.2, 1), transform 0.45s cubic-bezier(0.22, 0.7, 0.2, 1);
}
.about-products .product-slider-fade .product-caption a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}
.about-products .product-slider-fade .product-caption a:hover {
  color: white;
}
.about-products .product-slider-fade .product-caption.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about-products .product-slider-fade .product-caption span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
@keyframes bestsellerFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-products .product-stage:hover {
    --p-scale: 1;
  }
  .about-products .product-stage .slide.is-active a {
    animation: none;
  }
  .about-products .product-stage img {
    transition: none;
  }
  .about-products .slider-nav::before,
  .about-products .slider-nav::after {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .about-products .about-left h2 {
    font-size: clamp(2.7rem, 3.4vw, 3.8rem);
  }
  .about-products .product-slider-fade .product-stage {
    width: 380px;
    min-width: 380px;
    height: 300px;
  }
  .about-products .product-slider-fade .slider-nav {
    width: 110px;
  }
  .about-products .product-slider-fade .slider-nav::after {
    width: 78px;
  }
  .about-products .product-slider-fade .slider-nav.prev {
    margin-right: 26px;
  }
  .about-products .product-slider-fade .slider-nav.next {
    margin-left: 26px;
  }
}
@media (max-width: 1199.98px) {
  .about-products {
    padding: 90px 0;
  }
  .about-products .about-left {
    text-align: center;
  }
  .about-products .about-left h2 {
    max-width: 100%;
  }
  .about-products .about-left p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-products .about-left .d-flex {
    justify-content: center;
  }
  .about-products .product-slider-fade {
    margin-top: 24px;
    min-height: 420px;
  }
  .about-products .product-slider-fade .slider-nav {
    width: 90px;
  }
  .about-products .product-slider-fade .slider-nav::before {
    font-size: 11px !important;
  }
  .about-products .product-slider-fade .slider-nav::after {
    width: 64px;
  }
  .about-products .product-slider-fade .product-stage {
    width: 340px;
    min-width: 340px;
    height: 280px;
  }
  .about-products .product-slider-fade .product-stage img {
    max-width: 250px;
    max-height: 250px;
  }
}
@media (max-width: 991.98px) {
  .about-products {
    padding: 72px 0;
  }
  .about-products .row {
    min-height: auto;
  }
  .about-products .about-left {
    margin-bottom: 18px;
    text-align: center;
  }
  .about-products .about-left p {
    margin-left: auto;
    margin-right: auto;
  }
  .about-products .about-left .d-flex {
    justify-content: center;
  }
  .about-products .product-slider-fade {
    min-height: auto;
    row-gap: 16px;
    grid-template-columns: 92px minmax(0, 1fr) 92px;
    grid-template-rows: auto auto auto;
    align-items: center;
  }
  .about-products .product-slider-fade .slider-title {
    grid-column: 1 / 4;
    grid-row: 1;
    margin-bottom: 4px;
  }
  .about-products .product-slider-fade .slider-nav {
    display: block;
    width: 92px;
    height: 44px;
    margin: 0;
    align-self: center;
  }
  .about-products .product-slider-fade .slider-nav::after {
    width: 72px;
  }
  .about-products .product-slider-fade .slider-nav::before {
    font-size: 11px !important;
    top: 4px;
  }
  .about-products .product-slider-fade .slider-nav.prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
  .about-products .product-slider-fade .slider-nav.prev::before {
    right: auto;
    left: 0;
    text-align: left;
  }
  .about-products .product-slider-fade .slider-nav.prev::after {
    right: auto;
    left: 0;
    transform: translateY(17px);
  }
  .about-products .product-slider-fade .slider-nav.next {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }
  .about-products .product-slider-fade .slider-nav.next::before {
    left: auto;
    right: 0;
    text-align: right;
  }
  .about-products .product-slider-fade .slider-nav.next::after {
    left: auto;
    right: 0;
    transform: translateY(17px);
  }
  .about-products .product-slider-fade .product-stage {
    grid-column: 2;
    grid-row: 2;
    width: min(100%, 360px);
    min-width: 0;
    height: 300px;
    justify-self: center;
  }
  .about-products .product-slider-fade .product-stage img {
    max-width: 250px;
    max-height: 250px;
  }
  .about-products .product-slider-fade .product-caption {
    grid-column: 1 / 4;
    grid-row: 3;
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .about-products {
    padding: 58px 0;
  }
  .about-products .about-left h2 {
    font-size: 2.45rem;
  }
  .about-products .about-left p {
    font-size: 17px;
    line-height: 1.55;
  }
  .about-products .about-left .d-flex {
    flex-direction: column;
    align-items: stretch;
  }
  .about-products .product-slider-fade {
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    row-gap: 14px;
  }
  .about-products .product-slider-fade .slider-title {
    font-size: 29px;
  }
  .about-products .product-slider-fade .slider-title span {
    font-size: 18px;
  }
  .about-products .product-slider-fade .slider-nav {
    width: 72px;
    height: 42px;
  }
  .about-products .product-slider-fade .slider-nav::before {
    font-size: 10px !important;
    letter-spacing: 1.3px;
    top: 6px;
  }
  .about-products .product-slider-fade .slider-nav::after {
    width: 56px;
    transform: translateY(18px) !important;
  }
  .about-products .product-slider-fade .product-stage {
    height: 250px;
  }
  .about-products .product-slider-fade .product-stage .product-stage-bg {
    left: 8px;
    right: 8px;
    top: 10px;
    bottom: 8px;
    border-radius: 22px;
  }
  .about-products .product-slider-fade .product-stage img {
    max-width: 220px;
    max-height: 220px;
  }
  .about-products .product-slider-fade .product-caption {
    font-size: 17px;
  }
  .about-products .product-slider-fade .product-caption span {
    font-size: 12px;
  }
}
.ambient-video-block {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.ambient-video-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.14) 100%);
  pointer-events: none;
  z-index: 4;
}
.ambient-video-block .ambient-video__poster,
.ambient-video-block .ambient-video__media,
.ambient-video-block .ambient-video__overlay,
.ambient-video-block .ambient-video__glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ambient-video-block .ambient-video__poster,
.ambient-video-block .ambient-video__media {
  object-fit: cover;
  transform: scale(1.03);
  transform-origin: center center;
}
.ambient-video-block .ambient-video__poster {
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.ambient-video-block .ambient-video__media {
  z-index: 2;
  opacity: 0;
  filter: saturate(1.02) contrast(1.04) brightness(0.88);
  transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 18s ease-out;
  will-change: opacity, transform;
}
.ambient-video-block.is-video-ready .ambient-video__media {
  opacity: 0.78;
  transform: scale(1.055);
}
.ambient-video-block.is-video-ready .ambient-video__poster {
  opacity: 0.42;
}
.ambient-video-block .ambient-video__overlay {
  z-index: 3;
  mix-blend-mode: screen;
  opacity: 0.9;
}
.ambient-video-block .ambient-video__glow {
  z-index: 3;
  opacity: 0.65;
  filter: blur(60px);
  animation: ambientGlowShift 18s ease-in-out infinite alternate;
}
.ambient-video-block--footer .ambient-video__poster {
  background-image: url('../../image/footer-bg.png');
}
.ambient-video-block--footer .ambient-video__overlay {
  background: radial-gradient(circle at 7% 88%, rgba(112, 54, 255, 0.3) 0%, transparent 22%), radial-gradient(circle at 92% 85%, rgba(219, 123, 48, 0.28) 0%, transparent 25%), linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.3));
}
.ambient-video-block--footer .ambient-video__glow {
  background: radial-gradient(circle at 6% 90%, rgba(117, 68, 255, 0.2) 0%, transparent 24%), radial-gradient(circle at 95% 88%, rgba(226, 130, 52, 0.18) 0%, transparent 28%);
}
.ambient-video-block--subheader .ambient-video__poster {
  background-image: url('../../image/subheader-bg.png');
  background-position: center bottom;
}
.ambient-video-block--subheader .ambient-video__media {
  object-position: center bottom;
}
.ambient-video-block--subheader .ambient-video__overlay {
  background: radial-gradient(circle at 12% 50%, rgba(128, 54, 255, 0.32) 0%, transparent 28%), radial-gradient(circle at 88% 40%, rgba(232, 154, 90, 0.28) 0%, transparent 28%), linear-gradient(90deg, rgba(17, 6, 30, 0.46), rgba(37, 11, 44, 0.22) 40%, rgba(15, 8, 18, 0.18) 100%);
}
.ambient-video-block--subheader .ambient-video__glow {
  background: radial-gradient(circle at 18% 48%, rgba(132, 61, 255, 0.18) 0%, transparent 24%), radial-gradient(circle at 84% 54%, rgba(220, 142, 79, 0.14) 0%, transparent 24%);
}
.ambient-video-block--about-products .ambient-video__poster {
  background-image: url('../../image/about-bg-main.png');
}
.ambient-video-block--about-products .ambient-video__overlay {
  background: radial-gradient(circle at 14% 18%, rgba(111, 35, 255, 0.28) 0%, transparent 24%), radial-gradient(circle at 18% 82%, rgba(223, 119, 48, 0.2) 0%, transparent 24%), radial-gradient(circle at 84% 20%, rgba(132, 61, 255, 0.22) 0%, transparent 24%), radial-gradient(circle at 88% 80%, rgba(224, 129, 52, 0.2) 0%, transparent 28%), linear-gradient(90deg, rgba(10, 5, 18, 0.38), rgba(10, 5, 18, 0.08) 46%, rgba(10, 5, 18, 0.26) 100%);
}
.ambient-video-block--about-products .ambient-video__glow {
  background: radial-gradient(circle at 18% 16%, rgba(111, 35, 255, 0.16) 0%, transparent 24%), radial-gradient(circle at 90% 76%, rgba(235, 139, 57, 0.14) 0%, transparent 28%);
}
.ambient-video-block--benefits .ambient-video__poster {
  background-image: url('../../image/about-bg-main.png');
  background-position: center center;
}
.ambient-video-block--benefits .ambient-video__media {
  object-position: center center;
  filter: saturate(1.02) contrast(1.04) brightness(0.84);
}
.ambient-video-block--benefits .ambient-video__overlay {
  background: radial-gradient(circle at 12% 16%, rgba(111, 35, 255, 0.24) 0%, transparent 24%), radial-gradient(circle at 22% 78%, rgba(223, 119, 48, 0.18) 0%, transparent 24%), radial-gradient(circle at 86% 22%, rgba(132, 61, 255, 0.2) 0%, transparent 24%), radial-gradient(circle at 88% 78%, rgba(224, 129, 52, 0.18) 0%, transparent 28%), linear-gradient(90deg, rgba(8, 6, 18, 0.34), rgba(12, 8, 24, 0.12) 46%, rgba(10, 7, 16, 0.3) 100%);
}
.ambient-video-block--benefits .ambient-video__glow {
  background: radial-gradient(circle at 16% 18%, rgba(111, 35, 255, 0.15) 0%, transparent 24%), radial-gradient(circle at 88% 76%, rgba(235, 139, 57, 0.13) 0%, transparent 28%);
  opacity: 0.56;
}
.site-footer,
.information-subheader,
.about-products,
.benefits.dark-background {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.site-footer.has-ambient-video {
  background: #050507 !important;
}
.site-footer.has-ambient-video > .container {
  position: relative;
  z-index: 2;
}
.information-subheader {
  background: linear-gradient(90deg, rgba(30, 10, 48, 0.76), rgba(48, 16, 55, 0.44) 48%, rgba(99, 48, 38, 0.26) 100%), url('../../image/subheader-bg.png') center center / cover no-repeat;
}
.information-subheader::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 28%), linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0) 34%);
}
.information-subheader.has-ambient-video {
  background: #150b1d;
}
.information-subheader.has-ambient-video > .container {
  position: relative;
  z-index: 2;
}
.information-subheader.has-ambient-video::before {
  display: none;
}
.about-products.has-ambient-video {
  background: #07060c;
}
.about-products.has-ambient-video > .container {
  position: relative;
  z-index: 2;
}
.about-products.has-ambient-video::before,
.about-products.has-ambient-video::after {
  display: none;
}
.benefits.dark-background.has-ambient-video {
  background: #09070f;
}
.benefits.dark-background.has-ambient-video > .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px), (prefers-reduced-motion: reduce) {
  .ambient-video-block {
    display: none !important;
  }
  .site-footer.has-ambient-video {
    background: url('../../image/footer-bg.png') center / cover no-repeat !important;
  }
  .information-subheader.has-ambient-video {
    background: linear-gradient(90deg, rgba(67, 30, 137, 0.82) 0%, rgba(107, 38, 118, 0.68) 55%, rgba(207, 138, 90, 0.58) 100%), url('../../image/subheader-bg.png') center center / cover no-repeat;
  }
  .about-products.has-ambient-video {
    background: url('../../image/about-bg-main.png') center center / cover no-repeat;
  }
  .benefits.dark-background.has-ambient-video {
    background: url('../../image/about-bg-main.png') center center / cover no-repeat;
  }
}
@keyframes ambientGlowShift {
  0% {
    transform: translate3d(-1%, 0, 0) scale(1);
    opacity: 0.48;
  }
  50% {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.04);
    opacity: 0.68;
  }
  100% {
    transform: translate3d(2.5%, 1%, 0) scale(1.08);
    opacity: 0.54;
  }
}
.home-latest-products {
  background: #f6f6f8;
}
.home-latest-products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.home-latest-products__intro {
  max-width: 760px;
}
.home-latest-products__intro h2 {
  margin: 0 0 14px;
  font-size: 36px;
}
.home-latest-products__intro p {
  margin: 0;
  max-width: 720px;
  color: rgba(41, 48, 63, 0.72);
}
.home-latest-products__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #5324CD;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.home-latest-products__eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: rgba(83, 36, 205, 0.4);
}
.home-latest-products__actions {
  flex: 0 0 auto;
}
.home-latest-products .product-list {
  margin: 0;
}
.home-latest-products__grid .grid__cards {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .home-latest-products__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .home-latest-products__head {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .home-latest-products__actions {
    width: 100%;
  }
  .home-latest-products__actions .btn {
    width: 100%;
  }
}
#information-information.information-page {
  padding-bottom: 88px;
  /* --- About Us premium tweaks (keeps project radius = @radius-md) --- */
}
#information-information.information-page section {
  margin-top: 60px;
  margin-bottom: 60px;
}
#information-information.information-page #content {
  width: 100%;
}
#information-information.information-page h1,
#information-information.information-page h2,
#information-information.information-page h3,
#information-information.information-page h4,
#information-information.information-page h5 {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
}
#information-information.information-page h1 {
  font-size: clamp(2.25rem, 2.45vw, 3.4rem);
  line-height: 1.03;
  margin-bottom: 14px;
}
#information-information.information-page h2 {
  font-size: clamp(1.9rem, 2vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 16px;
}
#information-information.information-page h3 {
  font-size: clamp(1.3rem, 1.35vw, 1.8rem);
  line-height: 1.26;
}
#information-information.information-page h4 {
  font-size: 1.2rem;
  line-height: 1.45;
}
#information-information.information-page .product-card .card__title {
  font-size: 16px;
}
#information-information.information-page h1 small,
#information-information.information-page h2 small,
#information-information.information-page .h4 {
  display: block;
  margin-top: 8px;
  color: #666276;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
}
#information-information.information-page p,
#information-information.information-page li {
  font-family: 'Inter', sans-serif;
  line-height: 1.82;
  font-size: 14px;
}
#information-information.information-page strong {
  color: #29303f;
}
#information-information.information-page ul:not(.breadcrumb):not(.list-inline):not(.information-subheader__meta) {
  margin: 18px 0 0;
  padding-left: 1.1rem;
}
#information-information.information-page ul:not(.breadcrumb):not(.list-inline):not(.information-subheader__meta) li {
  margin-bottom: 8px;
}
#information-information.information-page hr {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(41, 48, 63, 0.08);
  opacity: 1;
}
#information-information.information-page .button,
#information-information.information-page .detail,
#information-information.information-page .violet.with-arrow {
  border-radius: 6px;
}
#information-information.information-page .promo-text-img-on-side .row {
  align-items: center;
  --bs-gutter-x: 4.5rem;
  --bs-gutter-y: 2rem;
}
#information-information.information-page .promo-text-img-on-side .image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#information-information.information-page .img-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}
#information-information.information-page .img-wrapper img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.14);
}
#information-information.information-page .text-box,
#information-information.information-page .text-box-with-bg .box {
  height: 100%;
  padding: 32px 30px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
#information-information.information-page .text-box:hover,
#information-information.information-page .text-box-with-bg .box:hover {
  transform: translateY(-3px);
  border-color: rgba(83, 36, 205, 0.24);
  box-shadow: 0 22px 48px rgba(27, 18, 48, 0.1);
}
#information-information.information-page .text-box h2,
#information-information.information-page .text-box-with-bg .box h2 {
  font-size: clamp(1.35rem, 1.4vw, 1.95rem);
  margin-bottom: 12px;
}
#information-information.information-page .text-box p:last-child,
#information-information.information-page .text-box-with-bg .box p:last-child {
  margin-bottom: 0;
}
#information-information.information-page .info-duo-boxes h2.mb-5 {
  margin-bottom: 30px;
}
#information-information.information-page .info-duo-boxes .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
#information-information.information-page .info-duo-boxes .swiper-slide {
  width: auto;
}
#information-information.information-page .info-section-heading {
  margin-bottom: 26px;
}
#information-information.information-page .info-section-heading .col-12 {
  display: block;
}
#information-information.information-page .info-section-heading h2 {
  max-width: none;
  width: 100%;
  text-align: center;
}
#information-information.information-page .seo-text {
  margin: 30px auto;
  padding: 34px 36px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
#information-information.information-page .info-hero__title {
  margin-bottom: 12px;
}
#information-information.information-page .info-hero__title small {
  max-width: 42ch;
}
#information-information.information-page .info-tags {
  gap: 0.5rem;
}
#information-information.information-page .info-tags .info-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #fff;
  color: #29303f;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  white-space: nowrap;
}
#information-information.information-page .info-proof-bar {
  margin-top: -26px;
  /* visually tucks under hero without breaking layout */
}
#information-information.information-page .proof-card {
  height: 100%;
  padding: 18px 18px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
#information-information.information-page .proof-card__value {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #29303f;
  margin-bottom: 4px;
}
#information-information.information-page .proof-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #4b5565;
  line-height: 1.35;
}
#information-information.information-page .info-cta .btn {
  min-width: 160px;
}
#information-information.information-page .info-cta-strip {
  margin: 0 auto;
  max-width: 1040px;
}
#information-information.information-page .info-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 18px 18px;
  border: 1px solid rgba(83, 36, 205, 0.18);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(83, 36, 205, 0.09) 0%, #fff 55%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
#information-information.information-page .info-cta-strip__text {
  color: #29303f;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
}
#information-information.information-page .info-cta-strip__text strong {
  font-family: 'Satoshi', sans-serif;
}
#information-information.information-page .info-cta-strip__actions {
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#information-information.information-page .info-section-subtitle {
  margin-top: 10px;
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
#information-information.information-page .brands-list.customers img {
  width: auto;
  opacity: 0.92;
  filter: grayscale(100%);
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
#information-information.information-page .brands-list.customers > div:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-1px);
}
#information-information.information-page .info-checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#information-information.information-page .info-checklist li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
#information-information.information-page .info-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(83, 36, 205, 0.9);
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.14);
}
#information-information.information-page .info-final-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  #information-information.information-page .info-proof-bar {
    margin-top: 0;
  }
  #information-information.information-page .info-cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  #information-information.information-page .promo-text-img-on-side .row {
    --bs-gutter-x: 1.75rem;
  }
  #information-information.information-page .info-duo-boxes .swiper-wrapper,
  #information-information.information-page .brands-list.customers {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  #information-information.information-page {
    padding-bottom: 62px;
  }
  #information-information.information-page .info-cta .btn {
    width: 100%;
  }
  #information-information.information-page .info-cta .list-inline-item {
    display: block;
    margin: 0 0 0.6rem 0;
  }
  #information-information.information-page section {
    margin-bottom: 48px;
  }
  #information-information.information-page .promo-text-img-on-side .row {
    --bs-gutter-x: 1rem;
  }
  #information-information.information-page .image {
    justify-content: center;
  }
  #information-information.information-page .img-wrapper::after {
    right: -10px;
    bottom: -10px;
  }
  #information-information.information-page .info-duo-boxes .swiper-wrapper,
  #information-information.information-page .brands-list.customers {
    grid-template-columns: 1fr;
  }
  #information-information.information-page .seo-text {
    padding: 24px 20px;
  }
}
/* not found */
#error-not-found.error-not-found-page {
  padding-top: 10px;
  padding-bottom: 72px;
}
#error-not-found.error-not-found-page #content {
  width: 100%;
}
.error-404-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbfe 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
.error-404-shell:before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 36, 205, 0.12) 0%, rgba(83, 36, 205, 0) 72%);
  pointer-events: none;
}
.error-404-shell:after {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 57, 255, 0.08) 0%, rgba(106, 57, 255, 0) 72%);
  pointer-events: none;
}
.error-404-copy,
.error-404-visual {
  position: relative;
  z-index: 1;
}
.error-404-copy {
  max-width: 620px;
}
.error-404-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(83, 36, 205, 0.14);
  border-radius: 6px;
  background: rgba(83, 36, 205, 0.04);
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.error-404-title {
  margin: 18px 0 18px;
  color: #29303f;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.error-404-title span {
  display: block;
  margin-bottom: 10px;
  color: #5324CD;
}
.error-404-text {
  max-width: 560px;
  margin: 0;
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.85;
}
.error-404-actions {
  margin-top: 30px;
}
.error-404-actions .btn {
  min-width: 180px;
}
.error-404-note {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(41, 48, 63, 0.62);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
}
.error-404-stage {
  height: 100%;
  padding: 18px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  box-shadow: 0 16px 42px rgba(16, 18, 32, 0.08);
}
.error-404-stage__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.error-404-stage__label,
.error-404-stage__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.error-404-stage__label {
  border: 1px solid rgba(41, 48, 63, 0.1);
  background: #ffffff;
  color: rgba(41, 48, 63, 0.72);
}
.error-404-stage__badge {
  background: rgba(83, 36, 205, 0.1);
  color: #5324CD;
}
.error-404-stage__media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 34%), linear-gradient(145deg, #171829 0%, #2b215f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.error-404-stage__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(118, 86, 255, 0.34) 0%, rgba(118, 86, 255, 0.08) 42%, rgba(118, 86, 255, 0) 72%);
}
.error-404-stage__frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 208px;
  height: 208px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.03), 0 0 0 34px rgba(255, 255, 255, 0.02);
}
.error-404-stage__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  border-radius: 14px;
  transform: translate(-50%, -50%) rotate(16deg);
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.12) 34%, rgba(255, 255, 255, 0) 54%), linear-gradient(145deg, #8e73ff 0%, #5d34f4 62%, #2f1c7a 100%);
  box-shadow: 0 20px 34px rgba(8, 10, 24, 0.34), inset -8px -8px 18px rgba(23, 14, 67, 0.24), inset 8px 8px 18px rgba(255, 255, 255, 0.1);
}
.error-404-stage__chip {
  position: absolute;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.error-404-stage__chip.error-404-stage__chip--left {
  left: 16px;
}
.error-404-stage__chip.error-404-stage__chip--right {
  right: 16px;
  top: 16px;
  bottom: auto;
}
.error-404-stage__title {
  margin: 0 0 10px;
  color: #29303f;
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: 0.03em;
}
.error-404-stage__text {
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 991.98px) {
  #error-not-found.error-not-found-page {
    padding-bottom: 56px;
  }
  .error-404-copy {
    margin-left: auto;
    margin-right: auto;
  }
  .error-404-note {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767.98px) {
  #error-not-found.error-not-found-page {
    padding-bottom: 40px;
  }
  #error-not-found.error-not-found-page .breadcrumb {
    margin: 14px 0 20px;
  }
  .error-404-shell {
    padding: 24px 18px;
  }
  .error-404-title {
    margin: 16px 0 14px;
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
  .error-404-text {
    font-size: 15px;
    line-height: 1.76;
  }
  .error-404-actions {
    margin-top: 24px;
  }
  .error-404-actions .btn {
    width: 100%;
    max-width: none;
  }
  .error-404-note {
    margin-top: 16px;
    font-size: 13px;
  }
  .error-404-stage {
    padding: 16px;
  }
  .error-404-stage__media {
    min-height: 220px;
  }
  .error-404-stage__glow {
    width: 200px;
    height: 200px;
  }
  .error-404-stage__frame {
    width: 172px;
    height: 172px;
  }
  .error-404-stage__core {
    width: 92px;
    height: 92px;
  }
  .error-404-stage__title {
    font-size: 22px;
  }
}
#information-information.information-page > .brands-list {
  margin-bottom: 32px;
}
#information-information.information-page > .brands-list h2 {
  margin-bottom: 0;
  text-align: center;
}
#information-information.information-page .manufactures-promo .row,
#information-information.information-page .manufactures-promo .col-12 {
  width: 100%;
}
#information-information.information-page .manufactures-promo .brands-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
#information-information.information-page .manufactures-promo .brands-list.customers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}
#information-information.information-page .manufactures-promo .brands-list.customers .brand-item {
  background: #fff;
}
#information-information.information-page .manufactures-promo .brands-list.customers > div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  margin: auto;
}
#information-information.information-page .manufactures-promo .brands-list.customers > div img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
  background: #fff;
}
@media (min-width: 768px) {
  #information-information.information-page .manufactures-promo .brands-list.customers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  #information-information.information-page .manufactures-promo .brands-list.customers > div {
    min-height: 74px;
  }
}
#information-information.information-page .manufactures-promo .brands-list > a {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
#information-information.information-page .manufactures-promo .brands-list > a:hover {
  transform: translateY(-2px);
  border-color: rgba(83, 36, 205, 0.22);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
#information-information.information-page .manufactures-promo .brands-list > a img {
  width: auto;
  max-width: 100%;
  max-height: 65px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.94;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
#information-information.information-page .manufactures-promo .brands-list > a:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}
#information-information.information-page .text-border-boxes .row {
  --bs-gutter-x: 1.5rem;
}
#information-information.information-page .text-border-boxes .text-box.bordered.br-20 {
  padding: 30px 28px;
  border-radius: 6px;
  box-shadow: none;
}
#information-information.information-page .text-border-boxes .text-box h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 1.35vw, 1.9rem);
  line-height: 1.2;
}
#information-information.information-page .text-border-boxes .text-box .h4 {
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.55;
}
#information-information.information-page .info-contact-section {
  margin-bottom: 56px;
}
#information-information.information-page .info-contact-section .row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 2rem;
  align-items: center;
}
#information-information.information-page .info-contact-section .content h2 {
  max-width: 12ch;
  margin-bottom: 12px;
}
#information-information.information-page .info-contact-section .content h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 1.1vw, 1.45rem);
}
#information-information.information-page .info-contact-section .content > p {
  margin-bottom: 18px;
}
#information-information.information-page .info-contact-section .form .form-group.input {
  margin-bottom: 12px !important;
}
#information-information.information-page .info-contact-section .form .form-control {
  min-height: 48px;
  border-radius: 6px;
}
#information-information.information-page .info-contact-section .form textarea.form-control {
  min-height: 132px;
  resize: vertical;
}
#information-information.information-page .info-contact-section .form .buttons {
  margin-top: 18px;
}
#information-information.information-page .info-contact-section .form .buttons .btn {
  min-width: 164px;
}
#information-information.information-page .info-contact-section .image {
  justify-content: flex-end;
}
#information-information.information-page .info-contact-section .img-wrapper {
  max-width: 560px;
  margin-left: auto;
}
#information-information.information-page .info-contact-section .img-wrapper::after {
  display: none;
}
#information-information.information-page .info-contact-section .img-wrapper img.br-20 {
  border-radius: 6px;
}
#information-information.information-page .seo-text {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
#information-information.information-page .seo-text .row {
  justify-content: center;
}
#information-information.information-page .seo-text .col-12 {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}
#information-information.information-page .seo-text h4 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.3;
}
#information-information.information-page .seo-text p {
  font-size: 14px;
  line-height: 1.78;
}
@media (max-width: 1199.98px) {
  #information-information.information-page .manufactures-promo .brands-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  #information-information.information-page .info-brand-slider .swiper-button-prev {
    left: 6px;
  }
  #information-information.information-page .info-brand-slider .swiper-button-next {
    right: 6px;
  }
}
@media (max-width: 991.98px) {
  #information-information.information-page section {
    margin-bottom: 48px;
  }
  #information-information.information-page .manufactures-promo .brands-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  #information-information.information-page .info-brand-slider {
    margin-bottom: 56px;
  }
  #information-information.information-page .info-brand-slider .banner-wrapper.br-25 {
    min-height: 300px;
  }
  #information-information.information-page .info-contact-section .row {
    --bs-gutter-x: 1.5rem;
  }
  #information-information.information-page .info-contact-section .content h2 {
    max-width: none;
  }
  #information-information.information-page .info-contact-section .image {
    justify-content: center;
  }
  #information-information.information-page .info-contact-section .img-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  #information-information.information-page > .brands-list {
    margin-bottom: 24px;
  }
  #information-information.information-page .manufactures-promo .brands-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  #information-information.information-page .manufactures-promo .brands-list > a {
    min-height: 72px;
    padding: 12px;
  }
  #information-information.information-page .manufactures-promo .brands-list > a img {
    max-height: 34px;
  }
  #information-information.information-page .info-brand-slider .banner-wrapper.br-25 {
    min-height: 270px;
  }
  #information-information.information-page .info-brand-slider .banner-content {
    max-width: 100%;
  }
  #information-information.information-page .text-border-boxes .text-box.bordered.br-20 {
    padding: 24px 20px;
  }
  #information-information.information-page .info-contact-section .form .buttons .btn {
    width: 100%;
  }
  #information-information.information-page .seo-text h4 {
    font-size: 1.2rem;
  }
}
.info-brand-slider,
.promo-slider {
  position: relative;
  margin-bottom: 72px;
}
.info-brand-slider .container-fluid.container-xl.swiper,
.promo-slider .container-fluid.container-xl.swiper {
  overflow: hidden;
  padding: 0 2px;
}
.info-brand-slider .swiper-wrapper,
.promo-slider .swiper-wrapper {
  align-items: stretch;
}
.info-brand-slider .swiper-slide,
.promo-slider .swiper-slide,
.info-brand-slider .slide,
.promo-slider .slide {
  height: auto;
}
.info-brand-slider .banner-wrapper.br-25,
.promo-slider .banner-wrapper.br-25 {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 330px;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  isolation: isolate;
}
.info-brand-slider .banner-wrapper.br-25::before,
.promo-slider .banner-wrapper.br-25::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 12, 20, 0.06) 0%, rgba(14, 12, 20, 0.22) 44%, rgba(14, 12, 20, 0.74) 100%);
  z-index: 0;
}
.info-brand-slider .banner-wrapper.br-25:hover,
.promo-slider .banner-wrapper.br-25:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.14);
}
.info-brand-slider .banner-content,
.promo-slider .banner-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 30px 20px;
}
.info-brand-slider .banner-content .h3,
.promo-slider .banner-content .h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 1.2vw, 1.7rem);
  line-height: 1.15;
  font-family: 'Satoshi', sans-serif;
}
.info-brand-slider .banner-content p,
.promo-slider .banner-content p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
}
.info-brand-slider .banner-content .with-arrow,
.promo-slider .banner-content .with-arrow {
  font-weight: 700;
  text-decoration: none;
}
.info-brand-slider .swiper-button-prev,
.promo-slider .swiper-button-prev,
.info-brand-slider .swiper-button-next,
.promo-slider .swiper-button-next {
  width: 42px;
  height: 42px;
  margin-top: 0;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  color: #5324CD;
  top: 50%;
  transform: translateY(-50%);
}
.info-brand-slider .swiper-button-prev::after,
.promo-slider .swiper-button-prev::after,
.info-brand-slider .swiper-button-next::after,
.promo-slider .swiper-button-next::after {
  font-size: 13px;
  font-weight: 700;
}
.info-brand-slider .swiper-button-prev,
.promo-slider .swiper-button-prev {
  left: -8px;
}
.info-brand-slider .swiper-button-next,
.promo-slider .swiper-button-next {
  right: -8px;
}
/* promo slider ze stareho */
.promo-slider {
  position: relative;
}
@media (max-width: 500px) {
  .promo-slider {
    max-width: 92%;
    left: 4%;
  }
}
.promo-slider .swiper {
  height: 480px;
  max-width: 1320px;
  padding: 0;
}
.promo-slider .slide {
  min-height: 480px;
  position: relative;
}
.promo-slider .slide a.banner-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  transition: all 0.2s linear;
  background-size: cover !important;
}
.promo-slider .slide a.banner-wrapper:hover {
  text-decoration: none;
}
.promo-slider .slide a.banner-wrapper:hover:after {
  transition: all 0.2s linear;
  opacity: 1;
  height: 95%;
}
.promo-slider .slide a.banner-wrapper:after {
  opacity: 0.75;
  content: '';
  position: absolute;
  width: 100%;
  height: 60%;
  border-radius: 25px;
  z-index: 0;
  background: #000000;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.2s linear;
}
.promo-slider .slide a.banner-wrapper .banner-content {
  z-index: 1;
}
.promo-slider .swiper-button-prev {
  left: -25px;
}
.promo-slider .swiper-button-next {
  right: -25px;
}
.product-promo .brand-products-grid .product-card--guest {
  position: relative;
}
.product-promo .brand-products-grid .product-card--guest .card__img {
  position: relative;
  overflow: hidden;
}
.product-promo .brand-products-grid .product-card--guest .card__overlay,
.product-promo .brand-products-grid .product-card--guest .product-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.82) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.product-promo .brand-products-grid .product-card--guest .card__overlay::before,
.product-promo .brand-products-grid .product-card--guest .product-card__overlay::before {
  content: none;
}
.product-promo .brand-products-grid .product-card--guest:hover .card__overlay,
.product-promo .brand-products-grid .product-card--guest:focus-within .card__overlay,
.product-promo .brand-products-grid .product-card--guest:hover .product-card__overlay,
.product-promo .brand-products-grid .product-card--guest:focus-within .product-card__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.product-promo .brand-products-grid .product-card--guest .product-card__view,
.product-promo .brand-products-grid .product-card--guest .product-card__view--overlay {
  position: relative;
  z-index: 5;
  min-width: 144px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .product-promo .brand-products-grid .product-card--guest .card__overlay,
  .product-promo .brand-products-grid .product-card--guest .product-card__overlay {
    display: none;
  }
  .product-promo .brand-products-grid .product-card--guest:hover .card__overlay,
  .product-promo .brand-products-grid .product-card--guest:focus-within .card__overlay,
  .product-promo .brand-products-grid .product-card--guest:hover .product-card__overlay,
  .product-promo .brand-products-grid .product-card--guest:focus-within .product-card__overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
#information-information.information-page .content-split {
  --bs-gutter-x: clamp(1.5rem, 4vw, 5.5rem);
}
#information-information.information-page .content-split-section--lead {
  padding-top: clamp(10px, 1.4vw, 20px);
}
#information-information.information-page .content-copy {
  max-width: 540px;
}
#information-information.information-page .content-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 2.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
#information-information.information-page .content-copy p {
  margin-bottom: 16px;
  max-width: 52ch;
  color: #474256;
  font-size: 15px;
  line-height: 1.85;
}
#information-information.information-page .content-copy p:last-child {
  margin-bottom: 0;
}
#information-information.information-page .content-copy__eyebrow {
  margin: 0 0 22px;
  color: #8b859d;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
#information-information.information-page .content-copy__actions {
  display: flex;
  align-items: center;
  gap: 14px 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}
#information-information.information-page .text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
#information-information.information-page .text-link-arrow img {
  width: 14px;
  height: 14px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
#information-information.information-page .text-link-arrow:hover,
#information-information.information-page .text-link-arrow:focus-visible {
  color: #5324CD;
  text-decoration: none;
}
#information-information.information-page .text-link-arrow:hover img,
#information-information.information-page .text-link-arrow:focus-visible img {
  transform: translateX(3px);
  opacity: 1;
}
#information-information.information-page .media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 6px;
  background: #09101f;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}
#information-information.information-page .media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}
#information-information.information-page .media-frame__media {
  display: block;
  width: 100%;
  height: auto;
}
#information-information.information-page .media-frame--video video {
  aspect-ratio: 16 / 9.3;
  object-fit: cover;
  background: #09101f;
}
#information-information.information-page .media-frame--flush {
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
#information-information.information-page .media-frame--flush::after {
  display: none;
}
#information-information.information-page .media-frame--flush .media-frame__media {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
#information-information.information-page .section-heading {
  margin-bottom: 30px;
}
#information-information.information-page .section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
#information-information.information-page .section-heading--center {
  text-align: center;
}
#information-information.information-page .section-heading__line {
  display: inline-block;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(83, 36, 205, 0) 0%, rgba(83, 36, 205, 0.48) 50%, rgba(83, 36, 205, 0) 100%);
}
#information-information.information-page .content-card {
  height: 100%;
  padding: 28px 28px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbfe 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
#information-information.information-page .content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(83, 36, 205, 0.18);
  box-shadow: 0 26px 48px rgba(15, 23, 42, 0.08);
}
#information-information.information-page .content-card h3 {
  margin-bottom: 6px;
  font-size: clamp(1.16rem, 1.35vw, 1.42rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
#information-information.information-page .content-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 6px;
}
#information-information.information-page .content-card__icon img {
  width: 60px;
  height: 60px;
  display: block;
}
#information-information.information-page .content-card__subtitle {
  margin-bottom: 18px;
  color: #8b859d;
  font-size: 13px;
  line-height: 1.5;
}
#information-information.information-page .content-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#information-information.information-page .content-card__list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  color: #2f2b3b;
  font-size: 14px;
  line-height: 1.72;
}
#information-information.information-page .content-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(83, 36, 205, 0.88);
}
#information-information.information-page .content-card__list li:last-child {
  margin-bottom: 0;
}
#information-information.information-page .content-surface-panel {
  overflow: hidden;
  border: 1px solid rgba(83, 36, 205, 0.1);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(106, 57, 255, 0.07) 0%, #f7f4ff 42%, #ffffff 100%);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.08);
}
#information-information.information-page .content-copy--panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 42px;
  min-height: 100%;
}
#information-information.information-page .content-proof-strip {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}
#information-information.information-page .content-proof-col {
  position: relative;
}
#information-information.information-page .content-proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100%;
  padding: 20px 22px;
}
#information-information.information-page .content-proof-item__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
}
#information-information.information-page .content-proof-item__icon img {
  width: 60px;
  height: 60px;
  display: block;
}
#information-information.information-page .content-proof-item__label {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 150px;
}
@media (min-width: 1200px) {
  #information-information.information-page .content-proof-col:not(:last-child) .content-proof-item {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
  }
}
@media (max-width: 1199.98px) {
  #information-information.information-page .content-copy--panel {
    padding: 34px 34px 28px;
  }
}
@media (max-width: 991.98px) {
  #information-information.information-page .content-split-section,
  #information-information.information-page .content-grid-section,
  #information-information.information-page .content-panel-section {
    margin-bottom: 56px;
  }
  #information-information.information-page .content-copy {
    max-width: none;
  }
  #information-information.information-page .media-frame--flush {
    border-radius: 0 0 6px 6px;
  }
  #information-information.information-page .content-proof-col:nth-child(odd) .content-proof-item {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
  }
  #information-information.information-page .content-proof-col:nth-child(-n + 2) .content-proof-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
}
@media (max-width: 767.98px) {
  #information-information.information-page .content-split {
    --bs-gutter-x: 1rem;
  }
  #information-information.information-page .content-copy h2 {
    font-size: 2rem;
  }
  #information-information.information-page .content-copy p {
    font-size: 14px;
    line-height: 1.78;
  }
  #information-information.information-page .content-copy__eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }
  #information-information.information-page .content-copy__actions {
    align-items: stretch;
    gap: 12px;
  }
  #information-information.information-page .text-link-arrow {
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 6px;
    background: #fff;
  }
  #information-information.information-page .media-frame,
  #information-information.information-page .content-card,
  #information-information.information-page .content-proof-strip,
  #information-information.information-page .content-surface-panel {
    border-radius: 6px;
  }
  #information-information.information-page .content-card {
    padding: 24px 22px 20px;
  }
  #information-information.information-page .content-copy--panel {
    padding: 28px 22px 24px;
  }
  #information-information.information-page .media-frame--flush {
    border-radius: 0 0 6px 6px;
  }
  #information-information.information-page .content-proof-col .content-proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  #information-information.information-page .content-proof-col:last-child .content-proof-item {
    border-bottom: 0;
  }
  #information-information.information-page .content-proof-item {
    padding: 18px 18px;
  }
}
#information-information.information-page .brands-directory {
  padding: clamp(24px, 3.4vw, 40px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbfe 100%);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.05);
}
#information-information.information-page .brands-directory__header {
  margin-bottom: 28px;
}
#information-information.information-page .brands-directory__header h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
#information-information.information-page .brands-directory__header p {
  max-width: 640px;
  margin: 0 auto;
  color: #5d6678;
  font-size: 15px;
  line-height: 1.8;
}
#information-information.information-page .brands-directory__toolbar {
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  background: rgba(246, 247, 251, 0.72);
}
#information-information.information-page .brands-directory__toolbar-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
#information-information.information-page .brands-directory__search {
  flex: 1 1 auto;
  margin: 0;
}
#information-information.information-page .brands-directory__search .form-control {
  min-height: 54px;
  padding: 14px 18px 14px 52px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 6px;
  background: #ffffff url('/catalog/view/theme/default/image/layout/search-icon.svg') no-repeat 18px center;
  background-size: 18px 18px;
  color: #29303f;
  box-shadow: none;
}
#information-information.information-page .brands-directory__search .form-control::placeholder {
  color: #8b859d;
}
#information-information.information-page .brands-directory__search .form-control:focus {
  border-color: rgba(83, 36, 205, 0.24);
  box-shadow: 0 0 0 4px rgba(83, 36, 205, 0.08);
}
#information-information.information-page .brands-directory__count {
  flex: 0 0 auto;
  color: #5d6678;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
}
#information-information.information-page .brands-directory__count strong {
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
}
#information-information.information-page .brands-directory__letters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#information-information.information-page .brands-directory__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  background: #ffffff;
  color: #3f394f;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}
#information-information.information-page .brands-directory__letter:hover,
#information-information.information-page .brands-directory__letter:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(83, 36, 205, 0.22);
  color: #5324CD;
  box-shadow: 0 10px 24px rgba(83, 36, 205, 0.08);
}
#information-information.information-page .brands-directory__letter.is-active {
  border-color: rgba(83, 36, 205, 0.18);
  background: rgba(83, 36, 205, 0.08);
  color: #5324CD;
  box-shadow: inset 0 0 0 1px rgba(83, 36, 205, 0.04);
}
#information-information.information-page .brands-directory__hint {
  margin-top: 12px;
  color: #8b859d;
  font-size: 13px;
  line-height: 1.6;
}
#information-information.information-page .brands-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
#information-information.information-page .brand-directory-card {
  display: grid;
  grid-template-columns: minmax(104px, 132px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  align-content: center;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfcff 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
#information-information.information-page .brand-directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(83, 36, 205, 0.14);
  box-shadow: 0 26px 48px rgba(15, 23, 42, 0.08);
}
#information-information.information-page .brand-directory-card__logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  max-height: 80px;
  padding: 16px;
  border-radius: 6px;
  background: radial-gradient(circle at 50% 25%, rgba(83, 36, 205, 0.055), transparent 58%), #ffffff;
  overflow: hidden;
  text-decoration: none;
}
#information-information.information-page .brand-directory-card__logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 23, 42, 0.055);
  border-radius: inherit;
  pointer-events: none;
}
#information-information.information-page .brand-directory-card__logo:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(83, 36, 205, 0.1);
}
#information-information.information-page .brand-directory-card__logo img {
  width: auto;
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.92;
  transition: transform 0.26s ease, filter 0.26s ease, opacity 0.26s ease;
}
#information-information.information-page .brand-directory-card:hover .brand-directory-card__logo img {
  transform: translateY(-1px) scale(1.025);
  filter: grayscale(0);
  opacity: 1;
}
#information-information.information-page .brand-directory-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
#information-information.information-page .brand-directory-card__body h3 {
  margin: 0 0 8px;
  color: #29303f;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
#information-information.information-page .brand-directory-card__body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0 0 16px;
  color: #5d6678;
  font-size: 13px;
  line-height: 1.62;
  overflow: hidden;
}
#information-information.information-page .brand-directory-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 5px;
}
#information-information.information-page .brand-directory-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  font-size: 10.5px;
  letter-spacing: 0.08em;
}
#information-information.information-page .brands-directory__empty {
  margin-top: 18px;
  padding: 26px 24px;
  border: 1px dashed rgba(83, 36, 205, 0.2);
  border-radius: 6px;
  background: rgba(83, 36, 205, 0.04);
  text-align: center;
}
#information-information.information-page .brands-directory__empty h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}
#information-information.information-page .brands-directory__empty p {
  margin-bottom: 14px;
  color: #5d6678;
  font-size: 14px;
  line-height: 1.7;
}
#information-information.information-page .brands-directory__reset {
  min-width: 180px;
}
@media (max-width: 1199.98px) {
  #information-information.information-page .brands-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  #information-information.information-page .brands-directory__toolbar-top {
    flex-direction: column;
    align-items: stretch;
  }
  #information-information.information-page .brands-directory__count {
    white-space: normal;
  }
  #information-information.information-page .brands-directory__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  #information-information.information-page .info-page-brands section + section {
    margin-top: 48px;
  }
  #information-information.information-page .brands-directory {
    padding: 20px 16px;
  }
  #information-information.information-page .brands-directory__header {
    margin-bottom: 22px;
  }
  #information-information.information-page .brands-directory__header h2 {
    font-size: 1.95rem;
  }
  #information-information.information-page .brands-directory__header p {
    font-size: 14px;
    line-height: 1.72;
  }
  #information-information.information-page .brands-directory__toolbar {
    padding: 14px;
    margin-bottom: 20px;
  }
  #information-information.information-page .brands-directory__search .form-control {
    min-height: 50px;
    padding-left: 48px;
    background-position: 16px center;
  }
  #information-information.information-page .brands-directory__letter {
    min-width: 38px;
    min-height: 34px;
    padding: 0 10px;
  }
  #information-information.information-page .brands-directory__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #information-information.information-page .brand-directory-card {
    grid-template-columns: minmax(96px, 120px) minmax(0, 1fr);
    gap: 14px;
    min-height: auto;
    padding: 16px;
  }
  #information-information.information-page .brand-directory-card__logo {
    min-height: 118px;
    padding: 14px;
  }
  #information-information.information-page .brand-directory-card__logo img {
    max-height: 90px;
  }
  #information-information.information-page .brand-directory-card__body h3 {
    font-size: 1.12rem;
  }
  #information-information.information-page .brand-directory-card__body p {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.58;
  }
  #information-information.information-page .brand-directory-card__actions {
    gap: 8px;
  }
  #information-information.information-page .brand-directory-card__button,
  #information-information.information-page .brands-directory__reset {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  #information-information.information-page .brand-directory-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  #information-information.information-page .brand-directory-card__logo {
    min-height: 108px;
  }
  #information-information.information-page .brand-directory-card__body {
    align-items: stretch;
  }
  #information-information.information-page .brand-directory-card__actions {
    grid-template-columns: 1fr;
  }
}
#information-contact {
  padding-top: 36px;
  padding-bottom: 86px;
  color: #29303f;
}
#information-contact #content {
  width: 100%;
}
#information-contact > .row {
  justify-content: center;
}
#information-contact h2 {
  margin: 0 0 12px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(1.85rem, 2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
#information-contact p {
  margin: 0;
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.75;
}
#information-contact .contact-page-intro {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}
#information-contact .contact-page-intro p {
  margin: 0 auto;
  max-width: 680px;
}
#information-contact .contact-hub,
#information-contact .contact-route,
#information-contact .contact-bottom {
  margin-top: 38px;
}
#information-contact .contact-hub {
  margin-top: 0;
}
#information-contact .contact-card,
#information-contact .contact-form-card,
#information-contact .faq,
#information-contact .contact-route {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbfe 100%);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.065);
}
#information-contact .contact-card,
#information-contact .contact-form-card,
#information-contact .faq {
  padding: 28px;
}
#information-contact .contact-card::after {
  content: '';
  position: absolute;
  right: -70px;
  bottom: -86px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(83, 36, 205, 0.1) 0%, rgba(83, 36, 205, 0) 70%);
  pointer-events: none;
}
#information-contact .contact-card > * {
  position: relative;
  z-index: 1;
}
#information-contact .contact-card--warehouse,
#information-contact .contact-card--office,
#information-contact .contact-form-card,
#information-contact .faq {
  z-index: 1;
}
#information-contact .contact-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 4px;
}
#information-contact .contact-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}
#information-contact .contact-card__eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(83, 36, 205, 0.34);
}
#information-contact .contact-card__badge {
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 8px 10px;
  border: 1px solid rgba(83, 36, 205, 0.14);
  border-radius: 999px;
  background: rgba(83, 36, 205, 0.06);
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
#information-contact .contact-card__lead {
  max-width: 64ch;
  margin-bottom: 20px;
}
#information-contact .contact-tags,
#information-contact .contact-route__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
#information-contact .contact-tags span,
#information-contact .contact-route__steps span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(83, 36, 205, 0.14);
  border-radius: 999px;
  background: rgba(83, 36, 205, 0.05);
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
#information-contact .contact-details {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
#information-contact .contact-details--warehouse {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
#information-contact .contact-details--simple,
#information-contact .contact-quick-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#information-contact .contact-detail-box--wide {
  grid-column: span 2;
}
#information-contact .contact-detail-box,
#information-contact .contact-quick-links__item {
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
}
#information-contact .contact-detail-box strong,
#information-contact .contact-detail-box span,
#information-contact .contact-detail-box a {
  display: block;
}
#information-contact .contact-detail-box strong {
  margin-bottom: 5px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}
#information-contact .contact-detail-box span,
#information-contact .contact-detail-box a {
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  text-decoration: none;
}
#information-contact .contact-detail-box a:hover,
#information-contact .contact-detail-box a:focus-visible {
  color: #5324CD;
}
#information-contact .contact-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(41, 48, 63, 0.08);
}
#information-contact .contact-card__footer p {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.65;
}
#information-contact .contact-card__footer .btn {
  flex: 0 0 auto;
}
#information-contact .contact-route {
  background: #fff;
}
#information-contact .contact-route__media {
  height: 100%;
  min-height: 265px;
  background: #0f1522;
}
#information-contact .contact-route__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
#information-contact .contact-route__content {
  height: 100%;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#information-contact .contact-route__content p {
  max-width: 640px;
  margin-bottom: 20px;
}
#information-contact .contact-route__steps {
  margin-bottom: 0;
}
#information-contact .contact-quick-links {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}
#information-contact .contact-quick-links__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
  transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}
#information-contact .contact-quick-links__item strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
#information-contact .contact-quick-links__item span {
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
}
#information-contact .contact-quick-links__item:hover,
#information-contact .contact-quick-links__item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(83, 36, 205, 0.18);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  text-decoration: none;
}
#information-contact .contact-quick-links__item:hover span,
#information-contact .contact-quick-links__item:focus-visible span {
  color: #5324CD;
}
#information-contact .contact-form-card .form {
  margin-top: 2px;
}
#information-contact .contact-form-card .buttons {
  margin-top: 4px;
}
#information-contact .contact-form-card .buttons .pull-right {
  display: flex;
}
#information-contact .form-control,
#information-contact textarea.form-control,
#information-contact select.form-control {
  min-height: 54px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: none;
}
#information-contact .form-control:focus,
#information-contact textarea.form-control:focus,
#information-contact select.form-control:focus {
  border-color: rgba(83, 36, 205, 0.3);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(83, 36, 205, 0.08);
}
#information-contact .input {
  position: relative;
}
#information-contact .input .form-control {
  min-height: 50px;
  padding: 19px 14px 9px;
  color: #29303f;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
#information-contact textarea.form-control {
  min-height: 132px;
  resize: vertical;
}
#information-contact .btn.btn-primary,
#information-contact .btn.btn-secondary,
#information-contact input[type="submit"] {
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 6px;
  font-size: 11px;
  letter-spacing: 0.13em;
}
#information-contact .faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#information-contact .faq__intro p:last-child {
  margin-bottom: 0;
}
#information-contact .accordion-item {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}
#information-contact .accordion-item:last-child {
  margin-bottom: 0;
}
#information-contact .accordion-button {
  padding: 15px 17px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.42;
  background: #fff;
  box-shadow: none;
}
#information-contact .accordion-button:not(.collapsed) {
  color: #29303f;
  background: rgba(83, 36, 205, 0.04);
  box-shadow: none;
}
#information-contact .accordion-button:focus {
  box-shadow: 0 0 0 4px rgba(83, 36, 205, 0.08);
  border-color: rgba(83, 36, 205, 0.22);
}
#information-contact .accordion-body {
  padding: 0 17px 16px;
}
#information-contact .accordion-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  #information-contact .contact-details--warehouse {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  #information-contact {
    padding-top: 28px;
    padding-bottom: 68px;
  }
  #information-contact .contact-hub,
  #information-contact .contact-route,
  #information-contact .contact-bottom {
    margin-top: 28px;
  }
  #information-contact .contact-hub {
    margin-top: 0;
  }
  #information-contact .contact-route__media {
    min-height: 260px;
  }
}
@media (max-width: 767.98px) {
  #information-contact .contact-card,
  #information-contact .contact-form-card,
  #information-contact .faq,
  #information-contact .contact-route__content {
    padding: 22px 18px;
  }
  #information-contact .contact-page-intro {
    margin-bottom: 24px;
    text-align: left;
  }
  #information-contact .contact-card__topline,
  #information-contact .contact-card__footer {
    display: block;
  }
  #information-contact .contact-card__badge {
    display: inline-flex;
    margin: 0 0 16px;
  }
  #information-contact .contact-card__footer p {
    margin-bottom: 16px;
  }
  #information-contact .contact-card__footer .btn {
    width: 100%;
  }
  #information-contact .contact-details--warehouse,
  #information-contact .contact-details--simple,
  #information-contact .contact-quick-links {
    grid-template-columns: 1fr;
  }
  #information-contact .contact-detail-box--wide {
    grid-column: auto;
  }
  #information-contact .contact-route__media {
    min-height: 220px;
  }
  #information-contact .contact-route__steps span,
  #information-contact .contact-tags span {
    width: 100%;
    justify-content: center;
  }
  #information-contact .contact-form-card .buttons,
  #information-contact .contact-form-card .buttons .pull-right,
  #information-contact .contact-form-card .buttons input[type="submit"] {
    width: 100%;
  }
}
.page-news,
.page-news-detail {
  background: #f6f7fb;
}
.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  background: rgba(41, 48, 63, 0.03);
  color: rgba(41, 48, 63, 0.72);
}
.news-tag--b2b {
  border-color: rgba(83, 36, 205, 0.2);
  background: rgba(83, 36, 205, 0.8);
  color: white;
}
.news-tag--general {
  border-color: rgba(16, 128, 96, 0.22);
  background: rgba(16, 128, 96, 0.1);
  color: #108060;
}
.news-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(41, 48, 63, 0.35);
  vertical-align: middle;
}
.news-hero {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  padding: 56px 0 44px;
}
.news-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.news-hero__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5324CD;
  margin-bottom: 10px;
}
.news-hero__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 42px;
  font-weight: 750;
  color: #29303f;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.news-hero__sub {
  font-size: 16px;
  color: rgba(41, 48, 63, 0.6);
  max-width: 620px;
  margin: 0;
}
.news-hero__cats {
  display: none;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .news-hero {
    padding: 44px 0 32px;
  }
  .news-hero__title {
    font-size: 34px;
  }
}
.news-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  border: 1px solid rgba(41, 48, 63, 0.14);
  background: #ffffff;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(41, 48, 63, 0.76);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.news-cat svg {
  opacity: 0.7;
}
.news-cat:hover,
.news-cat:focus-visible {
  border-color: rgba(83, 36, 205, 0.35);
  box-shadow: 0 16px 34px rgba(83, 36, 205, 0.1);
  transform: translateY(-1px);
  outline: none;
  color: #29303f;
}
.news-cat:hover svg,
.news-cat:focus-visible svg {
  opacity: 1;
}
.news-cat.is-active {
  background: linear-gradient(135deg, #6A39FF 0%, #5324CD 100%);
  border-color: rgba(83, 36, 205, 0.45);
  color: #fff;
  box-shadow: 0 18px 42px rgba(83, 36, 205, 0.18);
}
.news-cat.is-active svg {
  opacity: 1;
}
.news-main {
  padding: 56px 0 92px;
}
@media (max-width: 768px) {
  .news-main {
    padding: 40px 0 72px;
  }
}
.news-featured__visual,
.news-card__visual,
.article-hero__visual,
.sidebar-article__visual {
  position: relative;
  overflow: hidden;
}
.news-featured__visual img,
.news-card__visual img,
.article-hero__visual img,
.sidebar-article__visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.news-featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(41, 48, 63, 0.08);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  margin-bottom: 44px;
  min-height: 360px;
}
.news-featured__visual {
  position: relative;
  min-height: 320px;
  background: #fbfcfe;
}
.news-featured__visual .news-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}
.news-featured__body {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(41, 48, 63, 0.55);
  margin-bottom: 16px;
}
.news-featured__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 26px;
  font-weight: 750;
  color: #29303f;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.news-featured__title a {
  color: inherit;
  text-decoration: none;
}
.news-featured__excerpt {
  font-size: 15px;
  color: rgba(41, 48, 63, 0.62);
  line-height: 1.65;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .news-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .news-featured__body {
    padding: 28px 26px;
  }
  .news-featured__visual {
    min-height: 260px;
  }
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
.news-card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(41, 48, 63, 0.08);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.news-card:hover {
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
  border-color: rgba(83, 36, 205, 0.18);
}
.news-card__visual {
  height: 180px;
  flex-shrink: 0;
  background: #fbfcfe;
}
.news-card__visual a {
  display: block;
  height: 100%;
}
.news-card__body {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(41, 48, 63, 0.55);
  margin-bottom: 10px;
}
.news-card__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #29303f;
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.news-card__title a {
  color: inherit;
  text-decoration: none;
}
.news-card__excerpt {
  font-size: 13px;
  color: rgba(41, 48, 63, 0.58);
  line-height: 1.6;
  margin-bottom: 14px;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #5324CD;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.18s ease, color 0.18s ease;
}
.news-read-more:hover {
  gap: 12px;
  color: #481fb3;
}
.article-hero {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}
.article-hero__visual {
  height: 500px;
  width: 100%;
  background: #fbfcfe;
}
.article-hero__visual iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.article-hero .container {
  position: relative;
  z-index: 2;
}
.article-hero__inner {
  padding: 32px 0 30px;
  max-width: 820px;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(41, 48, 63, 0.55);
  margin-bottom: 14px;
}
.article-hero__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 40px;
  font-weight: 780;
  color: #29303f;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (max-width: 768px) {
  .article-hero__visual {
    height: 260px;
  }
  .article-hero__title {
    font-size: 30px;
  }
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(41, 48, 63, 0.5);
}
.article-breadcrumb a {
  color: #5324CD;
  text-decoration: none;
  font-weight: 700;
}
.article-breadcrumb a:hover {
  text-decoration: underline;
}
.article-main {
  padding: 56px 0 92px;
}
@media (max-width: 768px) {
  .article-main {
    padding: 40px 0 72px;
  }
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}
.article-body {
  background: #ffffff;
  border-radius: 6px;
  padding: 44px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}
@media (max-width: 768px) {
  .article-body {
    padding: 26px;
  }
}
.article-body .article-content {
  color: rgba(41, 48, 63, 0.78);
}
.article-body .article-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(41, 48, 63, 0.72);
  margin-bottom: 18px;
}
.article-body .article-content h2,
.article-body .article-content h3 {
  font-family: 'Satoshi', sans-serif;
  color: #29303f;
  font-weight: 750;
  letter-spacing: -0.01em;
  margin: 30px 0 14px;
}
.article-body .article-content h2 {
  font-size: 22px;
}
.article-body .article-content h3 {
  font-size: 18px;
}
.article-body .article-content ul,
.article-body .article-content ol {
  margin: 0 0 20px;
  padding-left: 20px;
}
.article-body .article-content ul li,
.article-body .article-content ol li {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(41, 48, 63, 0.72);
  margin-bottom: 10px;
}
.article-body .article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  margin: 18px 0 22px;
}
.article-body .article-content a {
  font-weight: 700;
}
.article-body .article-content strong {
  color: #29303f;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.article-tags a {
  text-decoration: none;
}
.article-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(41, 48, 63, 0.12);
  border-radius: 6px;
  font-size: 12px;
  color: rgba(41, 48, 63, 0.62);
  background: #ffffff;
  transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.article-tags a:hover span {
  border-color: rgba(83, 36, 205, 0.28);
  color: #5324CD;
  box-shadow: 0 14px 34px rgba(83, 36, 205, 0.1);
}
.article-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 992px) {
  .article-sidebar {
    position: static;
  }
}
.sidebar-block {
  background: #ffffff;
  border-radius: 6px;
  padding: 22px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}
.sidebar-block--cta {
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  border-color: rgba(83, 36, 205, 0.16);
}
.sidebar-block--cta p {
  margin: 0 0 14px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  color: #29303f;
  letter-spacing: -0.01em;
}
.sidebar-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 750;
  color: #29303f;
  margin-bottom: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sidebar-articles {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-article {
  display: flex;
  gap: 12px;
  text-decoration: none;
  align-items: center;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  background: #ffffff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.sidebar-article:hover {
  transform: translateY(-1px);
  border-color: rgba(83, 36, 205, 0.18);
  box-shadow: 0 16px 34px rgba(83, 36, 205, 0.1);
}
.sidebar-article__visual {
  width: 62px;
  height: 62px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fbfcfe;
}
.sidebar-article__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sidebar-article__title {
  font-size: 13px;
  font-weight: 700;
  color: #29303f;
  line-height: 1.35;
  margin: 0;
}
.sidebar-article time {
  font-size: 12px;
  color: rgba(41, 48, 63, 0.55);
}
.sidebar-article__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.sidebar-article:hover .sidebar-article__visual img {
  transform: scale(1.04);
}
.sidebar-cta__btn {
  width: 100%;
  text-align: center;
}
.article-gallery {
  margin-top: clamp(42px, 6vw, 78px);
  padding-top: clamp(30px, 4vw, 46px);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.article-gallery__head {
  max-width: 720px;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.article-gallery__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5324CD;
}
.article-gallery__head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #29303f;
}
.article-gallery__masonry {
  --article-gallery-columns: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  align-items: start;
}
.article-gallery__masonry.is-masonry-enhanced {
  grid-template-columns: repeat(var(--article-gallery-columns), minmax(0, 1fr));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.article-gallery__masonry.is-masonry-ready {
  opacity: 1;
}
.article-gallery__column {
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
}
.article-gallery__item {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  line-height: 0;
  background: rgba(41, 48, 63, 0.04);
  transform: translateZ(0);
}
.article-gallery__item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
  margin: 0;
  transition: transform 0.78s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
}
.article-gallery__item:hover img {
  transform: scale(1.025);
  opacity: 0.96;
}
@media (max-width: 768px) {
  .article-gallery__masonry,
  .article-gallery__column {
    gap: 12px;
  }
  .article-gallery__masonry {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (max-width: 400px) {
  .article-gallery {
    margin-top: 36px;
    padding-top: 28px;
  }
  .article-gallery__masonry,
  .article-gallery__column {
    gap: 10px;
  }
  .article-gallery__masonry {
    grid-template-columns: 1fr;
  }
}
.dark-background {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 75px 0;
  background: url('../../image/about-bg-main.png') center center / cover no-repeat;
}
.dark-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(111, 35, 255, 0.28) 0%, transparent 28%), radial-gradient(circle at 24% 75%, rgba(255, 115, 0, 0.18) 0%, transparent 24%), radial-gradient(circle at 82% 18%, rgba(146, 65, 255, 0.22) 0%, transparent 24%), radial-gradient(circle at 86% 72%, rgba(255, 141, 26, 0.22) 0%, transparent 26%);
  pointer-events: none;
  z-index: 1;
}
.dark-background::after {
  content: '';
  position: absolute;
  inset: -6%;
  background: url('../../image/about-bg-smoke.png') center center / cover no-repeat;
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
.dark-background h3,
.dark-background p {
  color: white !important;
}
.dark-background p {
  opacity: 0.75;
}
.about-us-page {
  color: #1e2230;
}
.about-us-page section {
  margin-top: 60px;
  margin-bottom: 60px;
}
.about-us-page .section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
}
.about-us-page .section-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.85;
  color: #666d7b;
}
.about-us-page .about-us-section-head {
  margin-bottom: 42px;
}
.about-us-page .about-us-section-head h2 {
  margin-bottom: 14px;
}
.about-us-page .about-us-section-head--center {
  text-align: center;
}
.about-us-page h2 {
  font-size: clamp(2rem, 2.6vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #161925;
  text-wrap: balance;
}
.about-us-page .promo-text-img-on-side {
  padding-top: 76px;
  padding-bottom: 76px;
}
.about-us-page .img-wrapper {
  overflow: hidden;
  border-radius: 16px;
}
.about-us-page .img-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-us-page .about-us-hero .content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #5f6675;
}
.about-us-page .about-us-hero .content p + p {
  margin-top: 14px;
}
.about-us-page .about-us-hero p.lead-copy {
  margin-bottom: 18px;
  font-size: clamp(1.2rem, 1.5vw, 1.55rem) !important;
  line-height: 1.58 !important;
  letter-spacing: -0.025em;
  color: #191d29;
  text-wrap: balance;
}
.about-us-page .about-us-hero .img-wrapper img {
  min-height: 420px;
}
.about-us-page .about-us-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.about-us-page .about-us-actions .list-inline-item {
  margin: 0;
}
.about-us-page .btn {
  min-width: 154px;
}
.about-us-page .about-us-benefits {
  padding-top: 34px;
  padding-bottom: 38px;
}
.about-us-page .about-us-benefits .benefit-card {
  padding: 8px 18px;
}
.about-us-page .about-us-benefits h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 1.7vw, 1.75rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-wrap: balance;
}
.about-us-page .about-us-benefits p {
  max-width: 340px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
.about-us-page .about-us-proof .brands-list {
  width: 100%;
}
.about-us-page .about-us-proof .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  background: #ffffff;
  border: 1px solid #ececf2;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(18, 21, 31, 0.04);
}
.about-us-page .about-us-proof .brand-item img {
  max-height: 75px;
  width: auto;
}
.about-us-page .about-us-channels .channel-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ececf2;
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(18, 21, 31, 0.04);
}
.about-us-page .about-us-channels .img-wrapper {
  border-radius: 6px 0 0 6px;
}
.about-us-page .about-us-channels .img-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px 0 0 6px;
}
.about-us-page .about-us-channels .channel-card__content {
  padding: 24px 24px 26px;
}
.about-us-page .about-us-channels .channel-card__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c3aed;
}
.about-us-page .about-us-channels h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.03em;
  color: #171b27;
  text-wrap: balance;
}
.about-us-page .about-us-channels p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #616877;
}
.about-us-page .info-diff-grid .text-box {
  width: 100%;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid #ececf2;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(18, 21, 31, 0.04);
  text-align: left;
}
.about-us-page .info-diff-grid .text-box.is-primary {
  border-color: #e6e1ff;
  box-shadow: 0 18px 40px rgba(91, 52, 242, 0.06);
}
.about-us-page .info-diff-grid .text-box .text-box__topline {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c3aed;
}
.about-us-page .info-diff-grid .text-box h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #171b27;
  text-wrap: balance;
}
.about-us-page .info-diff-grid .text-box small {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7f8594;
}
.about-us-page .info-diff-grid .text-box p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #616877;
}
.about-us-page .info-diff-grid .text-box p + p {
  margin-top: 10px;
}
.about-us-page .about-us-offer .text-box.bordered {
  height: 100%;
  padding: 38px 34px;
  background: #ffffff;
  border: 1px solid #ececf2;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(18, 21, 31, 0.04);
}
.about-us-page .about-us-offer .text-box.bordered .text-box__topline {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c3aed;
}
.about-us-page .about-us-offer .text-box.bordered h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 1.9vw, 2.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #171b27;
  text-wrap: balance;
}
.about-us-page .about-us-offer .text-box.bordered small {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7f8594;
}
.about-us-page .about-us-offer .text-box.bordered p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.82;
  color: #616877;
}
.about-us-page .about-us-offer .text-box.bordered p + p {
  margin-top: 12px;
}
.about-us-page .about-us-offer .text-box.bordered .violet {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
}
.about-us-page .about-us-team {
  padding-top: 96px;
  padding-bottom: 88px;
}
.about-us-page .about-us-team .content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #5f6675;
}
.about-us-page .about-us-team .content p + p {
  margin-top: 14px;
}
.about-us-page .about-us-team .team-subtitle {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #73798a;
}
.about-us-page .about-us-team__visual {
  position: relative;
}
.about-us-page .about-us-team__main img {
  min-height: 560px;
}
.about-us-page .about-us-team__inset {
  position: absolute;
  right: 0;
  bottom: 0;
}
.about-us-page .about-us-team__inset img {
  max-height: 460px;
  object-fit: cover;
}
.about-us-page .about-us-final {
  padding-top: 22px;
  padding-bottom: 96px;
  border-top: 1px solid #ececf2;
}
.about-us-page .about-us-final p {
  max-width: 980px;
  font-size: 15px;
  line-height: 1.85;
  color: #5f6675;
}
.about-us-page .about-us-final .info-checklist {
  list-style: none;
  padding-left: 0;
}
.about-us-page .about-us-final .info-checklist li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #2f3442;
}
.about-us-page .about-us-final .info-checklist li + li {
  margin-top: 10px;
}
.about-us-page .about-us-final .info-checklist li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5b34f2;
}
.about-us-page .about-us-final .info-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 1199.98px) {
  .about-us-page .about-us-hero .img-wrapper img {
    min-height: 380px;
  }
  .about-us-page .about-us-channels .img-wrapper img {
    height: 230px;
  }
  .about-us-page .about-us-team__main img {
    min-height: 500px;
  }
  .about-us-page .about-us-team__inset img {
    height: 190px;
  }
  .about-us-page .info-diff-grid .text-box,
  .about-us-page .about-us-offer .text-box.bordered {
    padding: 30px 24px;
  }
}
@media (max-width: 991.98px) {
  .about-us-page .promo-text-img-on-side {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .about-us-page .about-us-proof,
  .about-us-page .about-us-channels,
  .about-us-page .about-us-pillars,
  .about-us-page .about-us-offer {
    padding-top: 72px;
  }
  .about-us-page .about-us-team {
    padding-top: 76px;
    padding-bottom: 72px;
  }
  .about-us-page .about-us-final {
    padding-bottom: 76px;
  }
  .about-us-page .about-us-hero .content,
  .about-us-page .about-us-team .content {
    margin-top: 32px;
  }
  .about-us-page .about-us-hero .img-wrapper img {
    min-height: 0;
  }
  .about-us-page .about-us-team__visual {
    padding-right: 48px;
    padding-bottom: 42px;
  }
  .about-us-page .about-us-team__main img {
    min-height: 0;
  }
  .about-us-page .about-us-team__inset {
    width: 44%;
    border-width: 6px;
  }
  .about-us-page .about-us-team__inset img {
    height: 170px;
  }
}
@media (max-width: 767.98px) {
  .about-us-page .section-eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .about-us-page h2 {
    font-size: 2rem;
    line-height: 1.1;
  }
  .about-us-page .section-intro,
  .about-us-page .about-us-hero .content p,
  .about-us-page .about-us-team .content p,
  .about-us-page .about-us-final p,
  .about-us-page .about-us-offer .text-box.bordered p,
  .about-us-page .about-us-channels p,
  .about-us-page .info-diff-grid .text-box p {
    font-size: 14px;
    line-height: 1.78;
  }
  .about-us-page .about-us-hero p.lead-copy {
    font-size: 1.15rem;
    line-height: 1.55;
  }
  .about-us-page .about-us-actions,
  .about-us-page .about-us-final .info-final-cta__actions {
    gap: 10px;
  }
  .about-us-page .about-us-actions .list-inline-item,
  .about-us-page .about-us-final .info-final-cta__actions .list-inline-item {
    width: 100%;
  }
  .about-us-page .about-us-actions .btn,
  .about-us-page .about-us-final .info-final-cta__actions .btn {
    width: 100%;
  }
  .about-us-page .about-us-benefits {
    padding-top: 28px;
    padding-bottom: 30px;
  }
  .about-us-page .about-us-benefits .benefit-card {
    padding: 4px 10px;
  }
  .about-us-page .about-us-benefits h3 {
    font-size: 1.3rem;
  }
  .about-us-page .about-us-benefits p {
    font-size: 13px;
  }
  .about-us-page .about-us-proof,
  .about-us-page .about-us-channels,
  .about-us-page .about-us-pillars,
  .about-us-page .about-us-offer {
    padding-top: 58px;
  }
  .about-us-page .about-us-proof .brand-item {
    min-height: 90px;
    padding: 20px;
  }
  .about-us-page .about-us-channels .channel-card__content {
    padding: 22px 20px 24px;
  }
  .about-us-page .about-us-channels .img-wrapper img {
    height: 220px;
  }
  .about-us-page .about-us-channels h3,
  .about-us-page .info-diff-grid .text-box h3 {
    font-size: 1.45rem;
  }
  .about-us-page .info-diff-grid .text-box,
  .about-us-page .about-us-offer .text-box.bordered {
    padding: 24px 20px;
    border-radius: 14px;
  }
  .about-us-page .about-us-team {
    padding-top: 60px;
    padding-bottom: 56px;
  }
  .about-us-page .about-us-team__visual {
    padding-right: 0;
    padding-bottom: 0;
  }
  .about-us-page .about-us-team__inset {
    position: static;
    width: 100%;
    margin-top: 16px;
    border: 0;
  }
  .about-us-page .about-us-team__inset img {
    height: 220px;
  }
  .about-us-page .about-us-team .team-subtitle {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .about-us-page .about-us-final {
    padding-top: 8px;
    padding-bottom: 60px;
  }
  .about-us-page .about-us-final .info-checklist li {
    font-size: 14px;
  }
}
#information-information.information-page .manufactures-promo .brands-list.customers > div {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
}
hr {
  color: #E4E4E4;
  opacity: 1;
}
h1,
.h1 {
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
}
@media screen and (max-width: 576px) {
  h1,
  .h1 {
    font-size: 30px;
    line-height: 38px;
  }
}
h1 small,
.h1 small {
  font-size: 24px;
  line-height: 32px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 5px;
}
h2,
.h2 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 800;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  h2,
  .h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
h2 small,
.h2 small {
  font-size: 24px;
  line-height: 32px;
  margin-top: 10px;
  display: inline-block;
}
h3,
.h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  h3,
  .h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
h4,
.h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
h5,
.h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
p,
ul li {
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
}
p {
  margin-bottom: 22px;
  letter-spacing: -0.2px;
}
a {
  color: #000000;
  text-decoration: none;
}
a:hover {
  color: #5324CD;
  text-decoration: underline;
}
sections {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 576px) {
  section {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.button {
  border-radius: 25px;
  display: inline-block;
  font-size: 16px;
  line-height: 46px;
  padding: 0 20px;
  font-weight: 700;
  border: 1px solid transparent;
  position: relative;
}
.button.primary {
  color: #FFFFFF;
}
.button.primary:after {
  transition: all 0.2s linear;
  opacity: 0;
  content: '';
  background-color: #000000;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  position: absolute;
  right: -4px;
  bottom: -4px;
}
.button.primary:hover {
  transition: all 0.2s linear;
  text-decoration: none;
}
.button.secondary {
  color: #5324CD;
  border-color: #E4E4E4;
  transition: all 0.2s linear;
}
.button.secondary:hover {
  transition: all 0.2s linear;
  border-color: #5324CD;
  text-decoration: none;
}
.button.white {
  color: #FFFFFF;
  border-color: #FFFFFF;
  background: transparent;
  transition: all 0.2s linear;
}
.button.white:hover {
  transition: all 0.2s linear;
  border-color: transparent;
  background: #6b46cb;
  background: linear-gradient(45deg, #6b46cb 0%, #3900ce 100%);
  text-decoration: none;
}
.button.black {
  color: #000000;
  border-color: #000000;
}
.button img.visit {
  position: relative;
  top: -2px;
}
.product-info-tabs .label,
.label {
  border-radius: 18px;
  line-height: 32px;
  display: inline-block;
  border: 1px solid #E4E4E4;
  color: #000000;
  padding: 0 15px;
  transition: all 0.2s linear;
}
.product-info-tabs .label.current,
.label.current,
.product-info-tabs .label.active,
.label.active,
.product-info-tabs .label:hover,
.label:hover {
  transition: all 0.2s linear;
  color: #FFFFFF;
  background: #000000;
  border-color: #000000;
  text-decoration: none;
}
.white {
  color: #FFFFFF;
}
.violet {
  color: #5324CD;
}
.disabled {
  opacity: 0.25;
}
.gradient-background {
  background: #6b46cb;
  background: linear-gradient(45deg, #6b46cb 0%, #3900ce 100%);
}
.transition {
  -webkit-transition: all 3s;
  transition: all 3s;
}
.transition:after {
  -webkit-transition: all 3s;
  transition: all 3s;
}
.with-arrow {
  position: relative;
  padding-right: 35px;
}
.with-arrow:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
}
.with-arrow.white:after {
  background: url('../../image/layout/arrow-right-white.svg');
}
.with-arrow.violet:after {
  background: url('../../image/layout/arrow-right-violet.svg');
}
.img-wrapper img {
  width: 100%;
}
.img-wrapper.with-logo {
  position: relative;
}
.img-wrapper.with-logo:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  background: url('../../image/layout/logo-inverted.svg');
  width: 90px;
  height: 30px;
}
@media (max-width: 576px) {
  .img-wrapper.with-logo:before {
    top: 20px;
    left: 20px;
  }
}
.img-wrapper.with-shadow.left {
  left: 0px;
}
@media (max-width: 576px) {
  .img-wrapper.with-shadow {
    left: 0px;
    top: 0px;
  }
}
.br-25 {
  border-radius: 25px;
}
.br-20 {
  border-radius: 20px;
}
.br-12 {
  border-radius: 6px;
}
.bordered {
  border: 1px solid #E4E4E4;
}
div.all {
  margin-top: 152px;
}
div.all.fade {
  position: relative;
}
div.all.fade:after {
  width: 100%;
  height: 100%;
  background: rgba(235, 235, 235, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 500px) {
  div.all {
    margin-top: 140px;
  }
}
.light-gray-bg {
  background: #F6F6F6;
}
.content.mobile-opacity,
#content.mobile-opacity {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
@media (max-width: 450px) {
  .content .col-6,
  #content .col-6 {
    width: 100% !important;
  }
}
.no-scroll {
  overflow: hidden;
}
.no-padd {
  padding: 0;
}
#column-left .collapse:not(.show) {
  display: block !important;
}
input.form-control,
textarea.form-control,
select.form-control {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  padding-top: 22px;
  padding-bottom: 5px;
  font-size: 16px;
  position: relative;
}
input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
  background: #F6F6F6;
  box-shadow: none;
  border: 1px solid #000000;
}
input.form-control:focus::placeholder,
textarea.form-control:focus::placeholder,
select.form-control:focus::placeholder {
  opacity: 1;
}
select.form-control,
select.form-control:focus {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #F6F6F6;
  /* Nastavení barvy pozadí */
  background-image: url('../../image/layout/arrow-down-icon.svg');
  /* Vlastní šipka */
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  background-clip: padding-box;
  /* Zajistí, že šipka se zobrazí správně */
  padding-right: 35px;
  /* Odsazení textu od šipky */
}
textarea.form-control {
  height: 120px;
}
.input {
  position: relative;
}
.input::after {
  content: attr(data-placeholder);
  font-size: 12px;
  position: absolute;
  left: 25px;
  top: 5px;
  color: #8D8D8D;
  opacity: 1;
}
.datatable-header .input input {
  border: 1px solid #5324CD;
}
.datatable-header .input:after {
  content: attr(data-placeholder);
  font-size: 12px;
  position: absolute;
  left: 25px;
  top: 5px;
  color: #8D8D8D;
  opacity: 1;
  display: block;
}
.datatable-header .input:before {
  content: '';
  background: #5324CD;
  border-radius: 6px;
  position: absolute;
  left: 14px;
  display: block;
  top: 2px;
  width: calc(100% - 24px);
  height: 100%;
  z-index: -1;
}
.tf-filter-value.form-check input {
  opacity: 1 !important;
  z-index: 1;
}
html[dir="ltr"] .tf-filter-value.form-check .checkmark {
  display: none;
}
.tf-filter-group-title {
  font-size: 16px;
  font-weight: 700;
}
.tf-filter-group-header {
  padding: 0px !important;
}
.col-lg-12.tf-filter-group:not(:last-child) {
  border: none !important;
  margin-bottom: 15px;
}
.tf-filter-group-content,
.tf-filter-group-search {
  padding: 8px 0px !important;
}
.tf-filter-value.form-check input {
  z-index: 1!important;
}
.width-100 {
  width: 100%;
}
/* alerts */
div.alert-custom {
  position: absolute;
  right: 0;
  top: 80px;
  width: 330px;
  border-radius: 20px;
  z-index: 999;
}
div.alert-custom.alert-success {
  font-size: 16px;
  color: white;
  border: none;
  background: #1FAC1C;
}
div.alert-custom.alert-success a {
  font-weight: 700;
  color: white;
}
b,
strong {
  font-weight: 800;
}
.swiper-pagination {
  bottom: 15px !important;
}
.swiper-pagination-bullet {
  background-color: #E4E4E4;
  width: 12px;
  height: 12px;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  background-color: #5324CD;
  opacity: 1;
}
/*Content pages*/
#account-register h5 {
  margin-bottom: 30px;
}
.form-control:disabled {
  background: #F6F6F6;
}
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  border: none !important;
  cursor: not-allowed;
}
.alert-danger {
  margin-top: 15px;
}
.alert-danger button {
  display: none;
}
.product-right-info input#input-quantity {
  padding-top: 11px;
  padding-bottom: 11px;
  border-radius: 0 !important;
}
.product-right-info .quantity-btn {
  background: #5324CD;
  color: white;
}
.modal {
  z-index: 999999999;
}
/* === Search (LESS) === */
.search-hero {
  padding: 24px 0 8px;
}
.search-hero__title {
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 8px;
}
.search-hero__subtitle {
  color: #6b7280;
  margin: 0 0 16px;
}
.search-bar__field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 8px 8px 44px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.search-bar__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.8;
}
.search-bar__input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 16px;
  min-width: 0;
}
.search-bar__clear {
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  padding: 0 6px;
  cursor: pointer;
  color: #9ca3af;
}
.search-bar__btn {
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  background: #5b21b6;
  color: #fff;
  font-weight: 700;
}
.search-bar__btn:hover {
  filter: brightness(1.05);
}
.search-tags {
  display: flex;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.search-tags a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 13px;
  text-decoration: none;
}
.search-tags a:hover {
  background: #e5e7eb;
}
@media (max-width: 768px) {
  .search-hero {
    padding-top: 12px;
  }
  .search-bar__btn {
    padding: 9px 14px;
  }
}
.price-old {
  opacity: 0.3;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EFEFEFCC;
  /* Dark transparent overlay */
  opacity: 1;
  z-index: 888;
  /* Behind the header and submenu */
  display: none;
  /* Initially hidden */
}
#cart-overlay {
  display: none;
  position: fixed;
  top: 145px;
  left: 0;
  width: 100%;
  height: calc(100vh - 105px);
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
}
@media (max-width: 767.98px) {
  #cart-overlay {
    top: 0;
    height: 100vh;
  }
}
#added-to-cart-box {
  position: absolute;
  top: 145px;
  right: 0;
  z-index: 99999;
}
@media (max-width: 767.98px) {
  #added-to-cart-box {
    left: 0;
    top: 20vh;
  }
  #added-to-cart-box .card {
    margin: auto;
  }
}
#cart-confirm-box {
  width: 320px;
  border-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 767.98px) {
  #cart-confirm-box {
    border-radius: 20px !important;
  }
}
/*cart drawer*/
.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 28, 0.22);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  z-index: 9998;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(414px, 100vw);
  background: #fff;
  box-shadow: -24px 0 64px rgba(16, 24, 40, 0.12);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(17, 17, 17, 0.06);
}
.cart-drawer--open {
  transform: translateX(0);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 16px 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}
.cart-drawer__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111;
}
.cart-drawer__close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: #f6f6f8;
  color: rgba(17, 17, 17, 0.62);
  padding: 0;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}
.cart-drawer__close:hover {
  background: #efeff2;
  color: #111;
  transform: rotate(90deg);
}
.cart-drawer__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.cart-drawer__body {
  overflow: auto;
  flex: 1;
  padding: 14px 14px 18px;
  background: #fff;
}
.cart-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-drawer__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 32px 20px;
  border-radius: 18px;
  background: #f6f6f8;
  color: rgba(17, 17, 17, 0.54);
  font-size: 14px;
  text-align: center;
}
.cart-drawer__footer {
  padding: 16px 14px 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
}
.cart-drawer__summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.cart-drawer__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(17, 17, 17, 0.72);
}
.cart-drawer__summary-row strong {
  margin-left: auto;
  color: #111;
  font-size: 14px;
  font-weight: 700;
}
.cart-drawer__summary-row--subtotal {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.cart-drawer__summary-row--subtotal span,
.cart-drawer__summary-row--subtotal strong {
  color: #111;
  font-size: 15px;
  font-weight: 700;
}
.cart-drawer__summary-row--total {
  padding-top: 2px;
}
.cart-drawer__summary-row--total span,
.cart-drawer__summary-row--total strong {
  color: #111;
  font-weight: 700;
}
.cart-drawer__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}
.cart-drawer__actions .cart-drawer__action--secondary {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  color: #111;
}
.cart-drawer__actions .cart-drawer__action--secondary:hover {
  background: #f6f6f8;
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.05);
  transform: translateY(-1px);
}
.cart-drawer__actions .cart-drawer__action--primary {
  border: 1px solid #5324CD;
  background: linear-gradient(135deg, #6e31ff 0%, #5324CD 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(83, 36, 205, 0.22);
}
.cart-drawer__actions .cart-drawer__action--primary:hover {
  box-shadow: 0 16px 30px rgba(83, 36, 205, 0.28);
  transform: translateY(-1px);
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 18px;
  background: #f6f6f8;
}
.cart-item__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.05);
  overflow: hidden;
}
.cart-item__thumb img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.cart-item__meta {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  display: block;
  margin: 2px 0 6px;
  color: #111;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: none;
}
.cart-item__name:hover {
  color: #111;
}
.cart-item__options {
  margin-bottom: 10px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 12px;
  line-height: 1.45;
}
.cart-item__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.cart-item__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
}
.cart-item__total {
  color: #111;
  font-size: 15px;
  font-weight: 700;
}
.cart-item__unit {
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 700;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  min-width: 114px;
  height: 36px;
  padding: 0 2px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 10px;
}
.qty-control__button,
.qty-control .qty-plus,
.qty-control .qty-minus {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.78);
  font-size: 20px;
  line-height: 1;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.qty-control__button:hover,
.qty-control .qty-plus:hover,
.qty-control .qty-minus:hover {
  background: #f6f6f8;
  color: #111;
}
.qty-control__button:disabled,
.qty-control .qty-plus:disabled,
.qty-control .qty-minus:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}
.qty-control .qty-input {
  width: 46px;
  min-width: 46px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #111;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  -moz-appearance: textfield;
}
.qty-control .qty-input:focus {
  box-shadow: none;
}
.qty-control .qty-input::-webkit-inner-spin-button,
.qty-control .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-remove {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff6d6d;
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cart-remove:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.cart-remove img {
  width: 18px;
  height: 18px;
  display: block;
}
#cart-drawer-overlay.cart-drawer__overlay--open {
  opacity: 1;
  visibility: visible;
  height: 100vh;
}
.cart-drawer__body .cart-product {
  align-items: flex-start;
}
@media (max-width: 575.98px) {
  .cart-drawer {
    width: 100vw;
  }
  .cart-drawer__header {
    padding: 14px 12px 12px;
  }
  .cart-drawer__body {
    padding: 12px;
  }
  .cart-drawer__footer {
    padding: 14px 12px 12px;
  }
  .cart-item {
    padding: 10px;
    gap: 10px;
  }
  .cart-item__thumb {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
  .cart-item__thumb img {
    width: 42px;
    height: 42px;
  }
  .cart-item__name {
    font-size: 14px;
  }
  .cart-item__bottom {
    grid-template-columns: auto auto auto;
    gap: 8px;
  }
  .qty-control {
    min-width: 108px;
  }
  .qty-control .qty-input {
    width: 40px;
    min-width: 40px;
  }
  .cart-item__price {
    gap: 4px;
  }
  .cart-item__total {
    font-size: 14px;
  }
  .cart-item__unit {
    font-size: 11px;
  }
  .cart-drawer__actions .btn {
    min-height: 42px;
    letter-spacing: 0.14em;
  }
}
/* cart icon */
/* Pravý blok v hlavičce */
/* Cart (ikona + štítek) */
/* === Header actions (Account / Cart / Search) === */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-actions .action-item {
  position: relative;
  vertical-align: middle;
  /* Label pod ikonou */
  /* Dropdown zarovnání doprava */
}
.header-actions .action-item .icon-caret {
  max-width: 10px;
}
.header-actions .action-item:hover span {
  color: #fff;
}
.header-actions .action-item:hover span.action-label {
  background: #5324CD;
  color: #fff !important;
}
.header-actions .action-item:hover span.action-label a {
  color: white;
}
.header-actions .action-item:hover .icon-caret {
  filter: brightness(0) invert(1);
  transform: rotate(180deg);
}
.header-actions .action-item.account {
  position: relative;
}
.header-actions .action-item.account:hover ul.dropdown-menu {
  display: block;
}
.header-actions .action-item.account::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  z-index: 5;
}
.header-actions .action-item .action-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
.header-actions .action-item .action-link:hover .action-label:not(.is-active) {
  color: #5324CD;
}
.header-actions .action-item .action-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.header-actions .action-item .action-icon img {
  display: inline-block;
  width: 26px;
  height: 26px;
}
.header-actions .action-item .action-label {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 11px;
  line-height: 18px;
  min-height: 18px;
  white-space: nowrap;
  background: #eee;
  color: #555;
  transition: all 0.2s ease;
}
.header-actions .action-item .action-label.is-active {
  background: #5324CD;
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
}
.header-actions .action-item .dropdown-menu {
  border-radius: 10px;
  right: 0;
  left: auto;
  margin-top: 10px;
  padding: 0;
  width: max-content;
}
.header-actions .action-item .dropdown-menu li {
  border-bottom: 1px solid #E4E4E4;
}
.header-actions .action-item .dropdown-menu li:last-of-type {
  border-bottom: none;
}
.header-actions .action-item .dropdown-menu li a {
  display: inline-block;
  padding: 10px 15px;
  background: none;
  width: 100%;
}
/* Responsivní doladění */
@media (max-width: 992px) {
  .header-actions {
    gap: 5px;
  }
  .header-actions .action-item .action-icon {
    width: 26px;
    height: 26px;
  }
  .header-actions .action-item .action-icon img {
    width: 20px;
    height: 20px;
  }
  .header-actions .action-item .action-icon .icon-caret {
    right: -12px;
  }
  .header-actions .action-item .action-label {
    font-size: 11px;
    padding: 2px 8px;
  }
}
.brands-list-header {
  margin-bottom: 63px;
}
@media (max-width: 500px) {
  .brands-list-header {
    margin-bottom: 30px;
  }
}
.brands-list-header ul:after {
  content: "";
  flex: auto;
}
.brands-list-header ul li {
  margin-bottom: 8px;
  margin-right: 15px;
}
.brands-list-header ul li a {
  display: inline-block;
  align-items: center;
  border-radius: 25px;
  border: 1px solid #E4E4E4;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  width: auto;
  height: auto;
  padding: 5px 10px;
}
.brands-list-header ul li a:hover {
  text-decoration: none;
  border-color: #5324CD;
}
.brands-list-header ul li a img {
  width: 35px;
  height: 35px;
}
/* =========================
   QUICK SEARCH (modal panel)
   ========================= */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 9998;
}
.search-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
/* Panel (form) */
form.search.search-panel {
  /* když je zavřený, nech ho být klidně d-none z JS/Bootstrapu */
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 900px;
  padding: 16px 16px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.2);
  /* jemný “pop” při otevření */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  /* řádek s inputem + button */
  /* input wrapper */
  /* clear button (×) v inputu */
  /* tlačítko vedle inputu */
  /* suggestions dropdown pod inputem */
}
form.search.search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
form.search.search-panel .row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin: 0;
}
form.search.search-panel .row > [class*="col-"] {
  padding: 0 !important;
}
form.search.search-panel .input {
  flex: 1 1 auto;
  min-width: 0;
}
form.search.search-panel .search-input.form-control {
  height: 48px;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  padding-left: 14px;
  padding-right: 44px;
  font-size: 15px;
  box-shadow: none;
}
form.search.search-panel .btn.btn-clear {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: #6B7280;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}
form.search.search-panel .btn.btn-clear:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #111827;
}
form.search.search-panel button.button.primary.gradient-background {
  height: 48px;
  border-radius: 14px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
form.search.search-panel .search-suggest {
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.18);
  margin-top: 10px !important;
  overflow: auto;
  /* položky (pokud renderuješ <a class="dropdown-item">...) */
}
form.search.search-panel .search-suggest .dropdown-item {
  padding: 10px 12px;
  font-size: 14px;
}
form.search.search-panel .search-suggest .dropdown-item:hover {
  background: rgba(110, 82, 255, 0.1);
}
/* Mobile – panel skoro přes celou šířku a tlačítko klidně pod inputem */
@media (max-width: 768px) {
  form.search.search-panel {
    top: 12px;
    width: calc(100vw - 16px);
    padding: 12px;
    /* protože máš tlačítko na mobile hidden (d-none d-md-block),
       tak aspoň input bude full */
  }
  form.search.search-panel .row {
    flex-direction: column;
    gap: 10px;
  }
}
.input.quick-search::after {
  left: 14px;
}
form.search.search-panel .button.primary:hover:after {
  opacity: 0;
}
.input.quick-search::before {
  display: none;
}
.promo-slider {
  position: relative;
}
@media (max-width: 500px) {
  .promo-slider {
    max-width: 92%;
    left: 4%;
  }
}
.promo-slider .swiper {
  height: 480px;
  max-width: 1320px;
  padding: 0;
}
.promo-slider .slide {
  min-height: 480px;
  position: relative;
}
.promo-slider .slide a.banner-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  transition: all 0.2s linear;
  background-size: cover !important;
}
.promo-slider .slide a.banner-wrapper:hover {
  text-decoration: none;
}
.promo-slider .slide a.banner-wrapper:hover:after {
  transition: all 0.2s linear;
  opacity: 1;
  height: 95%;
}
.promo-slider .slide a.banner-wrapper:after {
  opacity: 0.75;
  content: '';
  position: absolute;
  width: 100%;
  height: 60%;
  border-radius: 25px;
  z-index: 0;
  background: #000000;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.2s linear;
}
.promo-slider .slide a.banner-wrapper .banner-content {
  z-index: 1;
}
/* Blog list */
.blog-list .article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-end;
  align-items: flex-start;
  height: 300px;
  transition: all 0.2s linear;
  background-size: cover !important;
}
.blog-list .article:hover:before {
  transition: all 0.2s linear;
  opacity: 1;
}
.blog-list .article:before {
  opacity: 0.75;
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 0;
  background: #000000;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.2s linear;
}
.blog-list .article .content {
  padding: 30px;
  z-index: 99;
}
@media (max-width: 500px) {
  .blog-list .article .content {
    padding: 20px;
  }
}
.brands-slider-wrapper,
.clients-slider-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  /* Adjust as needed */
  position: relative;
}
.brands-slider-wrapper .brands-slider,
.clients-slider-wrapper .brands-slider,
.brands-slider-wrapper .clients-slider,
.clients-slider-wrapper .clients-slider {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.brands-slider-wrapper .brands-slider a,
.clients-slider-wrapper .brands-slider a,
.brands-slider-wrapper .clients-slider a,
.clients-slider-wrapper .clients-slider a,
.brands-slider-wrapper .brands-slider li,
.clients-slider-wrapper .brands-slider li,
.brands-slider-wrapper .clients-slider li,
.clients-slider-wrapper .clients-slider li {
  height: 100%;
  display: inline-block;
  width: 220px;
  border: 1px solid #E4E4E4;
  border-radius: 6px;
  padding: 0px 10px;
  margin-left: 15px;
  margin-right: 15px;
}
@media (max-width: 768px) {
  .brands-slider-wrapper .brands-slider a,
  .clients-slider-wrapper .brands-slider a,
  .brands-slider-wrapper .clients-slider a,
  .clients-slider-wrapper .clients-slider a,
  .brands-slider-wrapper .brands-slider li,
  .clients-slider-wrapper .brands-slider li,
  .brands-slider-wrapper .clients-slider li,
  .clients-slider-wrapper .clients-slider li {
    width: 170px;
  }
}
.brands-slider-wrapper .brands-slider li:first-of-type,
.clients-slider-wrapper .brands-slider li:first-of-type,
.brands-slider-wrapper .clients-slider li:first-of-type,
.clients-slider-wrapper .clients-slider li:first-of-type {
  margin-left: 0;
}
.brands-slider-wrapper .brands-slider li:last-of-type,
.clients-slider-wrapper .brands-slider li:last-of-type,
.brands-slider-wrapper .clients-slider li:last-of-type,
.clients-slider-wrapper .clients-slider li:last-of-type {
  margin-right: 0;
}
/*
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}*/
ul.breadcrumb li {
  position: relative;
  padding: 0 10px;
}
ul.breadcrumb li:first-of-type {
  padding-left: 0;
}
ul.breadcrumb li:last-of-type:after {
  display: none;
}
ul.breadcrumb li:after {
  content: '/';
  position: absolute;
  right: -3px;
  top: 0;
}
ul.breadcrumb li a {
  font-size: 14px;
  color: #555555;
  text-decoration: underline;
}
section.quotation .quotation strong {
  color: #5324CD;
  margin-bottom: 8px;
  display: inline-block;
}
section.quotation .quotation small {
  font-size: 16px;
  color: #555555;
}
section.text-box-with-bg {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 90px;
}
@media (max-width: 768px) {
  section.text-box-with-bg {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.text-box-with-bg .background > .row {
    padding-left: 15px;
    padding-right: 15px;
  }
}
section.text-box-with-bg .background {
  border-radius: 40px;
}
section.text-box-with-bg .background.about {
  background-clip: content-box !important;
  background: url('/catalog/view/theme/default/image/layout/text-box-bg-about-us.jpg') top center no-repeat;
}
@media (max-width: 768px) {
  section.text-box-with-bg .background.about {
    background: url('/catalog/view/theme/default/image/layout/text-box-bg-about-us-phone.jpg') top center no-repeat;
  }
}
section.text-box-with-bg .background.why-choose-us {
  background-clip: content-box !important;
  background: url('/catalog/view/theme/default/image/layout/why_choose_us.png') top center no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  section.text-box-with-bg .background.why-choose-us {
    background: url('/catalog/view/theme/default/image/layout/why_choose_us.png') top center no-repeat;
  }
}
section.text-box-with-bg .background .box {
  background: white;
  border-radius: 20px;
  margin-top: 70px;
  border: 1px solid #E4E4E4;
  padding: 30px;
  position: relative;
  top: 40px;
}
@media (max-width: 768px) {
  section.text-box-with-bg .background .box {
    margin-top: 220px;
  }
}
section.text-box-with-bg .background .box h2 {
  margin-top: 10px;
  margin-bottom: 10px;
}
section.text-box-with-bg .background .box strong.h4 {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .accordion {
    margin-bottom: 30px;
  }
}
.accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #E4E4E4;
}
.accordion .accordion-item:first-of-type,
.accordion .accordion-item:last-of-type {
  border-radius: none;
}
.accordion .accordion-item .accordion-header h2,
.accordion .accordion-item .accordion-header button {
  font-size: 20px;
  color: #000000;
  font-weight: 700;
  line-height: 28px;
}
.accordion .accordion-item .accordion-header .accordion-button:focus {
  background: none;
  box-shadow: none;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  background: url('/catalog/view/theme/default/image/layout/minus-icon.svg') top center no-repeat;
  transform: none;
}
.accordion .accordion-item .accordion-header .accordion-button:after {
  width: 24px;
  height: 24px;
  background: url('/catalog/view/theme/default/image/layout/plus-icon-faq.svg') top center no-repeat;
}
.accordion .accordion-item .accordion-body {
  font-size: 18px;
  line-height: 30px;
  color: #3f3f3f;
  max-width: 95%;
}
section.promo-text-img-on-side {
  padding-bottom: 62px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  section.promo-text-img-on-side .image {
    margin-bottom: 40px;
  }
}
section.promo-text-img-on-side .button {
  margin-top: 8px;
  width: 100%;
}
@media (max-width: 768px) {
  section.promo-text-img-on-side ul li {
    width: 100%;
    text-align: center;
  }
}
section.promo-text-img-on-side.contact h2 {
  margin-bottom: 10px;
}
section.promo-text-img-on-side.contact h3 {
  margin-bottom: 30px;
}
section.promo-text-img-on-side.contact .button {
  width: auto;
}
@media (max-width: 576px) {
  section.promo-text-img-on-side.contact .button {
    width: 100%;
  }
}
section.promo-text-img-on-side .content h1 {
  margin-bottom: 30px;
}
section.text-border-boxes .text-box {
  padding: 30px;
}
section.text-border-boxes .text-box h2 {
  margin-bottom: 0;
}
section.text-border-boxes .text-box h2 small.h4 {
  margin-bottom: 20px;
  margin-top: 10px;
}
section.text-border-boxes .text-box:hover {
  border-color: #5324CD;
  text-decoration: none;
  color: inherit;
  opacity: 1;
}
section.text-border-boxes .text-box:hover span {
  text-decoration: underline;
}
section.seo-text {
  color: #555555;
}
section.faq .text h2 {
  margin-bottom: 10px;
}
section.faq .text h3 {
  margin-bottom: 30px;
}
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.85) !important;
}
#fancybox-overlay {
  background: rgba(255, 255, 255, 0.35) !important;
}
.fancybox__content > .f-button.is-close-btn {
  top: 8px;
  right: 8px;
  color: #111;
}
.dc-clearfix {
  text-align: center;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 84px;
}
.dc-clearfix a {
  cursor: pointer;
}
.tf-filter {
  margin-top: 8px;
}
section.brands-list {
  padding-top: 30px;
  padding-bottom: 30px;
}
section.brands-list.headline {
  padding-bottom: 10px;
}
/* boxes section swiper boxex 3 */
.swiper-boxes {
  overflow: hidden;
  position: relative;
}
.swiper-boxes.two-boxes .swiper-wrapper {
  padding-bottom: 0;
}
.swiper-boxes.two-boxes .swiper-wrapper .swiper-slide {
  width: 49% !important;
  margin-right: 0 !important;
}
@media (max-width: 1000px) {
  .swiper-boxes.two-boxes .swiper-wrapper .swiper-slide {
    width: 100% !important;
    margin-right: 15px !important;
  }
}
.swiper-boxes .swiper-wrapper {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1000px) {
  .swiper-boxes .swiper-wrapper {
    padding-bottom: 42px;
  }
}
.swiper-boxes .swiper-wrapper .swiper-slide {
  margin-right: 0 !important;
}
@media (max-width: 1000px) {
  .swiper-boxes .swiper-wrapper .swiper-slide {
    width: 100% !important;
    margin-right: 15px !important;
  }
}
.swiper-boxes .swiper-wrapper .swiper-slide:first-of-type {
  padding-left: 0;
}
.swiper-boxes .swiper-wrapper .swiper-slide:last-child {
  padding-right: 0;
}
section.product-promo .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
section.product-promo h2 {
  margin-bottom: 10px;
}
section.headline {
  padding-bottom: 0;
}
section.headline p {
  margin-bottom: 10px;
}
ul.pagination {
  margin-bottom: 0;
}
ul.pagination li {
  background: #F6F6F6;
  margin-right: 2px;
  font-size: 14px;
  border-radius: 5px;
}
ul.pagination li.active a,
ul.pagination li:hover a {
  background: #5324CD;
  color: white;
  cursor: pointer;
}
ul.pagination li.active span {
  background: #5324CD;
  color: white;
}
ul.pagination li a,
ul.pagination li span {
  background: #F6F6F6;
  padding: 5px 12px;
  border-radius: 5px;
  display: inline-block;
}
ul.pagination li a:hover,
ul.pagination li span:hover {
  color: white;
  text-decoration: none;
}
div.results {
  font-size: 14px;
}
/* datatables */
.dataTables_length,
.dataTables_filter {
  display: none !important;
}
table.dataTable td {
  font-size: 14px;
  line-height: 18px;
  vertical-align: middle;
}
table.dataTable {
  width: 100% !important;
}
.active > .page-link,
.page-link.active {
  border: none !important;
  color: white !important;
}
.page-link {
  color: #000000 !important;
}
.manufactures-promo .brands-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  /* Center the rows */
  gap: 20px;
  /* Explicitly add gaps between items */
}
.manufactures-promo .brands-list.customers {
  flex-wrap: nowrap;
  width: 100%;
}
@media (max-width: 1000px) {
  .manufactures-promo .brands-list.customers {
    flex-wrap: wrap;
  }
}
.manufactures-promo .brands-list.full-width {
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}
.manufactures-promo .brands-list a:hover,
.manufactures-promo .brands-list div:hover {
  border-color: #5324CD;
}
.manufactures-promo .brands-list div.brand-item {
  text-align: center;
}
.manufactures-promo .brands-list div.brand-item img {
  background: white;
}
@media (max-width: 500px) {
  .manufactures-promo .brands-list a,
  .manufactures-promo .brands-list div {
    width: 158px;
    height: 72px;
    background: white;
  }
}
.manufactures-promo .brands-list a img,
.manufactures-promo .brands-list div img {
  margin-left: auto;
  margin-right: auto;
  max-height: 75px;
}
.manufactures-promo .brands-list div {
  width: 220px;
}
@media (max-width: 500px) {
  .manufactures-promo .brands-list div {
    width: 158px;
    height: 72px;
  }
}
/* základ: ať jde badge absolutně přes ikonu */
.header-actions .action-item.account .action-icon {
  position: relative;
  display: inline-block;
}
/* jen když je user přihlášený */
.header-actions .action-item.account.is-logged .login-badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(45%, -45%);
  /* hezky do pravého horního rohu */
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2f9306b8;
  /* zelená */
  border: 2px solid #fff;
  /* bílý okraj, aby badge „seděl“ nad ikonou */
  color: #fff;
  /* bílá fajfka */
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* neblokovat klik na ikonu */
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.product-list .product {
  transition: all 0.3s ease;
  margin-bottom: 62px;
}
.product-list .product .image-wrapper {
  border: 1px solid #E4E4E4;
  border-radius: 25px;
  text-align: center;
  margin-bottom: 18px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-list .product .image-wrapper a {
  display: inline-block;
  padding: 25px;
}
.product-list .product .image-wrapper a img {
  transition: opacity 0.4s ease-in-out;
}
.product-list .product .image-wrapper a img.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  margin: auto;
  bottom: 0;
}
.product-list .product .image-wrapper:hover a img.img-main {
  opacity: 0;
}
.product-list .product .image-wrapper:hover a img.img-hover {
  opacity: 1;
}
.product-list .product .product-details .sku {
  color: #555555;
  font-size: 14px;
  margin-bottom: 10px;
}
.product-list .product .product-details h3.name {
  font-size: 16px;
  line-height: 22px;
  min-height: 44px;
  margin-bottom: 5px;
}
.product-list .product .product-details p {
  color: #555555;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
.product-list .product .product-details a.detail {
  font-weight: 700;
  position: relative;
}
@media (max-width: 500px) {
  .product-list .product {
    margin-bottom: 40px;
  }
}
.product-list .product.b2b {
  width: 100% !important;
  margin-bottom: 0;
}
.product-list .product.b2b .image-wrapper {
  display: none;
}
.product-list .product.b2b .product-details {
  display: flex;
}
.product-list .product.b2b .product-details p {
  display: none;
}
.product-list .product:hover .image-wrapper {
  border-color: #5324CD;
  cursor: pointer;
}
.category-header .category-description {
  margin-top: 20px;
}
.category-header .category-description h1 {
  line-height: 38px;
  margin-bottom: 25px;
}
.category-header .category-description h1 small {
  margin-top: 10px;
  display: block;
}
@media (max-width: 500px) {
  .category-header .category-description h1 small {
    line-height: 32px;
  }
}
.category-header .category-description p {
  margin-bottom: 32px;
}
.category-header .mobile-filter {
  margin-bottom: 30px;
}
.category-header .brands-list {
  margin-bottom: 63px;
}
@media (max-width: 500px) {
  .category-header .brands-list {
    margin-bottom: 30px;
  }
}
.category-header .brands-list ul:after {
  content: "";
  flex: auto;
}
.category-header .brands-list ul li {
  margin-bottom: 8px;
  margin-right: 15px;
}
@media (max-width: 500px) {
  .category-header .brands-list ul li:nth-of-type(even) {
    margin-right: 0;
  }
}
.category-header .brands-list ul li a {
  display: flex;
  align-items: center;
  border-radius: 25px;
  border: 1px solid #E4E4E4;
  width: 200px;
  height: 50px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
}
@media (max-width: 500px) {
  .category-header .brands-list ul li a {
    width: 160px;
  }
}
.category-header .brands-list ul li a:hover {
  text-decoration: none;
  border-color: #5324CD;
}
.category-header .brands-list ul li a img {
  width: 35px;
  height: 35px;
}
.category-bottom-content .container-xl {
  padding: 0;
}
@media (max-width: 500px) {
  .category-bottom-content .container-xl {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.product-labeled-navigation ul {
  margin-bottom: 12px;
}
select#input-sort {
  background: #F6F6F6;
  border-radius: 6px;
  width: 100%;
  border: none;
  padding: 15px 10px;
  color: #555555;
  margin-top: 10px;
  margin-bottom: 10px;
}
#information-information .product-list .product:nth-child(5),
#information-information .product-list .product:nth-child(6),
#information-information .product-list .product:nth-child(7),
#information-information .product-list .product:nth-child(8) {
  margin-bottom: 0;
}
.tf-filter-group.manufacturer {
  display: none;
}
.refine ul li a {
  font-size: 15px;
  line-height: 24px;
}
.column-left {
  position: relative;
}
.tf-filter-group-search {
  display: none !important;
}
.tf-filter-group-content.scroll {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.tf-filter-group-content.scroll .tf-filter-value:last-of-type {
  margin-bottom: 0 !important;
}
/* prepinani zobrazeni */
.product-layout.b2b-view-list,
.product-list.b2b-view-list {
  display: flex;
  flex-direction: column;
}
.product-layout.b2b-view-list .product,
.product-list.b2b-view-list .product {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  gap: 1rem;
  font-size: 14px;
  margin-bottom: 0;
}
.product-layout.b2b-view-list .product .image-wrapper,
.product-list.b2b-view-list .product .image-wrapper {
  flex: 0 0 50px;
}
.product-layout.b2b-view-list .product .image-wrapper img,
.product-list.b2b-view-list .product .image-wrapper img {
  width: 50px;
  height: auto;
  object-fit: contain;
}
.product-layout.b2b-view-list .product .product-details,
.product-list.b2b-view-list .product .product-details {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.product-layout.b2b-view-list .product .product-details .sku,
.product-list.b2b-view-list .product .product-details .sku {
  font-size: 13px;
  color: #777;
  display: block;
}
.product-layout.b2b-view-list .product .product-details .name,
.product-list.b2b-view-list .product .product-details .name {
  font-weight: 700;
  margin: 0;
  font-size: 14px;
}
.product-layout.b2b-view-list .product .product-details .name a,
.product-list.b2b-view-list .product .product-details .name a {
  color: #000;
  text-decoration: none;
}
.product-layout.b2b-view-list .product .product-details p,
.product-list.b2b-view-list .product .product-details p {
  margin: 0;
  font-size: 13px;
  color: #666;
}
.product-layout.b2b-view-list .product .stock,
.product-list.b2b-view-list .product .stock,
.product-layout.b2b-view-list .product .price,
.product-list.b2b-view-list .product .price,
.product-layout.b2b-view-list .product .quantity,
.product-list.b2b-view-list .product .quantity {
  flex: 1;
  text-align: center;
  font-weight: 500;
}
.product-layout.b2b-view-list .product .quantity,
.product-list.b2b-view-list .product .quantity {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-layout.b2b-view-list .product .quantity input,
.product-list.b2b-view-list .product .quantity input {
  width: 50px;
  text-align: center;
}
.product-layout.b2b-view-list .product .add-to-cart,
.product-list.b2b-view-list .product .add-to-cart {
  flex: 0 0 40px;
  text-align: right;
}
.product-layout.b2b-view-list .product .add-to-cart a,
.product-list.b2b-view-list .product .add-to-cart a {
  color: #7b3ff2;
  font-size: 20px;
}
.product-list.b2b-view-list .product {
  margin-bottom: 0;
}
.category-row.no-sidebar .column-left {
  display: none !important;
}
.category-row.no-sidebar #content {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  #view-list .product {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem !important;
    padding: 1rem 0;
  }
  #view-list .product .product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  #view-list .product .product-header img {
    flex: 0 0 50px;
    height: auto;
  }
  #view-list .product .product-header .product-info {
    flex: 1;
  }
  #view-list .product .product-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  #view-list .product .product-footer > div {
    flex: 1 1 48%;
    text-align: center;
  }
  #view-list .product .product-footer .quantity-input {
    width: 100%;
  }
  #view-list .product .product-footer .add-to-cart-btn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  #view-list .row-line {
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 1rem;
  }
  #view-list .row-line .d-flex:first-child {
    flex: 2 !important;
    margin-bottom: 0 !important;
  }
  #view-list .row-line .justify-content-between {
    flex: 4 !important;
    margin-top: 0 !important;
    flex-wrap: nowrap !important;
  }
  #view-list .row-line .justify-content-between > div {
    flex: 1;
    text-align: center;
  }
  #view-list .row-line .justify-content-between .quantity-input {
    max-width: 60px;
  }
  #view-list .row-line .justify-content-between .add-to-cart-btn {
    padding: 4px 8px;
  }
}
#view-list .update-quantity {
  background: #5324CD;
  color: white;
}
#view-list .product-quantity {
  padding: 4px;
  border-radius: 0px !important;
  font-size: 14px;
  width: 40px;
  border: none !important;
  background: #5324CD;
  font-weight: 700;
}
#view-list .product-quantity:focus {
  border: none !important;
  background: white;
}
#view-list input[type="number"].product-quantity::-webkit-inner-spin-button,
#view-list input[type="number"].product-quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#view-list input[type="number"].product-quantity {
  -moz-appearance: textfield;
}
#view-list .update-quantity {
  border: none;
  font-weight: 700;
}
#view-list .update-quantity button {
  border: none;
}
#view-list .update-quantity:first-of-type {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}
#view-list .update-quantity:last-of-type {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}
#view-list .quantity-input {
  border: none;
  background: #f6f6f6;
  line-height: 29px;
}
#view-list .quantity-input:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
.image-wrapper {
  position: relative;
}
.image-wrapper .labels {
  position: absolute;
  z-index: 99;
  left: 15px;
  top: 15px;
}
.image-wrapper .labels .bestseller {
  margin-right: 2px;
}
.labels {
  font-size: 14px;
  margin-right: 8px;
}
/* Empty state (grid + list) */
.bf-empty-state {
  min-height: 420px;
  /* <- výška prázdného výsledku */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 12px;
}
.bf-empty-card {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  text-align: center;
}
.bf-empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  /* jemná fialová */
  font-size: 22px;
  margin-bottom: 12px;
}
.bf-empty-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.bf-empty-text {
  margin: 0 auto 16px;
  max-width: 46ch;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
}
.bf-empty-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.bf-empty-btn {
  appearance: none;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.08);
  color: #4C1D95;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.bf-empty-btn:hover {
  transform: translateY(-1px);
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.55);
}
/* Empty in table cell */
.bf-empty-td {
  padding: 18px !important;
  background: #fff;
}
.bf-empty-card--table {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  max-width: none;
  box-shadow: none;
  border: 1px dashed rgba(17, 24, 39, 0.18);
}
.bf-empty-card--table .bf-empty-icon {
  margin: 0;
}
.bf-empty-card--table .bf-empty-title {
  margin: 0 0 4px;
  font-size: 16px;
}
.bf-empty-card--table .bf-empty-text {
  margin: 0;
  max-width: none;
}
/* Chips – collapse/expand */
.bf-chips {
  --bf-chips-max-h: 92px;
  /* kolik řádků chceš ukázat (uprav) */
  position: relative;
}
/* collapsed state */
.bf-chips.is-collapsed {
  max-height: var(--bf-chips-max-h);
  overflow: hidden;
}
/* fade dole v collapsed stavu */
.bf-chips.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}
/* toggle button */
.bf-chips-toggle {
  display: none;
  margin-top: 0px;
  margin-bottom: 10px;
  position: relative;
  top: -5px;
  font-size: 13px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}
.bf-chips-toggle.is-visible {
  display: inline-block;
}
.product-detail {
  margin-top: 15px;
}
.product-detail .product-info .image-wrapper {
  text-align: center;
  border: 1px solid #E4E4E4;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}
.product-detail .product-info .image-wrapper a:hover {
  text-decoration: none;
}
.product-detail .product-info .image-wrapper a:hover label {
  color: #000000;
}
.product-detail .product-info .image-wrapper .labels {
  position: absolute;
  left: 20px;
  top: 20px;
}
.product-detail .product-info .image-wrapper .labels label {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
}
@media (max-width: 500px) {
  .product-detail .product-info ul.thumbnails li {
    max-width: 70px;
  }
}
.product-detail .product-info #tab-description img {
  border-radius: 20px;
  max-width: 100%;
}
.product-detail .product-right-info {
  position: sticky;
  top: 110px;
  /* Adjust if you have a header */
  align-self: start;
  /* Ensures proper alignment inside flex containers */
}
@media (max-width: 768px) {
  .product-detail .product-right-info {
    top: 0;
    position: relative;
  }
}
.product-detail .product-right-wrapper {
  position: relative;
  /* Ensure relative positioning for absolute child positioning */
  overflow: visible;
  /* Keep the right info visible during scrolling */
}
.product-detail .product-right-info .small-description {
  margin-bottom: 30px;
}
.product-detail .product-right-info .small-description li {
  font-size: 14px;
  color: #555555;
}
.product-detail .product-right-info .small-description li a {
  text-decoration: underline;
}
.product-detail .product-right-info .small-description li span {
  color: #000000;
}
.product-detail .product-right-info .short-description {
  margin-bottom: 5px;
}
.product-detail .product-right-info .additional-info {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #E4E4E4;
}
.product-detail .product-right-info .additional-info li {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product-detail .product-right-info h2.price {
  line-height: 28px;
}
.product-detail .product-right-info h2.price small {
  font-size: 14px;
  color: #8D8D8D;
  font-weight: normal;
  position: relative;
  top: -5px;
}
.account #content {
  min-height: 80vh;
}
.account #content h1 {
  margin-bottom: 30px;
}
.account #content .account-menu li.current a {
  color: #5324CD;
  position: relative;
  font-weight: 700;
}
.account #content .account-menu li.current a:after {
  content: '';
  width: 100%;
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background: #5324CD;
  bottom: -20px;
  left: 0;
  right: 0;
}
.account #content .account-menu li a:hover {
  text-decoration: none;
  color: #5324CD;
}
.account-section {
  margin-bottom: 40px;
}
.account-boxes .account-box {
  border-radius: 20px;
  border: 2px solid #E4E4E4;
  margin-bottom: 20px;
}
.account-boxes .account-box .value {
  color: #000000;
}
.account-boxes .account-box .description {
  color: #555555;
}
.account-boxes .account-box a {
  color: #5324CD;
}
.account-boxes .account-box span.label {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 12px;
  color: #555555;
  background: #F6F6F6;
  border-radius: 6px;
  border: none;
  line-height: 22px;
  padding: 0 8px;
  font-weight: 700;
}
.account-boxes .account-box.confirmed {
  background: #faffec;
  border-color: #e0f59f;
}
.account-boxes .account-box.failed {
  background: #ffecec;
  border-color: #f59f9f;
}
#ordersTable tr:hover td {
  box-shadow: none !important;
  background-color: #F6F6F6;
}
#ordersTable tr th {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  border: none;
  border-bottom: 2px solid #E4E4E4;
  height: 60px;
}
#ordersTable tr td {
  border: none;
  border-bottom: 2px solid #E4E4E4;
  font-size: 16px;
  height: 60px;
}
.vat-loader {
  background: rgba(255, 255, 255, 0.6);
  display: none;
  /* výchozí skrytý stav */
  z-index: 10;
}
.vat-loader.active {
  display: flex !important;
}
.dot-flashing {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #6f42c1;
  animation: dotFlashing 1s infinite linear alternate;
}
@keyframes dotFlashing {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.summary .cart-product .product-name p {
  font-size: 14px;
}
.summary .cart-product .product-name p a {
  color: #555555;
}
.cart-product {
  background: #F6F6F6;
  margin-bottom: 10px;
  border-radius: 6px;
}
.cart-product .image {
  width: 45px;
  height: 45px;
  padding: 5px;
  border-radius: 10px;
  display: block;
  background: white;
  text-align: center;
}
.cart-product .image img {
  max-width: 90%;
  margin: auto;
}
.cart-product .product-name h6 {
  display: block;
  margin-bottom: 5px;
}
.cart-product .product-name small {
  font-size: 14px;
  color: #555555;
}
.cart-product .product-quantity {
  padding: 4px;
  border-radius: 0px !important;
  font-size: 14px;
  width: 40px;
  border: none !important;
  background: white;
  font-weight: 700;
}
.cart-product .product-quantity:focus {
  border: none !important;
  background: white;
}
.cart-product input[type="number"].product-quantity::-webkit-inner-spin-button,
.cart-product input[type="number"].product-quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-product input[type="number"].product-quantity {
  -moz-appearance: textfield;
}
.cart-product .update-quantity {
  background: white;
  border: none;
  font-weight: 700;
}
.cart-product .update-quantity button {
  border: none;
}
.summary {
  border-radius: 20px;
  border: 2px solid #E4E4E4;
  box-shadow: none;
  padding: 20px;
}
.summary hr {
  height: 2px;
}
#cart-totals div {
  margin-top: 10px;
  margin-bottom: 10px;
}
#cart-totals div span.fw-bold,
#cart-totals div span.fw-bold strong {
  font-weight: 400 !important;
}
#cart-totals div span.cart-total {
  font-weight: 700;
}
/* BJUTIP – Free shipping box in cart drawer */
.cart-drawer__free-shipping {
  border-color: rgba(98, 60, 234, 0.18) !important;
  background: rgba(98, 60, 234, 0.04);
  border-radius: 20px !important;
}
.cart-drawer__free-shipping .progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  /* jemná šedá */
  overflow: hidden;
}
.cart-drawer__free-shipping .free-ship__bar {
  background: linear-gradient(45deg, #6b46cb 0%, #3900ce 100%);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.cart-drawer__free-shipping .free-ship__message {
  color: rgba(17, 24, 39, 0.75);
  line-height: 1.25rem;
}
.cart-drawer__free-shipping.is-achieved {
  border-color: rgba(98, 60, 234, 0.28) !important;
  background: rgba(98, 60, 234, 0.07);
}
.cart-drawer__free-shipping.is-achieved .free-ship__message {
  color: #623CEA;
  /* BJUTIP fialová */
}
.cart-drawer__free-shipping.is-achieved .free-ship__message .text-success {
  color: #623CEA !important;
  /* přebije bootstrap zelenou */
}
/*# sourceMappingURL=style.css.map */
.page-product-list-guest {
  font-family: 'Inter', sans-serif;
}
.page-product-list-guest .hero--catalog {
  background: linear-gradient(90deg, #1a1040 0%, #3d2070 30%, #6b4a6e 60%, #c07a50 100%);
  color: #fff;
}
.page-product-list-guest .hero--catalog .hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 140px;
}
.page-product-list-guest .hero--catalog .hero__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-product-list-guest .hero--catalog .hero__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}
.page-product-list-guest .hero--catalog .hero__sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.page-product-list-guest .hero--catalog .hero__tags {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.page-product-list-guest .hero--catalog .hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.page-product-list-guest .hero--catalog .hero__or {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: lowercase;
}
.page-product-list-guest .toolbar {
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  margin-bottom: 15px;
}
.page-product-list-guest .toolbar .toolbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 60px;
  flex-wrap: wrap;
}
.page-product-list-guest .toolbar .toolbar__filter,
.page-product-list-guest .toolbar .toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: #29303f;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.15s;
}
.page-product-list-guest .toolbar .toolbar__filter:hover,
.page-product-list-guest .toolbar .toolbar__sort:hover {
  background: #f5f5f5;
}
.page-product-list-guest .toolbar .toolbar__count {
  font-size: 14px;
  font-weight: 700;
  color: #444;
}
.page-product-list-guest .toolbar .toolbar__search {
  flex: 1 1 200px;
  position: relative;
  display: flex;
  align-items: center;
}
.page-product-list-guest .toolbar .toolbar__search input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  padding: 6px 28px 6px 0;
  font-size: 14px;
  background: transparent;
  color: #29303f;
}
.page-product-list-guest .toolbar .toolbar__search input:focus {
  outline: none;
  border-color: #5324CD;
}
.page-product-list-guest .toolbar .toolbar__search svg {
  position: absolute;
  right: 0;
  color: #9a9fa8;
  pointer-events: none;
}
.page-product-list-guest .toolbar .toolbar__chevron {
  opacity: 0.5;
  transition: transform 0.2s ease;
}
.page-product-list-guest .toolbar .toolbar__filter.is-open .toolbar__chevron {
  transform: rotate(180deg);
}
.page-product-list-guest .filter {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1500;
}
.page-product-list-guest .filter.is-open {
  display: block;
}
.page-product-list-guest .filter__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, 0.4);
}
.page-product-list-guest .filter__panel {
  position: fixed;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 22, 37, 0.16);
  animation: filterSlideDown 0.2s ease;
}
.page-product-list-guest .filter__arrow {
  position: absolute;
  top: -8px;
  left: 32px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: -2px -2px 6px rgba(15, 22, 37, 0.06);
}
@keyframes filterSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-product-list-guest .filter__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.page-product-list-guest .filter__head strong {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.page-product-list-guest .filter__head span {
  font-size: 13px;
  color: #777;
}
.page-product-list-guest .filter__close {
  border: none;
  background: none;
  font-size: 24px;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0;
}
.page-product-list-guest .filter__close:hover {
  color: #111;
}
.page-product-list-guest .filter__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.page-product-list-guest .filter__actions button {
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 700;
  color: #5324CD;
  cursor: pointer;
  padding: 0;
}
.page-product-list-guest .filter__actions button:hover {
  text-decoration: underline;
}
.page-product-list-guest .filter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 32px;
  margin-bottom: 24px;
}
.page-product-list-guest .filter__grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #29303f;
  cursor: pointer;
}
.page-product-list-guest .filter__grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #5324CD;
  cursor: pointer;
}
.page-product-list-guest .filter__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}
.page-product-list-guest .filter__selected {
  font-size: 13px;
  color: #777;
}
.page-product-list-guest .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}
.page-product-list-guest .pagination button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  font-size: 14px;
  color: #29303f;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-product-list-guest .pagination button:hover {
  border-color: #5324CD;
  color: #5324CD;
}
.page-product-list-guest .pagination button.is-active {
  background: #5324CD;
  color: #fff;
  border-color: #5324CD;
}
@media (max-width: 992px) {
  .page-product-list-guest .hero--catalog .hero__inner {
    height: auto;
    padding: 32px 0;
    flex-wrap: wrap;
  }
  .page-product-list-guest .filter__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .page-product-list-guest .toolbar .toolbar__inner {
    height: auto;
  }
  .page-product-list-guest .toolbar__inner {
    gap: 12px;
    height: auto;
    padding: 12px 0;
  }
  .page-product-list-guest .toolbar__count {
    display: none;
  }
  .page-product-list-guest .filter__panel {
    width: 94vw;
    left: 3vw ;
  }
  .page-product-list-guest .filter__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0 40px;
}
@media (max-width: 992px) {
  .grid__cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .grid__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
.product-card {
  background: #fff;
  border-radius: 5px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 4px 16px rgba(15, 22, 37, 0.05);
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 22, 37, 0.12);
}
.product-card:hover .card__overlay {
  opacity: 1;
}
.product-card--out-of-stock .card__img {
  opacity: 0.7;
}
.product-card .card__img {
  position: relative;
  background: #fff;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-card .card__img img {
  max-height: 190px;
  width: auto;
  object-fit: contain;
  display: block;
}
.product-card .card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #222;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.product-card .card__badge--hot {
  background: #5324CD;
}
.product-card .card__overlay {
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}
.card__img .product-card .card__overlay {
  inset: 0;
}
.product-card .card__body {
  padding: 14px 16px 16px;
  text-align: center;
}
.product-card .card__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #222;
  margin: 0 0 2px;
}
.product-card .card__brand {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(68, 68, 68, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06px;
  margin: 0 0 10px;
  padding-bottom: 10px;
}
.product-card .card__meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  color: rgba(68, 68, 68, 0.8);
}
.product-card .card__meta span,
.product-card .card__meta .in-stock,
.product-card .card__meta .out-of-stock {
  font-weight: 300;
}
.product-card .card__meta .out-of-stock span {
  color: #999;
}
nav.pagination ul.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0 56px;
  list-style: none;
  padding: 0;
}
nav.pagination ul.pagination li a,
nav.pagination ul.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #dfe3ea;
  background: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: #1f2430;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
}
nav.pagination ul.pagination li a:hover {
  border-color: #5324CD;
  color: #5324CD;
}
nav.pagination ul.pagination li.active span {
  background: #5324CD;
  border-color: #5324CD;
  color: #fff;
  font-weight: 700;
}
.page-product-list-guest .filter__panel {
  max-height: 50vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.page-product-list-guest .filter__panel .filter__head,
.page-product-list-guest .filter__panel .filter__actions {
  flex-shrink: 0;
}
.page-product-list-guest .filter__panel .filter__grid {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding-right: 4px;
}
.page-product-list-guest .filter__panel .filter__grid::-webkit-scrollbar {
  width: 4px;
}
.page-product-list-guest .filter__panel .filter__grid::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.page-product-list-guest .filter__panel .filter__grid::-webkit-scrollbar-thumb {
  background: rgba(83, 36, 205, 0.3);
  border-radius: 6px;
}
.page-product-list-guest .filter__panel .filter__footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 14px;
  margin-top: 8px;
}
.product-card.card--out-of-stock .card__img {
  opacity: 0.72;
}
.product-card .card__badge.badge-hot {
  background: #5324CD;
}
.product-card .card__badge.badge-new {
  background: rgba(17, 17, 17, 0.85);
}
.product-card .qty-control {
  height: 44px;
  border: 1px solid rgba(83, 36, 205, 0.38);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.product-card .qty-control .qty-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #5324CD;
  font-weight: 800;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.product-card .qty-control .qty-btn:hover {
  background: rgba(83, 36, 205, 0.08);
}
.product-card .qty-control .qty-input {
  width: 54px;
  height: 44px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 800;
  color: #29303f;
  font-family: 'Inter', sans-serif;
}
.product-card .qty-control .qty-input:focus {
  outline: none;
}
.product-card .product-card__add {
  border-radius: 6px;
  box-shadow: 0 16px 30px rgba(83, 36, 205, 0.18);
}
.product-card .product-card__details-link {
  color: #5324CD;
  font-weight: 700;
}
.product-card .product-card__details-link:hover {
  color: #481fb3;
  text-decoration: underline;
}
.product-card .card__title--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  min-height: 2.6em;
}
.product-card .card__ean {
  font-size: 12px;
  color: rgba(75, 85, 101, 0.85);
}
.product-card .card__price .price-current {
  font-weight: 800;
  color: #29303f;
}
.product-card .card__price .price-compare {
  color: rgba(75, 85, 101, 0.7);
}
.product-card .product-card__view {
  border-radius: 6px;
}
.page-product-list-guest .product-card--guest {
  position: relative;
}
.page-product-list-guest .product-card--guest .card__img {
  min-height: 280px;
  padding: 28px 24px 24px;
}
.page-product-list-guest .product-card--guest .card__body {
  padding: 18px 16px 16px;
  position: relative;
  z-index: 1;
}
.page-product-list-guest .product-card--guest .product-card__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 208px;
  position: relative;
  z-index: 1;
}
.page-product-list-guest .product-card--guest .card__overlay {
  position: absolute;
  inset: 0;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 4;
  cursor: pointer;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.78) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.page-product-list-guest .product-card--guest:hover .card__overlay,
.page-product-list-guest .product-card--guest:focus-within .card__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.page-product-list-guest .product-card--guest .card__title {
  margin-bottom: 0;
}
.page-product-list-guest .product-card--guest .product-card__title-link,
.page-product-list-guest .product-card--guest .product-card__brand-link {
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.page-product-list-guest .product-card--guest .product-card__title-link {
  color: #29303f;
}
.page-product-list-guest .product-card--guest .product-card__title-link:hover {
  color: #5324CD;
}
.page-product-list-guest .product-card--guest .product-card__brand-link {
  color: rgba(68, 68, 68, 0.8);
}
.page-product-list-guest .product-card--guest .product-card__brand-link:hover {
  color: #5324CD;
}
.page-product-list-guest .product-card--guest .product-card__view {
  min-width: 144px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .page-product-list-guest .product-card--guest {
    cursor: pointer;
  }
  .page-product-list-guest .product-card--guest:hover .card__overlay,
  .page-product-list-guest .product-card--guest:focus-within .card__overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .page-product-list-guest .product-card--guest .card__overlay {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-product-list-guest .product-card--guest {
    border-radius: 6px;
  }
  .page-product-list-guest .product-card--guest .card__img {
    min-height: 220px;
    padding: 20px 18px 14px;
  }
  .page-product-list-guest .product-card--guest .product-card__image-link {
    min-height: 170px;
  }
  .page-product-list-guest .product-card--guest .card__img img {
    max-height: 150px;
  }
  .page-product-list-guest .product-card--guest .card__body {
    padding: 14px 14px 16px;
  }
  .page-product-list-guest .product-card--guest .card__title {
    font-size: 15px;
    line-height: 1.35;
  }
  .page-product-list-guest .product-card--guest .card__brand {
    margin-bottom: 0;
    padding-bottom: 12px;
  }
  .page-product-list-guest .product-card--guest .product-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .page-product-list-guest .product-card--guest .product-card__stock {
    text-align: left;
    white-space: normal;
  }
}
.filter {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: none;
}
.filter.is-open {
  display: block;
}
.filter__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 28, 0.38);
  backdrop-filter: blur(2px);
}
.filter__panel {
  position: absolute;
  z-index: 2;
}
.filter--centered {
  padding: 24px;
}
.filter--centered.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.filter--centered .filter__panel {
  position: relative;
  top: auto !important;
  left: auto !important;
  width: 1120px !important;
  max-height: min(82vh, 760px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(16, 18, 27, 0.18);
  overflow: hidden;
  padding: 0;
}
.filter--centered .filter__panel.filter__panel--sm {
  width: 560px !important;
  max-height: min(78vh, 620px);
}
.filter--centered .filter__arrow {
  display: none;
}
.filter--centered .filter__head,
.filter--centered .filter__actions,
.filter--centered .filter__footer {
  flex: 0 0 auto;
}
.filter--centered .filter__head {
  margin-bottom: 0;
  padding: 28px 28px 16px;
  border-bottom: 1px solid #ececf3;
}
.filter--centered .filter__head strong {
  font-size: 16px;
  margin-bottom: 6px;
}
.filter--centered .filter__head span {
  font-size: 13px;
  color: rgba(17, 17, 17, 0.58);
}
.filter--centered .filter__actions {
  gap: 10px;
  margin-bottom: 0;
  padding: 16px 28px 18px;
}
.filter--centered .filter__actions button {
  border: 1px solid rgba(83, 36, 205, 0.16);
  background: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #5324CD;
  transition: all 0.2s ease;
}
.filter--centered .filter__actions button:hover {
  border-color: #5324CD;
  background: rgba(83, 36, 205, 0.05);
  text-decoration: none;
}
.filter--centered .filter__grid {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0 28px 22px;
  max-height: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 28px;
  align-content: start;
  min-height: 0;
}
.filter--centered .filter__grid label {
  min-width: 0;
  gap: 10px;
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.35;
}
.filter--centered .filter__grid img {
  width: 18px;
  min-width: 18px;
  height: 18px !important;
  object-fit: contain;
  margin-right: 0 !important;
}
.filter--centered .filter__grid::-webkit-scrollbar {
  width: 6px;
}
.filter--centered .filter__grid::-webkit-scrollbar-track {
  background: #f4f2fb;
}
.filter--centered .filter__grid::-webkit-scrollbar-thumb {
  background: rgba(83, 36, 205, 0.3);
  border-radius: 999px;
}
.filter--centered .filter__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px 22px;
  border-top: 1px solid #ececf3;
  background: #fff;
}
.filter--centered .filter__selected {
  font-size: 13px;
  color: rgba(17, 17, 17, 0.58);
}
.filter--centered.filter--price .filter__head {
  padding-bottom: 18px;
}
.filter--centered.filter--price .price-range__inputs {
  padding: 0 28px;
  margin: 0 0 22px;
}
.filter--centered.filter--price .price-range__slider {
  padding: 0 28px 18px;
  margin-bottom: 0;
}
.filter--centered.filter--price .filter__footer .filter__results {
  margin-right: auto;
}
@media (max-width: 991.98px) {
  .filter--centered {
    padding: 16px;
  }
  .filter--centered .filter__panel {
    width: calc(100vw - 32px) !important;
    max-height: calc(100vh - 32px);
  }
  .filter--centered .filter__panel.filter__panel--sm {
    width: 560px !important;
    max-height: calc(100vh - 32px);
  }
  .filter--centered .filter__head {
    padding: 22px 20px 14px;
  }
  .filter--centered .filter__actions {
    padding: 14px 20px 16px;
    flex-wrap: wrap;
  }
  .filter--centered .filter__grid {
    padding: 0 20px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }
  .filter--centered .filter__footer {
    padding: 16px 20px 18px;
  }
  .filter--centered.filter--price .price-range__inputs {
    padding: 0 20px;
  }
  .filter--centered.filter--price .price-range__slider {
    padding: 0 20px 16px;
  }
}
@media (max-width: 575.98px) {
  .filter--centered {
    padding: 12px;
  }
  .filter--centered .filter__panel,
  .filter--centered .filter__panel.filter__panel--sm {
    width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 24px);
    border-radius: 6px;
  }
  .filter--centered .filter__head {
    padding: 18px 16px 12px;
  }
  .filter--centered .filter__actions {
    padding: 12px 16px 14px;
    gap: 8px;
  }
  .filter--centered .filter__actions button {
    padding: 9px 12px;
    font-size: 12px;
  }
  .filter--centered .filter__grid {
    padding: 0 16px 14px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .filter--centered .filter__grid label {
    font-size: 14px;
  }
  .filter--centered .filter__footer {
    padding: 14px 16px 16px;
    flex-wrap: wrap;
  }
  .filter--centered .filter__footer .filter__selected,
  .filter--centered .filter__footer .filter__results {
    width: 100%;
  }
  .filter--centered .filter__footer .btn {
    flex: 1 1 calc(50% - 6px);
  }
  .filter--centered.filter--price .price-range__inputs {
    padding: 0 16px;
    gap: 10px;
    align-items: stretch;
  }
  .filter--centered.filter--price .price-range__slider {
    padding: 0 16px 14px;
  }
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  text-align: left;
  position: relative;
  z-index: 1;
}
.product-card__stock {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}
.product-card__stock.is-in {
  color: #111;
}
.product-card__stock.is-out {
  color: #8c919c;
}
.product-card .product-card__title-link,
.product-card .product-card__brand-link {
  text-decoration: none;
}
.product-card .product-card__title-link:hover,
.product-card .product-card__brand-link:hover {
  color: #5324CD;
}
.product-card .product-card__meta {
  gap: 12px;
}
.product-card .card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.page-product-list-logged .hero--logged {
  background: linear-gradient(120deg, #20103f, #5327a8 60%, #c07850);
}
.page-product-list-logged .toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-product-list-logged .toolbar__view {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  border: 1px solid rgba(41, 48, 63, 0.12);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
}
.page-product-list-logged .toolbar__view button {
  width: 42px;
  height: 40px;
  padding: 0;
  border: none;
  border-left: 1px solid rgba(41, 48, 63, 0.1);
  background: transparent;
  color: rgba(41, 48, 63, 0.48);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}
.page-product-list-logged .toolbar__view button:first-child {
  border-left: 0;
}
.page-product-list-logged .toolbar__view button:hover {
  color: #29303f;
  background: rgba(83, 36, 205, 0.04);
}
.page-product-list-logged .toolbar__view button.is-active {
  color: #fff;
  background: #5324CD;
}
.page-product-list-logged .logged-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.page-product-list-logged .product-content {
  min-width: 0;
}
.page-product-list-logged .order-assistant {
  position: sticky;
  top: 106px;
  height: fit-content;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}
.page-product-list-logged .order-assistant::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, rgba(83, 36, 205, 0.92), rgba(106, 57, 255, 0.84));
}
.page-product-list-logged .order-assistant__inner {
  padding: 18px;
}
.page-product-list-logged .order-assistant__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
}
.page-product-list-logged .order-assistant__head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #29303f;
}
.page-product-list-logged .order-assistant__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(83, 36, 205, 0.08);
  color: #5324CD;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.page-product-list-logged .order-assistant__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}
.page-product-list-logged .order-assistant__list::-webkit-scrollbar {
  width: 5px;
}
.page-product-list-logged .order-assistant__list::-webkit-scrollbar-track {
  background: transparent;
}
.page-product-list-logged .order-assistant__list::-webkit-scrollbar-thumb {
  background: rgba(83, 36, 205, 0.24);
  border-radius: 999px;
}
.page-product-list-logged .order-assistant__list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(41, 48, 63, 0.06);
}
.page-product-list-logged .order-assistant__list li:last-child {
  border-bottom: none;
}
.page-product-list-logged .oa-empty {
  justify-content: center !important;
  padding: 18px 0 !important;
  border-bottom: none !important;
  color: rgba(41, 48, 63, 0.42);
  font-size: 13px;
  text-align: center;
}
.page-product-list-logged .oa-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.page-product-list-logged .oa-item img {
  width: 40px;
  height: 40px;
  padding: 4px;
  object-fit: contain;
  flex-shrink: 0;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #f7f8fb;
}
.page-product-list-logged .oa-item__info {
  min-width: 0;
}
.page-product-list-logged .oa-item__info p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #29303f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-product-list-logged .oa-item__info small {
  display: block;
  margin-top: 2px;
  color: rgba(41, 48, 63, 0.56);
  font-size: 11px;
  line-height: 1.35;
}
.page-product-list-logged .oa-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.page-product-list-logged .oa-item__right strong {
  font-size: 13px;
  font-weight: 700;
  color: #29303f;
  white-space: nowrap;
}
.page-product-list-logged .oa-remove {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(41, 48, 63, 0.28);
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.18s ease;
}
.page-product-list-logged .oa-remove:hover {
  color: #e53935;
}
.page-product-list-logged .order-assistant__summary {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #f7f8fb;
}
.page-product-list-logged .order-assistant__summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
}
.page-product-list-logged .order-assistant__summary dt,
.page-product-list-logged .order-assistant__summary dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
}
.page-product-list-logged .order-assistant__summary dt {
  color: rgba(41, 48, 63, 0.58);
}
.page-product-list-logged .order-assistant__summary dd {
  color: #29303f;
  font-weight: 500;
  text-align: right;
}
.page-product-list-logged .order-assistant__summary .total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(41, 48, 63, 0.08);
}
.page-product-list-logged .order-assistant__summary .total dt,
.page-product-list-logged .order-assistant__summary .total dd {
  font-size: 14px;
  font-weight: 700;
  color: #29303f;
}
.page-product-list-logged .list-card {
  padding-top: 0;
  border: none;
  background: transparent;
}
.page-product-list-logged #productRows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-product-list-logged .list-card__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px 88px 96px 82px 92px 60px;
  gap: 10px;
  align-items: center;
  padding: 0 16px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(41, 48, 63, 0.42);
}
.page-product-list-logged .list-card__head > span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.page-product-list-logged .sortable {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-product-list-logged .sortable:hover {
  color: #29303f;
}
.page-product-list-logged .sortable__label {
  min-width: 0;
}
.page-product-list-logged .sortable__arrows {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}
.page-product-list-logged .sortable__arrow {
  color: rgba(41, 48, 63, 0.24);
  transition: color 0.2s ease, transform 0.2s ease;
}
.page-product-list-logged .sortable.is-active {
  color: #29303f;
}
.page-product-list-logged .sortable.is-asc .sortable__arrow--up,
.page-product-list-logged .sortable.is-desc .sortable__arrow--down {
  color: #5324CD;
}
.page-product-list-logged .sortable.is-asc .sortable__arrow--up {
  transform: translateY(-1px);
}
.page-product-list-logged .sortable.is-desc .sortable__arrow--down {
  transform: translateY(1px);
}
.page-product-list-logged .list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px 88px 96px 82px 92px 60px;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.page-product-list-logged .list-row:hover {
  transform: translateY(-1px);
  border-color: rgba(83, 36, 205, 0.22);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.page-product-list-logged .list-row--out {
  background: linear-gradient(180deg, #fff, #fcfcfe);
}
.page-product-list-logged .list-row > div {
  min-width: 0;
}
.page-product-list-logged .list-row__info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.page-product-list-logged .list-row__info > a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-product-list-logged .list-row__info img {
  width: 46px;
  height: 46px;
  padding: 5px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  background: linear-gradient(180deg, #f7f8fb, #f1f3f8);
}
.page-product-list-logged .list-row__info .list-row__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #29303f;
}
.page-product-list-logged .list-row__info .list-row__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-product-list-logged .list-row__info .list-row__title a:hover {
  color: #5324CD;
}
.page-product-list-logged .list-row__info .list-row__meta {
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(41, 48, 63, 0.56);
}
.page-product-list-logged .list-row__info .list-row__meta a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-product-list-logged .list-row__info .list-row__meta a:hover {
  color: #5324CD;
}
.page-product-list-logged .list-row__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.page-product-list-logged .list-row__badge:empty {
  display: block;
}
.page-product-list-logged .list-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.page-product-list-logged .list-badge--best {
  background: #f0d36a;
  color: #4d3900;
}
.page-product-list-logged .list-row__stock {
  display: flex;
  align-items: center;
}
.page-product-list-logged .stock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  min-width: 58px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.page-product-list-logged .stock-pill.is-in {
  background: rgba(67, 160, 71, 0.12);
  color: #207240;
}
.page-product-list-logged .stock-pill.is-out {
  background: rgba(229, 57, 53, 0.1);
  color: #b3261e;
}
.page-product-list-logged .list-row__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.page-product-list-logged .price-compare {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(41, 48, 63, 0.38);
  text-decoration: line-through;
}
.page-product-list-logged .price-current {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #29303f;
  white-space: nowrap;
}
.page-product-list-logged .list-row__alerts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.page-product-list-logged .icon-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(41, 48, 63, 0.16);
  border-radius: 6px;
  background: #ffffff;
  color: #29303f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.page-product-list-logged .icon-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.page-product-list-logged .icon-btn:hover {
  color: #5324CD;
  border-color: rgba(83, 36, 205, 0.26);
  background: rgba(83, 36, 205, 0.05);
}
.page-product-list-logged .icon-btn.is-active {
  color: #5324CD;
  border-color: rgba(83, 36, 205, 0.28);
  background: rgba(83, 36, 205, 0.07);
  box-shadow: 0 10px 22px rgba(83, 36, 205, 0.1);
}
.page-product-list-logged .icon-btn:disabled {
  cursor: not-allowed;
  color: rgba(41, 48, 63, 0.22);
  border-color: rgba(41, 48, 63, 0.1);
  background: #f6f7fb;
  box-shadow: none;
}
.page-product-list-logged .list-row__qty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-product-list-logged .qty {
  display: inline-grid;
  grid-template-columns: 56px 28px;
  align-items: stretch;
  gap: 8px;
  min-width: 0;
}
.page-product-list-logged .qty input {
  width: 56px;
  min-width: 0;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(41, 48, 63, 0.16);
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #29303f;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -moz-appearance: textfield;
}
.page-product-list-logged .qty input:focus {
  outline: none;
  border-color: rgba(83, 36, 205, 0.28);
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.08);
}
.page-product-list-logged .qty input::-webkit-outer-spin-button,
.page-product-list-logged .qty input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.page-product-list-logged .qty__actions {
  display: inline-grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  width: 28px;
}
.page-product-list-logged .qty__btn {
  width: 28px;
  height: 16px;
  padding: 0;
  border: 1px solid rgba(41, 48, 63, 0.12);
  border-radius: 6px;
  background: linear-gradient(180deg, #fcfcfd, #f3f4f7);
  color: rgba(41, 48, 63, 0.76);
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.page-product-list-logged .qty__btn:hover {
  color: #29303f;
  border-color: rgba(83, 36, 205, 0.2);
  background: rgba(83, 36, 205, 0.05);
}
.page-product-list-logged .qty__btn:active {
  transform: translateY(1px);
}
.page-product-list-logged .list-row__cta {
  display: flex;
  align-items: center;
}
.page-product-list-logged .list-row__cta .btn {
  width: 100%;
  min-height: 38px;
  padding: 8px 14px;
  justify-content: center;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.page-product-list-logged .list-row__cta .btn--outline {
  border-width: 1px;
  border-color: rgba(83, 36, 205, 0.34);
  color: #5324CD;
  background: rgba(83, 36, 205, 0.04);
}
.page-product-list-logged .list-row__cta .btn--outline:hover {
  background: #5324CD;
  color: #fff;
}
.page-product-list-logged .filter {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}
.page-product-list-logged .filter.is-open {
  visibility: visible;
  pointer-events: auto;
}
.page-product-list-logged .filter[aria-hidden="true"] {
  display: none;
}
.page-product-list-logged .filter__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, 0.46);
}
.page-product-list-logged .filter__panel {
  position: absolute;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
  padding: 24px;
  max-height: 80vh;
  overflow-y: auto;
}
.page-product-list-logged .filter__panel--sm {
  width: 420px;
}
.page-product-list-logged .filter__arrow {
  position: absolute;
  top: -8px;
  left: 24px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.08);
}
.page-product-list-logged .filter__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}
.page-product-list-logged .filter__head strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: #29303f;
}
.page-product-list-logged .filter__head span {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(41, 48, 63, 0.56);
}
.page-product-list-logged .filter__close {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: rgba(41, 48, 63, 0.48);
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.page-product-list-logged .filter__close:hover {
  color: #29303f;
  background: rgba(41, 48, 63, 0.04);
}
.page-product-list-logged .filter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.page-product-list-logged .filter__actions button {
  padding: 8px 12px;
  border: 1px solid rgba(41, 48, 63, 0.14);
  border-radius: 6px;
  background: #ffffff;
  color: #29303f;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.page-product-list-logged .filter__actions button:hover {
  color: #5324CD;
  border-color: rgba(83, 36, 205, 0.24);
  background: rgba(83, 36, 205, 0.04);
}
.page-product-list-logged .filter__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.page-product-list-logged .filter__grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.35;
  cursor: pointer;
  transition: background 0.18s ease;
}
.page-product-list-logged .filter__grid label:hover {
  background: rgba(83, 36, 205, 0.04);
}
.page-product-list-logged .filter__grid label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #5324CD;
  flex-shrink: 0;
}
.page-product-list-logged .filter__grid label img {
  width: 18px;
  height: 18px !important;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 0 !important;
}
.page-product-list-logged .filter__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(41, 48, 63, 0.08);
}
.page-product-list-logged .filter__selected,
.page-product-list-logged .filter__results {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(41, 48, 63, 0.56);
}
.page-product-list-logged .price-range__inputs {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}
.page-product-list-logged .price-range__inputs .price-input {
  min-width: 0;
  flex: 1;
}
.page-product-list-logged .price-input label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  color: rgba(41, 48, 63, 0.56);
}
.page-product-list-logged .price-input .input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.page-product-list-logged .price-input .input-group input {
  width: 100%;
  height: 42px;
  padding: 10px 34px 10px 12px;
  border: 1px solid rgba(41, 48, 63, 0.16);
  border-radius: 6px;
  font-size: 14px;
  color: #29303f;
  background: #ffffff;
}
.page-product-list-logged .price-input .input-group input:focus {
  outline: none;
  border-color: rgba(83, 36, 205, 0.38);
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.08);
}
.page-product-list-logged .price-input .input-group .input-suffix {
  position: absolute;
  right: 12px;
  font-size: 13px;
  color: rgba(41, 48, 63, 0.46);
  pointer-events: none;
}
.page-product-list-logged .price-sep {
  padding-bottom: 10px;
  font-size: 18px;
  line-height: 1;
  color: rgba(41, 48, 63, 0.3);
}
.page-product-list-logged .price-range__slider {
  margin-bottom: 16px;
}
.page-product-list-logged .price-range__slider--double {
  position: relative;
}
.page-product-list-logged .price-range__slider--double .price-range__track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(41, 48, 63, 0.16);
}
.page-product-list-logged .price-range__slider--double .price-range__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: #5324CD;
}
.page-product-list-logged .price-range__slider--double input[type="range"] {
  position: absolute;
  top: -9px;
  left: 0;
  right: 0;
  width: 100%;
  height: 22px;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}
.page-product-list-logged .price-range__slider--double input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}
.page-product-list-logged .price-range__slider--double input[type="range"]::-moz-range-track {
  height: 4px;
  background: transparent;
}
.page-product-list-logged .price-range__slider--double input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #5324CD;
  box-shadow: 0 4px 14px rgba(83, 36, 205, 0.24);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
}
.page-product-list-logged .price-range__slider--double input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #5324CD;
  box-shadow: 0 4px 14px rgba(83, 36, 205, 0.24);
  cursor: pointer;
  pointer-events: auto;
}
.page-product-list-logged .price-range__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(41, 48, 63, 0.46);
}
.page-product-list-logged .filter--centered {
  padding: 24px;
}
.page-product-list-logged .filter--centered.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-product-list-logged .filter--centered .filter__panel {
  position: relative;
  top: auto;
  left: auto;
  width: 1120px;
  max-height: min(82vh, 760px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.page-product-list-logged .filter--centered .filter__panel.filter__panel--sm {
  width: 560px;
  max-height: min(78vh, 620px);
}
.page-product-list-logged .filter--centered .filter__arrow {
  display: none;
}
.page-product-list-logged .filter--centered .filter__head,
.page-product-list-logged .filter--centered .filter__actions,
.page-product-list-logged .filter--centered .filter__footer {
  flex: 0 0 auto;
}
.page-product-list-logged .filter--centered .filter__head {
  margin-bottom: 0;
  padding: 28px 28px 16px;
  border-bottom: 1px solid #ececf3;
}
.page-product-list-logged .filter--centered .filter__actions {
  margin-bottom: 0;
  padding: 16px 28px 18px;
}
.page-product-list-logged .filter--centered .filter__grid {
  flex: 1 1 auto;
  overflow: auto;
  align-content: start;
  min-height: 0;
  margin-bottom: 0;
  padding: 0 28px 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 28px;
}
.page-product-list-logged .filter--centered .filter__grid::-webkit-scrollbar {
  width: 6px;
}
.page-product-list-logged .filter--centered .filter__grid::-webkit-scrollbar-track {
  background: #f4f2fb;
}
.page-product-list-logged .filter--centered .filter__grid::-webkit-scrollbar-thumb {
  background: rgba(83, 36, 205, 0.3);
  border-radius: 999px;
}
.page-product-list-logged .filter--centered .filter__grid label {
  padding: 4px 0;
  font-size: 14px;
}
.page-product-list-logged .filter--centered .filter__footer {
  padding: 18px 28px 22px;
  border-top: 1px solid #ececf3;
  background: #ffffff;
}
.page-product-list-logged .filter--centered .filter__selected,
.page-product-list-logged .filter--centered .filter__results {
  font-size: 13px;
}
.page-product-list-logged .filter--centered.filter--price .price-range__inputs {
  padding: 0 28px;
  margin: 0 0 22px;
}
.page-product-list-logged .filter--centered.filter--price .price-range__slider {
  padding: 0 28px 18px;
  margin-bottom: 0;
}
.page-product-list-logged .filter--centered.filter--price .filter__footer .filter__results {
  margin-right: auto;
}
.bjutip-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 6px;
  background: #1f2430;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.bjutip-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.bjutip-toast--success {
  border-left: 4px solid #43a047;
}
.bjutip-toast--error {
  border-left: 4px solid #e53935;
}
@media (max-width: 1199.98px) {
  .page-product-list-logged .logged-layout {
    grid-template-columns: 1fr;
  }
  .page-product-list-logged .product-content {
    order: 1;
  }
  .page-product-list-logged .order-assistant {
    position: static;
    order: 2;
  }
  .page-product-list-logged .list-card__head,
  .page-product-list-logged .list-row {
    grid-template-columns: minmax(0, 1fr) 92px 84px 92px 78px 88px 112px;
  }
}
@media (max-width: 991.98px) {
  .page-product-list-logged .filter--centered {
    padding: 16px;
  }
  .page-product-list-logged .filter--centered .filter__panel {
    width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
  }
  .page-product-list-logged .filter--centered .filter__panel.filter__panel--sm {
    width: 560px;
    max-height: calc(100vh - 32px);
  }
  .page-product-list-logged .filter--centered .filter__head {
    padding: 22px 20px 14px;
  }
  .page-product-list-logged .filter--centered .filter__actions {
    padding: 14px 20px 16px;
  }
  .page-product-list-logged .filter--centered .filter__grid {
    padding: 0 20px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }
  .page-product-list-logged .filter--centered .filter__footer {
    padding: 16px 20px 18px;
    flex-wrap: wrap;
  }
  .page-product-list-logged .filter--centered.filter--price .price-range__inputs {
    padding: 0 20px;
  }
  .page-product-list-logged .filter--centered.filter--price .price-range__slider {
    padding: 0 20px 16px;
  }
  .page-product-list-logged .toolbar__inner {
    gap: 12px;
  }
  .page-product-list-logged .list-card__head {
    display: none;
  }
  .page-product-list-logged .list-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas: "info info info" "badge stock price" "alerts qty cta";
    align-items: stretch;
    gap: 12px;
    padding: 16px;
  }
  .page-product-list-logged .list-row__info {
    grid-area: info;
  }
  .page-product-list-logged .list-row__badge {
    grid-area: badge;
  }
  .page-product-list-logged .list-row__stock {
    grid-area: stock;
  }
  .page-product-list-logged .list-row__price {
    grid-area: price;
  }
  .page-product-list-logged .list-row__alerts {
    grid-area: alerts;
  }
  .page-product-list-logged .list-row__qty {
    grid-area: qty;
  }
  .page-product-list-logged .list-row__cta {
    grid-area: cta;
  }
  .page-product-list-logged .list-row__badge,
  .page-product-list-logged .list-row__stock,
  .page-product-list-logged .list-row__price,
  .page-product-list-logged .list-row__alerts,
  .page-product-list-logged .list-row__qty,
  .page-product-list-logged .list-row__cta {
    position: relative;
    min-height: 48px;
    padding-top: 16px;
  }
  .page-product-list-logged .list-row__badge::before,
  .page-product-list-logged .list-row__stock::before,
  .page-product-list-logged .list-row__price::before,
  .page-product-list-logged .list-row__alerts::before,
  .page-product-list-logged .list-row__qty::before,
  .page-product-list-logged .list-row__cta::before {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(41, 48, 63, 0.38);
  }
  .page-product-list-logged .list-row__badge::before {
    content: 'Badge';
  }
  .page-product-list-logged .list-row__stock::before {
    content: 'Stock';
  }
  .page-product-list-logged .list-row__price::before {
    content: 'Price';
  }
  .page-product-list-logged .list-row__alerts::before {
    content: 'Alerts';
  }
  .page-product-list-logged .list-row__qty::before {
    content: 'Qty';
  }
  .page-product-list-logged .list-row__cta::before {
    content: 'Action';
  }
  .page-product-list-logged .list-row__alerts {
    justify-content: flex-start;
  }
  .page-product-list-logged .list-row__cta .btn {
    min-height: 42px;
  }
}
@media (max-width: 767.98px) {
  .page-product-list-logged .toolbar {
    position: relative;
    z-index: 40;
  }
  .page-product-list-logged .toolbar__inner,
  .page-product-list-logged .toolbar__search {
    position: relative;
    z-index: 45;
  }
  .page-product-list-logged .toolbar__search {
    isolation: isolate;
  }
  .page-product-list-logged .qs-dropdown {
    z-index: 12050;
  }
  .page-product-list-logged .toolbar__filters,
  .page-product-list-logged .toolbar__inner {
    gap: 10px;
  }
  .page-product-list-logged .toolbar__view {
    margin-left: 0;
  }
  .page-product-list-logged .logged-layout {
    gap: 16px;
  }
  .page-product-list-logged .order-assistant__inner {
    padding: 16px;
  }
  .page-product-list-logged .list-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "info info" "badge stock" "price price" "alerts qty" "cta cta";
  }
  .page-product-list-logged .list-row__price {
    align-items: flex-start;
  }
  .page-product-list-logged .list-row__alerts {
    gap: 6px;
  }
  .page-product-list-logged .icon-btn,
  .page-product-list-logged .qty input,
  .page-product-list-logged .list-row__cta .btn {
    height: 42px;
  }
  .page-product-list-logged .qty {
    grid-template-columns: 58px 30px;
    gap: 8px;
  }
  .page-product-list-logged .qty input {
    width: 58px;
  }
  .page-product-list-logged .qty__actions {
    width: 30px;
    gap: 6px;
  }
  .page-product-list-logged .qty__btn {
    width: 30px;
    height: 18px;
  }
  .bjutip-toast {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}
@media (max-width: 575.98px) {
  .page-product-list-logged .filter--centered {
    padding: 12px;
  }
  .page-product-list-logged .filter--centered .filter__panel,
  .page-product-list-logged .filter--centered .filter__panel.filter__panel--sm {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
  }
  .page-product-list-logged .filter--centered .filter__head {
    padding: 18px 16px 12px;
  }
  .page-product-list-logged .filter--centered .filter__actions {
    padding: 12px 16px 14px;
    gap: 8px;
  }
  .page-product-list-logged .filter--centered .filter__grid {
    padding: 0 16px 14px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .page-product-list-logged .filter--centered .filter__footer {
    padding: 14px 16px 16px;
  }
  .page-product-list-logged .filter--centered .filter__footer .filter__selected,
  .page-product-list-logged .filter--centered .filter__footer .filter__results {
    width: 100%;
  }
  .page-product-list-logged .filter--centered .filter__footer .btn {
    flex: 1 1 calc(50% - 6px);
  }
  .page-product-list-logged .filter--centered.filter--price .price-range__inputs {
    padding: 0 16px;
    align-items: stretch;
    gap: 10px;
  }
  .page-product-list-logged .filter--centered.filter--price .price-range__slider {
    padding: 0 16px 14px;
  }
  .page-product-list-logged .list-row {
    padding: 14px;
    gap: 10px;
  }
  .page-product-list-logged .list-row__info {
    gap: 12px;
  }
  .page-product-list-logged .list-row__info img {
    width: 52px;
    height: 52px;
  }
  .page-product-list-logged .list-row__info .list-row__title {
    font-size: 14px;
  }
  .page-product-list-logged .list-row__info .list-row__meta {
    font-size: 11px;
  }
  .page-product-list-logged .list-badge {
    padding: 4px 8px;
    letter-spacing: 0.12em;
  }
  .page-product-list-logged .stock-pill {
    min-width: 0;
    padding: 4px 9px;
    font-size: 11px;
  }
  .page-product-list-logged .price-current {
    font-size: 15px;
  }
  .page-product-list-logged .qty {
    grid-template-columns: 56px 28px;
    gap: 7px;
  }
  .page-product-list-logged .qty input {
    width: 56px;
    padding: 0 8px;
  }
  .page-product-list-logged .qty__actions {
    width: 28px;
  }
  .page-product-list-logged .qty__btn {
    width: 28px;
    border-radius: 5px;
  }
  .page-product-list-logged .price-range__inputs {
    flex-direction: column;
    align-items: stretch;
  }
  .page-product-list-logged .price-sep {
    display: none;
  }
}
.page-product-list-logged .order-assistant__list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px 12px;
}
.page-product-list-logged .oa-item__info p {
  white-space: normal;
  overflow: hidden;
  text-overflow: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.page-product-list-logged .oa-item__info small {
  white-space: normal;
}
.page-product-list-logged .oa-item__right {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 2px;
  min-width: 0;
}
.page-product-list-logged .oa-remove {
  width: 16px;
  height: 16px;
  font-size: 14px;
}
.page-product-list-logged .product-card--logged {
  position: relative;
  cursor: default;
}
.page-product-list-logged .product-card--logged .product-card__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 208px;
  position: relative;
  z-index: 1;
}
.page-product-list-logged .product-card--logged .card__img {
  min-height: 280px;
  padding: 28px 24px 24px;
}
.page-product-list-logged .product-card--logged .card__body {
  padding: 18px 16px 16px;
  position: relative;
  z-index: 1;
}
.page-product-list-logged .product-card--logged .card__title {
  margin-bottom: 0;
}
.page-product-list-logged .product-card--logged .product-card__title-link,
.page-product-list-logged .product-card--logged .product-card__brand-link {
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.page-product-list-logged .product-card--logged .product-card__title-link {
  color: #29303f;
}
.page-product-list-logged .product-card--logged .product-card__title-link:hover {
  color: #5324CD;
}
.page-product-list-logged .product-card--logged .product-card__brand-link {
  color: rgba(68, 68, 68, 0.8);
}
.page-product-list-logged .product-card--logged .product-card__brand-link:hover {
  color: #5324CD;
}
.page-product-list-logged .product-card--logged .product-card__stock-inline {
  margin-top: 8px;
  color: rgba(41, 48, 63, 0.58);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.page-product-list-logged .product-card--logged .product-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.page-product-list-logged .product-card--logged .card__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  text-align: right;
}
.page-product-list-logged .product-card--logged .card__overlay {
  position: absolute;
  inset: 0;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 4;
  cursor: pointer;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.82) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.page-product-list-logged .product-card--logged:hover .card__overlay,
.page-product-list-logged .product-card--logged:focus-within .card__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 991.98px) {
  .page-product-list-logged .toolbar {
    position: relative;
    top: auto;
    z-index: 140;
    overflow: visible;
  }
  .page-product-list-logged .toolbar__inner,
  .page-product-list-logged .toolbar__search {
    overflow: visible;
  }
}
@media (max-width: 767.98px) {
  .page-product-list-logged .list-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "info alerts" "badge stock" "price qty" "cta cta";
    align-items: start;
  }
  .page-product-list-logged .list-row__badge,
  .page-product-list-logged .list-row__stock,
  .page-product-list-logged .list-row__price,
  .page-product-list-logged .list-row__alerts,
  .page-product-list-logged .list-row__qty,
  .page-product-list-logged .list-row__cta {
    min-height: 0;
    padding-top: 0;
  }
  .page-product-list-logged .list-row__badge::before,
  .page-product-list-logged .list-row__stock::before,
  .page-product-list-logged .list-row__price::before,
  .page-product-list-logged .list-row__alerts::before,
  .page-product-list-logged .list-row__qty::before,
  .page-product-list-logged .list-row__cta::before {
    display: none;
    content: none;
  }
  .page-product-list-logged .list-row__info {
    align-items: flex-start;
    gap: 10px;
  }
  .page-product-list-logged .list-row__info img {
    width: 44px;
    height: 44px;
  }
  .page-product-list-logged .list-row__badge {
    justify-content: flex-start;
  }
  .page-product-list-logged .list-row__stock,
  .page-product-list-logged .list-row__alerts,
  .page-product-list-logged .list-row__qty {
    justify-content: flex-end;
  }
  .page-product-list-logged .list-row__price {
    align-items: flex-start;
  }
  .page-product-list-logged .qty {
    grid-template-columns: 52px 26px;
    gap: 6px;
  }
  .page-product-list-logged .qty input {
    width: 52px;
    height: 36px;
  }
  .page-product-list-logged .qty__actions {
    width: 26px;
    gap: 4px;
  }
  .page-product-list-logged .qty__btn {
    width: 26px;
    height: 16px;
  }
  .page-product-list-logged .list-row__cta .btn {
    width: 100%;
    min-height: 40px;
  }
  .page-product-list-logged .product-card--logged {
    cursor: pointer;
  }
  .page-product-list-logged .product-card--logged:hover,
  .page-product-list-logged .product-card--logged:focus-within {
    transform: none;
  }
  .page-product-list-logged .product-card--logged:hover .card__overlay,
  .page-product-list-logged .product-card--logged:focus-within .card__overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .page-product-list-logged .product-card--logged .card__overlay {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .page-product-list-logged .order-assistant__inner {
    padding: 14px;
  }
  .page-product-list-logged .order-assistant__summary {
    padding: 12px;
  }
  .page-product-list-logged .list-row {
    padding: 12px;
    gap: 8px 10px;
  }
  .page-product-list-logged .list-row__info .list-row__title {
    font-size: 14px;
    line-height: 1.3;
  }
  .page-product-list-logged .list-row__info .list-row__meta {
    font-size: 10px;
  }
  .page-product-list-logged .icon-btn,
  .page-product-list-logged .qty input,
  .page-product-list-logged .list-row__cta .btn {
    height: 40px;
  }
  .page-product-list-logged .product-card--logged .card__img {
    min-height: 220px;
    padding: 20px 18px 14px;
  }
  .page-product-list-logged .product-card--logged .product-card__image-link {
    min-height: 168px;
  }
  .page-product-list-logged .product-card--logged .card__img img {
    max-height: 150px;
  }
  .page-product-list-logged .product-card--logged .card__body {
    padding: 14px 14px 16px;
  }
  .page-product-list-logged .product-card--logged .card__title {
    font-size: 15px;
    line-height: 1.35;
  }
  .page-product-list-logged .product-card--logged .card__brand {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .page-product-list-logged .product-card--logged .product-card__stock-inline {
    margin-top: 6px;
    font-size: 11px;
  }
  .page-product-list-logged .product-card--logged .product-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .page-product-list-logged .product-card--logged .card__price {
    justify-content: flex-start;
    text-align: left;
  }
}
.page-product-list-logged .list-row {
  min-height: 75px;
}
.page-product-list-logged .list-row.bjutip-max-reached {
  grid-template-columns: minmax(0, 1fr) 96px 88px 96px 82px 168px;
}
.page-product-list-logged .list-row.bjutip-max-reached .list-row__qty {
  display: none;
}
.page-product-list-logged .list-row.bjutip-max-reached .list-row__cta {
  align-items: center;
}
.page-product-list-logged .list-row.bjutip-max-reached .list-row__cta .bjutip-stock-note {
  margin-top: 0;
  line-height: 1.45;
}
.page-product-list-logged .product-card--logged {
  cursor: pointer;
  overflow: hidden;
}
.page-product-list-logged .product-card--logged:hover .product-card__title-link,
.page-product-list-logged .product-card--logged:focus-within .product-card__title-link,
.page-product-list-logged .product-card--logged:hover .product-card__overlay-link,
.page-product-list-logged .product-card--logged:focus-within .product-card__overlay-link {
  color: #29303f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.page-product-list-logged .product-card--logged .card__overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.94) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.page-product-list-logged .product-card--logged .card__overlay::before {
  content: none;
}
.page-product-list-logged .product-card--logged .product-card__overlay-summary {
  width: 100%;
  max-width: 220px;
  margin-top: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-product-list-logged .product-card--logged .product-card__overlay-title {
  margin: 0 0 6px;
  color: #29303f;
  font-size: 20px;
  line-height: 1.32;
}
.page-product-list-logged .product-card--logged .product-card__overlay-link {
  color: inherit;
  text-decoration: none;
}
.page-product-list-logged .product-card--logged .product-card__overlay-stock {
  color: rgba(41, 48, 63, 0.64);
  font-size: 13px;
  line-height: 1.45;
}
.page-product-list-logged .product-card--logged .product-card__purchase {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 220px;
}
.page-product-list-logged .product-card--logged .product-card__qty {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 8px;
}
.page-product-list-logged .product-card--logged .product-card__qty input {
  width: 100%;
}
.page-product-list-logged .product-card--logged .product-card__add {
  flex: 0 0 auto;
  min-width: 92px;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 6px;
  justify-content: center;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.page-product-list-logged .product-card--logged .bjutip-stock-note {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin-top: 0;
  text-align: center;
  line-height: 1.45;
}
.page-product-list-logged .product-card--logged.card--out-of-stock .product-card__purchase,
.page-product-list-logged .product-card--logged.bjutip-max-reached .product-card__purchase {
  display: none;
}
.page-product-list-logged .product-card--logged.card--out-of-stock .bjutip-stock-note {
  display: none;
}
@media (max-width: 991.98px) {
  .page-product-list-logged .list-row.bjutip-max-reached {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas: "info info info" "badge stock price" "alerts cta cta";
  }
}
@media (max-width: 767.98px) {
  .page-product-list-logged .list-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "info info alerts" "price stock badge" "qty cta cta";
    align-items: center;
  }
  .page-product-list-logged .list-row__badge,
  .page-product-list-logged .list-row__stock,
  .page-product-list-logged .list-row__price,
  .page-product-list-logged .list-row__alerts,
  .page-product-list-logged .list-row__qty,
  .page-product-list-logged .list-row__cta {
    min-height: 0;
    padding-top: 0;
  }
  .page-product-list-logged .list-row__badge::before,
  .page-product-list-logged .list-row__stock::before,
  .page-product-list-logged .list-row__price::before,
  .page-product-list-logged .list-row__alerts::before,
  .page-product-list-logged .list-row__qty::before,
  .page-product-list-logged .list-row__cta::before {
    display: none;
    content: none;
  }
  .page-product-list-logged .list-row__badge {
    justify-content: flex-end;
    justify-self: flex-end;
  }
  .page-product-list-logged .list-row__stock,
  .page-product-list-logged .list-row__price {
    justify-content: flex-start;
    justify-self: flex-start;
  }
  .page-product-list-logged .list-row__alerts {
    justify-content: flex-end;
    justify-self: flex-end;
  }
  .page-product-list-logged .list-row__qty {
    justify-content: flex-start;
    justify-self: flex-start;
  }
  .page-product-list-logged .list-row__cta {
    justify-self: stretch;
  }
  .page-product-list-logged .list-row.bjutip-max-reached {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "info info alerts" "price stock badge" "cta cta cta";
  }
  .page-product-list-logged .list-row.bjutip-max-reached .list-row__cta .bjutip-stock-note {
    max-width: 260px;
  }
  .page-product-list-logged .product-card--logged .card__overlay {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: static;
    inset: auto;
    padding: 0 14px 14px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .page-product-list-logged .product-card--logged .product-card__overlay-summary {
    display: none;
  }
  .page-product-list-logged .product-card--logged .product-card__purchase {
    max-width: none;
  }
  .page-product-list-logged .product-card--logged.card--out-of-stock .card__overlay {
    padding-top: 0;
  }
}
@media (max-width: 575.98px) {
  .page-product-list-logged .list-row {
    padding: 12px;
    gap: 10px 8px;
  }
  .page-product-list-logged .product-card--logged .card__body {
    padding: 14px 14px 12px;
  }
  .page-product-list-logged .product-card--logged .card__overlay {
    padding: 0 14px 14px;
  }
  .page-product-list-logged .product-card--logged .product-card__purchase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    max-width: none;
  }
  .page-product-list-logged .product-card--logged .product-card__qty {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 6px;
  }
  .page-product-list-logged .product-card--logged .product-card__qty input {
    width: 100%;
    min-width: 0;
    padding: 0 8px;
  }
  .page-product-list-logged .product-card--logged .product-card__qty .qty__actions {
    width: 24px;
    gap: 4px;
  }
  .page-product-list-logged .product-card--logged .product-card__qty .qty__btn {
    width: 24px;
    height: 17px;
  }
  .page-product-list-logged .product-card--logged .product-card__add {
    flex: 0 0 auto;
    width: auto;
    min-width: 72px;
    padding-right: 12px;
    padding-left: 12px;
  }
}
.page-product-list-logged .filter__checks {
  display: grid;
  gap: 12px;
  padding: 0 24px 18px;
}
.page-product-list-logged .filter-check {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.page-product-list-logged .filter-check:hover {
  border-color: rgba(83, 36, 205, 0.22);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.page-product-list-logged .filter-check input[type="checkbox"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.page-product-list-logged .filter-check input[type="checkbox"]:checked ~ .filter-check__control {
  border-color: #5324CD;
  background: #5324CD;
}
.page-product-list-logged .filter-check input[type="checkbox"]:checked ~ .filter-check__control::after {
  opacity: 1;
  transform: scale(1);
}
.page-product-list-logged .filter-check input[type="checkbox"]:checked ~ .filter-check__copy strong {
  color: #5324CD;
}
.page-product-list-logged .filter-check__control {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid rgba(41, 48, 63, 0.18);
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.page-product-list-logged .filter-check__control::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transform: rotate(45deg) scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.page-product-list-logged .filter-check__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.page-product-list-logged .filter-check__copy strong {
  color: #29303f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.2s ease;
}
.page-product-list-logged .filter-check__copy span {
  color: rgba(41, 48, 63, 0.6);
  font-size: 13px;
  line-height: 1.5;
}
.page-product-list-logged .filter-note {
  margin: -2px 24px 18px;
  padding: 0 2px;
  color: rgba(41, 48, 63, 0.54);
  font-size: 13px;
  line-height: 1.5;
}
.page-product-list-logged .price-range__slider--double {
  padding: 0 9px;
}
.page-product-list-logged .price-range__slider--double .price-range__track {
  overflow: visible;
}
.page-product-list-logged .price-range__slider--double input[type="range"] {
  left: 9px;
  right: 9px;
  width: auto;
}
.page-product-list-logged .price-range__slider--double .price-range__labels {
  margin-right: -9px;
  margin-left: -9px;
}
@media (max-width: 767.98px) {
  .page-product-list-logged .toolbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 10px;
  }
  .page-product-list-logged .toolbar__filters {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }
  .page-product-list-logged .toolbar__filter {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    justify-content: center;
    gap: 6px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
  }
  .page-product-list-logged .toolbar__filter svg {
    display: inline-flex;
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    color: #5324CD;
  }
  .page-product-list-logged .toolbar__filter span {
    min-width: 0;
    white-space: normal;
    font-size: 12px;
    line-height: 1.25;
  }
  .page-product-list-logged .toolbar__search {
    min-width: 0;
    width: 100%;
  }
  .page-product-list-logged .toolbar__search input[type=search] {
    height: 42px;
  }
  .page-product-list-logged .toolbar__view {
    align-self: stretch;
    justify-self: end;
    margin-left: 0;
  }
  .page-product-list-logged .toolbar__view button {
    width: 44px;
    height: 42px;
  }
  .page-product-list-logged .filter--centered .filter__head {
    padding-bottom: 14px;
  }
  .page-product-list-logged .filter--centered .filter__footer {
    align-items: stretch;
  }
  .page-product-list-logged .filter__checks {
    padding: 0 16px 14px;
    gap: 10px;
  }
  .page-product-list-logged .filter-check {
    gap: 12px;
    padding: 12px 14px;
  }
  .page-product-list-logged .filter-check__copy strong {
    font-size: 14px;
  }
  .page-product-list-logged .filter-check__copy span {
    font-size: 12px;
  }
  .page-product-list-logged .filter-note {
    margin: -2px 16px 14px;
    font-size: 12px;
  }
}
@media (max-width: 575.98px) {
  .page-product-list-logged .toolbar__filter {
    gap: 5px;
    padding-right: 8px;
    padding-left: 8px;
  }
  .page-product-list-logged .toolbar__filter svg {
    display: inline-flex;
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
  }
  .page-product-list-logged .toolbar__filter span {
    font-size: 11px;
  }
  .page-product-list-logged .price-range__slider--double {
    padding: 0 8px;
  }
  .page-product-list-logged .price-range__slider--double input[type="range"] {
    left: 8px;
    right: 8px;
  }
  .page-product-list-logged .price-range__slider--double .price-range__labels {
    margin-right: -8px;
    margin-left: -8px;
  }
}
.toolbar__search {
  position: relative;
  z-index: 10;
  isolation: isolate;
}
.toolbar__search input[type=search] {
  width: 100%;
  height: 36px;
  padding: 0 36px 0 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 13px;
  outline: none;
  background: #fff;
  color: #111;
}
.toolbar__search input[type=search]:focus {
  border-color: #5324CD;
}
.toolbar__search svg {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
}
.qs-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 360px;
  max-width: 480px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  overflow: hidden;
}
.qs-dropdown .qs-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}
.qs-dropdown .qs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.qs-dropdown .qs-item:hover {
  background: #f5f0ff;
}
.qs-dropdown .qs-thumb {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.qs-dropdown .qs-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qs-dropdown .qs-name {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.qs-dropdown .qs-meta {
  font-size: 11px;
  color: #888;
}
.qs-dropdown .qs-price {
  font-size: 13px;
  font-weight: 700;
  color: #5324CD;
  white-space: nowrap;
  flex-shrink: 0;
}
.qs-dropdown .qs-more {
  text-align: center;
  font-size: 12px;
  color: #888;
  padding: 6px 12px;
  border-top: 1px solid #f0f0f0;
}
.qs-dropdown .qs-loading,
.qs-dropdown .qs-empty {
  padding: 12px 16px;
  font-size: 13px;
  color: #888;
  text-align: center;
}
@media (max-width: 767.98px) {
  .page-product-list-logged .toolbar__search {
    z-index: 260;
  }
  .page-product-list-logged .qs-dropdown {
    left: 0;
    right: 0;
    min-width: 0;
    max-width: none;
    width: 100%;
    z-index: 1260;
  }
  .toolbar__search {
    z-index: 120;
  }
  .qs-dropdown {
    left: 0;
    right: 0;
    min-width: 0;
    max-width: none;
    width: 100%;
    z-index: 12050;
  }
}
#product-product.container {
  padding-top: 24px;
  padding-bottom: 64px;
  max-width: 1240px;
}
#product-product .product-info-holder {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  gap: 56px !important;
  align-items: start;
  margin: 0 !important;
}
@media (max-width: 900px) {
  #product-product .product-info-holder {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}
#product-product .product-info-holder > [class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}
#product-product .product-gallery-column {
  position: static;
}
#product-product .product-summary-sticky {
  position: sticky;
  top: 80px;
}
@media (max-width: 900px) {
  #product-product .product-summary-sticky {
    position: static;
  }
}
#product-product .image-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
#product-product .image-wrapper a.thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: white;
}
#product-product .image-wrapper img.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
  transition: transform 0.4s ease;
}
#product-product .image-wrapper:hover img.img-fluid {
  transform: scale(1.04);
}
#product-product .labels.labels_info {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  gap: 6px;
}
#product-product .labels.labels_info label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
#product-product .labels.labels_info label.bestseller {
  background: #5324CD !important;
  color: #fff !important;
}
#product-product .labels.labels_info label.new {
  background: #111 !important;
  color: #fff !important;
}
#product-product ul.thumbnails.list-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin-top: 12px !important;
  list-style: none;
}
#product-product ul.thumbnails.list-inline li.image-additional {
  margin: 0;
}
#product-product ul.thumbnails.list-inline li.image-additional a.thumbnail {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  border: 2px solid #ebebeb;
  overflow: hidden;
  background: #f8f8f8;
  transition: border-color 0.2s;
  padding: 0;
}
#product-product ul.thumbnails.list-inline li.image-additional a.thumbnail:hover {
  border-color: #5324CD;
}
#product-product ul.thumbnails.list-inline li.image-additional a.thumbnail img.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
#product-product .product-info-tabs {
  margin-top: 24px;
}
#product-product .product-labeled-navigation .nav-pills {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 20px;
}
#product-product .product-labeled-navigation .nav-pills .nav-item .nav-link {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #666;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  transition: color 0.2s, border-color 0.2s;
}
#product-product .product-labeled-navigation .nav-pills .nav-item .nav-link:hover {
  color: #5324CD;
}
#product-product .product-labeled-navigation .nav-pills .nav-item .nav-link.active {
  color: #5324CD;
  border-bottom-color: #5324CD;
  background: none;
}
#product-product .tab-content {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}
#product-product .product-right-wrapper {
  padding: 0 !important;
}
#product-product .product-right-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#product-product .product-right-info h1.h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  letter-spacing: -0.3px;
  margin: 0 0 4px;
}
@media (max-width: 700px) {
  #product-product .product-right-info h1.h2 {
    font-size: 20px;
  }
}
#product-product ul.list-inline.small-description {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}
#product-product ul.list-inline.small-description li.list-inline-item {
  font-size: 12px;
  color: #666;
  margin: 0;
}
#product-product ul.list-inline.small-description li.list-inline-item a {
  color: #5324CD;
  text-decoration: none;
}
#product-product ul.list-inline.small-description li.list-inline-item .badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
#product-product .short-description {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
  border-left: 3px solid #5324CD;
  padding-left: 14px;
}
#product-product #watchdog-toggles {
  border-radius: 20px !important;
  font-size: 12px;
  padding: 5px 14px !important;
  background: linear-gradient(135deg, #5324CD, #7c3aed) !important;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
#product-product .product-right-info .row.mt-4 {
  margin: 0 !important;
}
#product-product .product-right-info .row.mt-4 > .col-6 {
  padding: 0 !important;
  flex: none;
  width: 100% !important;
  max-width: 100% !important;
}
#product-product h2.price {
  font-size: 30px;
  font-weight: 700;
  color: #5324CD;
  letter-spacing: -0.5px;
  margin: 0 0 6px;
}
#product-product .list-unstyled li span[style*="line-through"],
#product-product .list-unstyled li span[style*="text-decoration: line-through"] {
  font-size: 16px;
  color: #aaa;
  text-decoration: line-through !important;
}
#product-product .list-unstyled h2 {
  font-size: 30px;
  font-weight: 700;
  color: #5324CD;
  margin: 0;
}
#product-product .product-purchase-card .input-group {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 140px;
  border: 1.5px solid #ebebeb;
  border-radius: 6px;
  overflow: hidden;
  height: 44px;
}
#product-product .product-purchase-card .input-group input#input-quantity {
  width: 52px !important;
  height: 44px;
  text-align: center;
  border: none !important;
  border-left: 1.5px solid #ebebeb !important;
  border-right: 1.5px solid #ebebeb !important;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  outline: none;
  background: #fff;
  box-shadow: none !important;
  -moz-appearance: textfield;
}
#product-product .product-purchase-card .input-group input#input-quantity::-webkit-outer-spin-button,
#product-product .product-purchase-card .input-group input#input-quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
#product-product .product-purchase-card .input-group .input-group-btn .btn {
  width: 40px;
  height: 44px;
  background: #fafafa;
  border: none;
  font-size: 18px;
  color: #111;
  padding: 0;
  line-height: 1;
  border-radius: 0;
  transition: background 0.15s;
}
#product-product .product-purchase-card .input-group .input-group-btn .btn:hover {
  background: #f5f0ff;
  color: #5324CD;
}
#product-product #button-cart,
#product-product button[id^="button-cart"] {
  height: 44px;
  padding: 0 28px;
  background: #5324CD;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
  margin-top: 0;
}
#product-product #button-cart:hover,
#product-product button[id^="button-cart"]:hover {
  background: #451eaa;
  transform: translateY(-1px);
}
#product-product #button-cart:active,
#product-product button[id^="button-cart"]:active {
  transform: translateY(0);
}
#product-product .btn-wishlist,
#product-product a[onclick*="wishlist"],
#product-product button[onclick*="wishlist"],
#product-product .btn-compare,
#product-product a[onclick*="compare"],
#product-product button[onclick*="compare"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1.5px solid #ebebeb;
  background: #fff;
  color: #aaa;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  font-size: 18px;
}
#product-product .btn-wishlist:hover,
#product-product a[onclick*="wishlist"]:hover,
#product-product button[onclick*="wishlist"]:hover,
#product-product .btn-compare:hover,
#product-product a[onclick*="compare"]:hover,
#product-product button[onclick*="compare"]:hover {
  border-color: #5324CD;
  color: #5324CD;
}
#product-product .product-right-info table {
  width: 100%;
  font-size: 13px;
  background: #f5f0ff;
  border-radius: 6px;
  overflow: hidden;
}
#product-product .product-right-info table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5324CD;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(83, 36, 205, 0.15);
  background: none;
}
#product-product .product-right-info table td {
  padding: 6px 12px;
  border: none;
  color: #111;
}
#product-product .product-right-info table td:last-child {
  font-weight: 700;
  color: #5324CD;
}
#product-product #tab-related h3,
#product-product .product-related h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5324CD;
  margin: 0 0 20px;
}
#product-product #tab-related .product-layout .thumbnail,
#product-product .product-related .product-layout .thumbnail {
  border-radius: 6px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
#product-product #tab-related .product-layout .thumbnail:hover,
#product-product .product-related .product-layout .thumbnail:hover {
  box-shadow: 0 8px 24px rgba(83, 36, 205, 0.12);
  transform: translateY(-2px);
}
#product-product .share {
  display: none !important;
}
@media (max-width: 575px) {
  #product-product.container {
    padding-top: 16px;
  }
  #product-product .product-right-info h1.h2 {
    font-size: 18px;
  }
  #product-product h2.price {
    font-size: 22px;
  }
  #product-product #button-cart {
    padding: 0 16px;
    font-size: 13px;
  }
}
#product-product .pd-related-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #ebebeb;
}
#product-product .pd-related-section .grid__cards {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 900px) {
  #product-product .pd-related-section .grid__cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 575px) {
  #product-product .pd-related-section .grid__cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
#product-product .pd-related-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #5324CD;
  margin: 0 0 20px;
}
.premium-additional-info {
  margin-top: 8px;
}
.premium-additional-info ul {
  margin: 0;
  padding: 0;
}
.premium-additional-info li {
  display: flex;
  align-items: center;
  min-height: 52px;
  margin-bottom: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e9e7f0;
  border-radius: 6px;
  color: #2b2b35;
  font-size: 16px;
  line-height: 1.45;
  box-shadow: 0 8px 24px rgba(20, 24, 39, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.premium-additional-info li:last-child {
  margin-bottom: 0;
}
.premium-additional-info li:hover {
  transform: translateY(-1px);
  border-color: rgba(89, 54, 244, 0.22);
  box-shadow: 0 12px 30px rgba(20, 24, 39, 0.07);
}
.premium-additional-info li img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  opacity: 0.9;
}
.premium-additional-info li u {
  text-decoration: none;
  font-weight: 700;
  color: #1f1f2b;
  background-repeat: no-repeat;
  background-size: 100% 7px;
  background-position: 0 92%;
  transition: background-size 0.2s ease;
}
.premium-additional-info li:hover u {
  background-size: 100% 9px;
}
.premium-additional-info .manufacturer-card {
  width: 100%;
  max-width: 220px;
  min-height: 120px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e9e7f0;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(20, 24, 39, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.premium-additional-info .manufacturer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 54, 244, 0.22);
  box-shadow: 0 16px 36px rgba(20, 24, 39, 0.08);
}
.premium-additional-info .manufacturer-card img {
  max-width: 150px;
  max-height: 58px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.premium-additional-info .manufacturer-card:hover img {
  transform: scale(1.02);
}
@media (max-width: 767.98px) {
  .premium-additional-info li {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 15px;
  }
  .premium-additional-info .manufacturer-card {
    max-width: 100%;
    min-height: 108px;
    margin-top: 16px !important;
  }
  .premium-additional-info .manufacturer-card img {
    max-width: 135px;
  }
}
#product-product .product-purchase-card .quantity-group.quantity-widget {
  display: inline-flex;
  align-items: center;
  max-width: 170px;
  width: 100%;
  border: 1px solid rgba(83, 36, 205, 0.16);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 24, 39, 0.06);
}
#product-product .product-purchase-card .quantity-group.quantity-widget .quantity-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: #fbfaff;
  color: #5324CD;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}
#product-product .product-purchase-card .quantity-group.quantity-widget .quantity-btn:hover {
  background: rgba(83, 36, 205, 0.08);
  color: #481fb3;
}
#product-product .product-purchase-card .quantity-group.quantity-widget .quantity-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
#product-product .product-purchase-card .quantity-group.quantity-widget #input-quantity {
  width: 72px !important;
  height: 48px;
  border: 0 !important;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  box-shadow: none !important;
  -moz-appearance: textfield;
}
#product-product .product-purchase-card .quantity-group.quantity-widget #input-quantity::-webkit-outer-spin-button,
#product-product .product-purchase-card .quantity-group.quantity-widget #input-quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
#product-product .product-purchase-card .quantity-group.quantity-widget #input-quantity:disabled {
  background: #f8f8fb;
  color: rgba(17, 17, 17, 0.48);
  cursor: not-allowed;
}
#product-product .pd-related-grid .product-card--related:not(.product-card--guest) .card__overlay,
#product-product .pd-related-grid .product-card--related:not(.product-card--guest) .product-card__overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.78) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#product-product .pd-related-grid .product-card--related:not(.product-card--guest) .card__overlay::before,
#product-product .pd-related-grid .product-card--related:not(.product-card--guest) .product-card__overlay::before {
  content: none;
  display: none;
}
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  #product-product .pd-related-grid .product-card--related:not(.product-card--guest) .card__overlay,
  #product-product .pd-related-grid .product-card--related:not(.product-card--guest) .product-card__overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.82) 100%);
  }
}
#product-product .pd-related-grid .product-card--related.product-card--logged {
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 208px;
  position: relative;
  z-index: 1;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .card__img {
  min-height: 280px;
  padding: 28px 24px 24px;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .card__body {
  padding: 18px 16px 16px;
  position: relative;
  z-index: 1;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .card__title {
  margin-bottom: 0;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__title-link,
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__brand-link {
  position: relative;
  z-index: 1;
  text-decoration: none;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__title-link {
  color: #29303f;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__brand-link {
  color: rgba(68, 68, 68, 0.8);
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__brand-link:hover {
  color: #5324CD;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__stock-inline {
  margin-top: 8px;
  color: rgba(41, 48, 63, 0.58);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .card__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  text-align: right;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .price-compare {
  color: rgba(41, 48, 63, 0.42);
  text-decoration: line-through;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .price-current {
  color: #29303f;
  font-weight: 700;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .card__overlay,
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 4;
  cursor: pointer;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.94) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
#product-product .pd-related-grid .product-card--related.product-card--logged:hover .card__overlay,
#product-product .pd-related-grid .product-card--related.product-card--logged:focus-within .card__overlay,
#product-product .pd-related-grid .product-card--related.product-card--logged:hover .product-card__overlay,
#product-product .pd-related-grid .product-card--related.product-card--logged:focus-within .product-card__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#product-product .pd-related-grid .product-card--related.product-card--logged:hover .product-card__title-link,
#product-product .pd-related-grid .product-card--related.product-card--logged:focus-within .product-card__title-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .card__overlay::before,
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay::before {
  content: none;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay-summary {
  width: 100%;
  max-width: 220px;
  margin-top: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay-title {
  margin: 0 0 6px;
  color: #29303f;
  font-size: 20px;
  line-height: 1.32;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay-link {
  color: inherit;
  text-decoration: none;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay-stock {
  color: rgba(41, 48, 63, 0.64);
  font-size: 13px;
  line-height: 1.45;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__purchase {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 220px;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: stretch;
  gap: 8px;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(41, 48, 63, 0.16);
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #29303f;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -moz-appearance: textfield;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty input:focus {
  outline: none;
  border-color: rgba(83, 36, 205, 0.28);
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.08);
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty input::-webkit-outer-spin-button,
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty .qty__actions {
  display: inline-grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  width: 28px;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty .qty__btn {
  width: 28px;
  height: 16px;
  padding: 0;
  border: 1px solid rgba(41, 48, 63, 0.12);
  border-radius: 6px;
  background: linear-gradient(180deg, #fcfcfd, #f3f4f7);
  color: rgba(41, 48, 63, 0.76);
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty .qty__btn:hover {
  color: #29303f;
  border-color: rgba(83, 36, 205, 0.2);
  background: rgba(83, 36, 205, 0.05);
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty .qty__btn:active {
  transform: translateY(1px);
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty .qty__btn:disabled {
  cursor: not-allowed;
  color: rgba(41, 48, 63, 0.22);
  border-color: rgba(41, 48, 63, 0.1);
  background: #f6f7fb;
  transform: none;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .product-card__add {
  flex: 0 0 auto;
  min-width: 92px;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 6px;
  justify-content: center;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
#product-product .pd-related-grid .product-card--related.product-card--logged .bjutip-stock-note {
  position: relative;
  z-index: 2;
  max-width: 220px;
  margin-top: 0;
  text-align: center;
  line-height: 1.45;
}
#product-product .pd-related-grid .product-card--related.product-card--logged.card--out-of-stock .product-card__purchase,
#product-product .pd-related-grid .product-card--related.product-card--logged.bjutip-max-reached .product-card__purchase {
  display: none;
}
#product-product .pd-related-grid .product-card--related.product-card--logged.card--out-of-stock .bjutip-stock-note {
  display: none;
}
@media (max-width: 767.98px) {
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__overlay,
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: static;
    inset: auto;
    padding: 0 14px 14px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay-summary {
    display: none;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__purchase {
    max-width: none;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__body {
    padding: 14px 14px 12px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__overlay,
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay {
    padding: 0 14px 14px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__purchase {
    gap: 8px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__add {
    min-width: 84px;
    padding-right: 14px;
    padding-left: 14px;
  }
}
@media (max-width: 767.98px) {
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__body {
    padding: 14px 14px 12px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__title {
    font-size: 15px;
    line-height: 1.35;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__brand {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__stock-inline {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.45;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 12px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__price {
    justify-content: flex-start;
    text-align: left;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__overlay,
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__overlay {
    padding: 0 14px 14px;
    gap: 10px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__purchase {
    align-items: stretch;
    gap: 8px;
    width: 100%;
    max-width: none;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty {
    flex: 1 1 auto;
    grid-template-columns: minmax(0, 1fr) 26px;
    gap: 6px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty input {
    width: 100%;
    height: 40px;
    padding: 0 8px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty .qty__actions {
    width: 26px;
    gap: 4px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__qty .qty__btn {
    width: 26px;
    height: 16px;
    border-radius: 5px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__add {
    flex: 0 0 84px;
    min-width: 84px;
    min-height: 40px;
    padding-right: 14px;
    padding-left: 14px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .bjutip-stock-note {
    max-width: none;
    font-size: 12px;
    line-height: 1.45;
    text-wrap: balance;
  }
}
@media (max-width: 767.98px) {
  #product-product .pd-related-section .grid__cards {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 575.98px) {
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__img {
    min-height: 220px;
    padding: 20px 18px 14px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .product-card__image-link {
    min-height: 168px;
  }
  #product-product .pd-related-grid .product-card--related.product-card--logged .card__img img {
    max-height: 150px;
  }
}
.page-product-new {
  background: #f6f6f8;
}
.page-product-new .toolbar {
  margin-bottom: 0;
}
.page-product-new .toolbar__inner {
  gap: 16px;
}
.page-product-new .toolbar__count {
  color: rgba(41, 48, 63, 0.72);
  font-size: 13px;
}
.page-product-new .product-new__grid-wrap {
  padding-top: 32px;
  padding-bottom: 56px;
}
.page-product-new .product-new__empty {
  padding: 24px 0 56px;
}
@media (max-width: 768px) {
  .page-product-new .toolbar__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .page-product-new .toolbar__sort-wrap,
  .page-product-new .toolbar__sort {
    width: 100%;
  }
  .page-product-new .product-new__grid-wrap {
    padding-top: 24px;
    padding-bottom: 44px;
  }
}
#account-watchdog.account .account-heading,
#account-wishlist.account .account-heading {
  margin-bottom: 34px;
}
#account-watchdog.account .account-saved__section + .account-saved__section,
#account-wishlist.account .account-saved__section + .account-saved__section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(41, 48, 63, 0.08);
}
#account-watchdog.account .account-saved__intro,
#account-wishlist.account .account-saved__intro {
  max-width: 860px;
  margin: 0 0 22px;
}
#account-watchdog.account .account-saved__intro p,
#account-wishlist.account .account-saved__intro p {
  margin: 0;
  color: rgba(41, 48, 63, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
}
#account-watchdog.account .account-saved__head,
#account-wishlist.account .account-saved__head {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(140px, 0.72fr) minmax(110px, 0.54fr) minmax(250px, 0.92fr);
  gap: 16px;
  padding: 0 20px 10px;
}
#account-watchdog.account .account-saved__head span,
#account-wishlist.account .account-saved__head span {
  color: rgba(41, 48, 63, 0.4);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
#account-watchdog.account .account-saved__list,
#account-wishlist.account .account-saved__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#account-watchdog.account .account-saved__row,
#account-wishlist.account .account-saved__row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(140px, 0.72fr) minmax(110px, 0.54fr) minmax(250px, 0.92fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
#account-watchdog.account .account-saved__row:hover,
#account-wishlist.account .account-saved__row:hover {
  border-color: rgba(83, 36, 205, 0.18);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}
#account-watchdog.account .account-saved__product,
#account-wishlist.account .account-saved__product {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
#account-watchdog.account .account-saved__thumb,
#account-wishlist.account .account-saved__thumb {
  width: 72px;
  height: 72px;
  padding: 10px;
  flex: 0 0 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #f8f9fc;
  overflow: hidden;
}
#account-watchdog.account .account-saved__thumb img,
#account-wishlist.account .account-saved__thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
#account-watchdog.account .account-saved__content,
#account-wishlist.account .account-saved__content {
  min-width: 0;
}
#account-watchdog.account .account-saved__title,
#account-wishlist.account .account-saved__title {
  margin: 0 0 6px;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
#account-watchdog.account .account-saved__title a,
#account-wishlist.account .account-saved__title a {
  color: #29303f;
  text-decoration: none;
}
#account-watchdog.account .account-saved__title a:hover,
#account-wishlist.account .account-saved__title a:hover {
  color: #5324CD;
}
#account-watchdog.account .account-saved__meta,
#account-wishlist.account .account-saved__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
#account-watchdog.account .account-saved__meta-item,
#account-wishlist.account .account-saved__meta-item {
  color: rgba(41, 48, 63, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.45;
}
#account-watchdog.account .account-saved__meta-item strong,
#account-wishlist.account .account-saved__meta-item strong {
  color: rgba(41, 48, 63, 0.78);
  font-weight: 700;
}
#account-watchdog.account .account-saved__status,
#account-wishlist.account .account-saved__status,
#account-watchdog.account .account-saved__price,
#account-wishlist.account .account-saved__price,
#account-watchdog.account .account-saved__actions,
#account-wishlist.account .account-saved__actions {
  min-width: 0;
}
#account-watchdog.account .account-saved__status::before,
#account-wishlist.account .account-saved__status::before,
#account-watchdog.account .account-saved__price::before,
#account-wishlist.account .account-saved__price::before,
#account-watchdog.account .account-saved__actions::before,
#account-wishlist.account .account-saved__actions::before {
  display: none;
}
#account-watchdog.account .account-saved__status,
#account-wishlist.account .account-saved__status {
  display: grid;
  gap: 6px;
  justify-items: start;
}
#account-watchdog.account .account-saved__status-note,
#account-wishlist.account .account-saved__status-note {
  color: rgba(41, 48, 63, 0.46);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.45;
}
#account-watchdog.account .account-saved__price strong,
#account-wishlist.account .account-saved__price strong,
#account-watchdog.account .account-saved__price b,
#account-wishlist.account .account-saved__price b {
  display: block;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
#account-watchdog.account .account-saved__price span,
#account-wishlist.account .account-saved__price span,
#account-watchdog.account .account-saved__price s,
#account-wishlist.account .account-saved__price s {
  display: block;
  margin-top: 6px;
  color: rgba(41, 48, 63, 0.42);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.2;
}
#account-watchdog.account .account-saved__actions,
#account-wishlist.account .account-saved__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
#account-watchdog.account .account-saved__footer,
#account-wishlist.account .account-saved__footer {
  margin-top: 24px;
}
#account-watchdog.account .account-status-pill,
#account-wishlist.account .account-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
#account-watchdog.account .account-status-pill.is-active,
#account-wishlist.account .account-status-pill.is-active,
#account-watchdog.account .account-status-pill.is-instock,
#account-wishlist.account .account-status-pill.is-instock {
  background: rgba(108, 180, 127, 0.16);
  color: #2f7d47;
}
#account-watchdog.account .account-status-pill.is-archived,
#account-wishlist.account .account-status-pill.is-archived {
  background: rgba(83, 36, 205, 0.1);
  color: #5324CD;
}
#account-watchdog.account .account-status-pill.is-limited,
#account-wishlist.account .account-status-pill.is-limited {
  background: rgba(211, 146, 38, 0.16);
  color: #a56808;
}
#account-watchdog.account .account-status-pill.is-out,
#account-wishlist.account .account-status-pill.is-out {
  background: rgba(212, 90, 90, 0.14);
  color: #b53a3a;
}
#account-watchdog.account .btn-account-action,
#account-wishlist.account .btn-account-action {
  min-width: 138px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #fff;
  color: #29303f;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
#account-watchdog.account .btn-account-action:hover,
#account-wishlist.account .btn-account-action:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
#account-watchdog.account .btn-account-action:focus,
#account-wishlist.account .btn-account-action:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(83, 36, 205, 0.12);
}
#account-watchdog.account .btn-account-action[disabled],
#account-wishlist.account .btn-account-action[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
#account-watchdog.account .btn-account-action--primary,
#account-wishlist.account .btn-account-action--primary {
  border-color: rgba(83, 36, 205, 0.28);
  background: linear-gradient(135deg, #5324CD 0%, #6A39FF 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(83, 36, 205, 0.18);
}
#account-watchdog.account .btn-account-action--ghost,
#account-wishlist.account .btn-account-action--ghost {
  border-color: rgba(41, 48, 63, 0.12);
  background: #fff;
  color: rgba(41, 48, 63, 0.76);
}
#account-watchdog.account .btn-account-action--ghost:hover,
#account-wishlist.account .btn-account-action--ghost:hover {
  border-color: rgba(41, 48, 63, 0.2);
  color: #29303f;
  background: #fafbfe;
}
#account-watchdog.account .btn-account-action--danger,
#account-wishlist.account .btn-account-action--danger {
  border-color: rgba(221, 77, 77, 0.34);
  background: rgba(221, 77, 77, 0.04);
  color: #c74242;
}
#account-watchdog.account .btn-account-action--danger:hover,
#account-wishlist.account .btn-account-action--danger:hover {
  border-color: rgba(221, 77, 77, 0.44);
  background: rgba(221, 77, 77, 0.07);
  color: #b33636;
}
#account-watchdog.account .account-empty-state,
#account-wishlist.account .account-empty-state {
  padding: 30px 24px;
  border: 1px dashed rgba(41, 48, 63, 0.16);
  border-radius: 6px;
  background: #fbfcfe;
  color: rgba(41, 48, 63, 0.54);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
#account-watchdog.account .alert,
#account-wishlist.account .alert {
  border-radius: 6px;
}
@media (max-width: 991.98px) {
  #account-watchdog.account .account-saved__head,
  #account-wishlist.account .account-saved__head {
    display: none;
  }
  #account-watchdog.account .account-saved__row,
  #account-wishlist.account .account-saved__row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  #account-watchdog.account .account-saved__product,
  #account-wishlist.account .account-saved__product {
    align-items: flex-start;
  }
  #account-watchdog.account .account-saved__thumb,
  #account-wishlist.account .account-saved__thumb {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
  #account-watchdog.account .account-saved__title,
  #account-wishlist.account .account-saved__title {
    font-size: 1.2rem;
  }
  #account-watchdog.account .account-saved__status,
  #account-wishlist.account .account-saved__status,
  #account-watchdog.account .account-saved__price,
  #account-wishlist.account .account-saved__price,
  #account-watchdog.account .account-saved__actions,
  #account-wishlist.account .account-saved__actions {
    padding-top: 12px;
    border-top: 1px solid rgba(41, 48, 63, 0.08);
  }
  #account-watchdog.account .account-saved__status::before,
  #account-wishlist.account .account-saved__status::before,
  #account-watchdog.account .account-saved__price::before,
  #account-wishlist.account .account-saved__price::before,
  #account-watchdog.account .account-saved__actions::before,
  #account-wishlist.account .account-saved__actions::before {
    display: block;
    margin-bottom: 8px;
    color: rgba(41, 48, 63, 0.38);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
    content: attr(data-label);
  }
  #account-watchdog.account .account-saved__actions,
  #account-wishlist.account .account-saved__actions {
    justify-content: stretch;
  }
  #account-watchdog.account .account-saved__actions .btn-account-action,
  #account-wishlist.account .account-saved__actions .btn-account-action {
    flex: 1 1 100%;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  #account-watchdog.account .account-heading,
  #account-wishlist.account .account-heading {
    margin-bottom: 26px;
  }
  #account-watchdog.account .account-saved__row,
  #account-wishlist.account .account-saved__row {
    padding: 16px;
  }
  #account-watchdog.account .account-saved__product,
  #account-wishlist.account .account-saved__product {
    gap: 14px;
  }
  #account-watchdog.account .account-saved__title,
  #account-wishlist.account .account-saved__title {
    font-size: 1.08rem;
  }
  #account-watchdog.account .account-saved__meta-item,
  #account-wishlist.account .account-saved__meta-item {
    font-size: 12px;
  }
  #account-watchdog.account .account-saved__status-note,
  #account-wishlist.account .account-saved__status-note {
    font-size: 11px;
  }
  #account-watchdog.account .btn-account-action,
  #account-wishlist.account .btn-account-action {
    min-width: 0;
    min-height: 42px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}
#account-login.account-login-page {
  padding-top: 12px;
  padding-bottom: 72px;
}
#account-login.account-login-page #content {
  width: 100%;
}
.account-login-hero {
  padding: 6px 0 0;
}
.account-login-hero__intro,
.account-auth-card {
  height: 100%;
  border-radius: 6px;
}
.account-login-hero__intro {
  position: relative;
  overflow: hidden;
  padding: 38px 34px;
  border: 1px solid rgba(83, 36, 205, 0.1);
  background: radial-gradient(circle at 0% 0%, rgba(91, 43, 224, 0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #faf9fd 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
.account-login-hero__intro::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(91, 43, 224, 0.1), transparent 68%);
  pointer-events: none;
}
.account-login-hero__intro h2 {
  margin: 0 0 14px;
  color: #29303f;
  font-size: clamp(2rem, 2.3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.account-login-hero__intro p {
  margin: 0 0 14px;
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
.account-login-hero__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(83, 36, 205, 0.08);
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.account-login-hero__features {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.account-login-hero__feature {
  padding: 16px 18px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
}
.account-login-hero__feature strong,
.account-login-hero__feature span {
  display: block;
}
.account-login-hero__feature strong {
  margin-bottom: 5px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.account-login-hero__feature span {
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
.account-auth-card {
  padding: 34px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
.account-auth-card__top {
  margin-bottom: 22px;
}
.account-auth-card__top h1 {
  margin: 0 0 8px;
  color: #29303f;
  font-size: 2.15rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.account-auth-card__top p {
  margin: 0;
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
}
.account-auth-card__top a {
  color: #5324CD;
}
.account-auth-card__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #7c7692;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
#account-login .form-control {
  min-height: 54px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #fcfbfe;
  box-shadow: none;
}
#account-login .form-control:focus {
  border-color: rgba(83, 36, 205, 0.3);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(83, 36, 205, 0.08);
}
#account-login .input {
  position: relative;
}
#account-login .input .form-control {
  padding: 22px 14px 10px;
  color: #29303f;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
#account-login .btn.btn-primary,
#account-login input.btn.btn-primary,
#account-login .account-auth-card input[type="submit"] {
  min-height: 50px;
  padding: 0;
  border-radius: 6px;
  background: #5324CD;
  border-color: #5324CD;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#account-login .btn.btn-primary:hover,
#account-login input.btn.btn-primary:hover,
#account-login .account-auth-card input[type="submit"]:hover,
#account-login .btn.btn-primary:focus,
#account-login input.btn.btn-primary:focus,
#account-login .account-auth-card input[type="submit"]:focus {
  background: #5927d9;
  border-color: #5927d9;
  color: #fff;
}
#account-login .account-auth-card__bottom {
  margin-top: 6px;
}
#account-login .account-auth-card__bottom a {
  color: #5324CD;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  #account-login.account-login-page {
    padding-bottom: 48px;
  }
  .account-login-hero__intro,
  .account-auth-card {
    padding: 22px 18px;
  }
}
#account-register.account-register-page {
  padding-top: 12px;
  padding-bottom: 72px;
}
#account-register.account-register-page #content {
  width: 100%;
}
.account-register-hero {
  padding: 6px 0 0;
}
.account-register-intro,
.account-register-card {
  height: 100%;
  border-radius: 6px;
}
.account-register-intro {
  position: sticky;
  top: 24px;
  padding: 36px 32px;
  border: 1px solid rgba(83, 36, 205, 0.1);
  background: radial-gradient(circle at 0% 0%, rgba(91, 43, 224, 0.12), transparent 34%), linear-gradient(180deg, #ffffff 0%, #faf9fd 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
.account-register-intro h1 {
  margin: 0 0 10px;
  color: #29303f;
  font-size: clamp(2rem, 2.35vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.account-register-intro h3 {
  margin: 0 0 16px;
  color: #29303f;
  font-size: 1.35rem;
  line-height: 1.4;
}
.account-register-intro p {
  margin: 0 0 14px;
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
.account-register-intro__label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(83, 36, 205, 0.08);
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.account-register-steps {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}
.account-register-step,
.account-register-note {
  padding: 18px;
  border-radius: 6px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  background: rgba(255, 255, 255, 0.94);
}
.account-register-step strong,
.account-register-step span {
  display: block;
}
.account-register-step strong {
  margin-bottom: 5px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.account-register-step span {
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
.account-register-note h4 {
  margin: 0 0 12px;
  color: #29303f;
  font-size: 17px;
}
.account-register-note ul {
  margin: 0;
  padding-left: 18px;
}
.account-register-note ul li {
  margin-bottom: 7px;
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
.account-register-card {
  padding: 30px 28px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
.account-register-card fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.account-register-card h5 {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.1);
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}
#account-register .form-control,
#account-register select.form-control,
#account-register textarea.form-control {
  min-height: 54px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #fcfbfe;
  box-shadow: none;
}
#account-register .form-control:focus,
#account-register select.form-control:focus,
#account-register textarea.form-control:focus {
  border-color: rgba(83, 36, 205, 0.3);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(83, 36, 205, 0.08);
}
#account-register textarea.form-control {
  min-height: 120px;
}
#account-register .input {
  position: relative;
}
#account-register .input .form-control,
#account-register .input select.form-control {
  padding: 22px 14px 10px;
  color: #29303f;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
#account-register .input.account-type::before {
  display: none;
}
#account-register .account-type-dropdown {
  position: relative;
}
#account-register .account-type-toggle {
  min-height: 54px;
  padding: 22px 14px 10px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #fcfbfe;
  box-shadow: none;
  color: #29303f;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
#account-register .account-type-toggle:focus,
#account-register .account-type-toggle:focus-visible {
  border-color: rgba(83, 36, 205, 0.3);
  box-shadow: 0 0 0 4px rgba(83, 36, 205, 0.08);
}
#account-register .account-type-toggle .small.text-muted {
  color: #8f89a0;
}
#account-register .account-type-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: 340px;
  overflow-y: auto;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(24, 16, 40, 0.12);
  z-index: 20;
}
#account-register .js-account-type-register.is-open .account-type-menu {
  display: block;
}
#account-register .account-type-option {
  display: block;
  width: 100%;
  padding: 13px 14px;
  border: 0;
  border-bottom: 1px solid #f0edf6;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
#account-register .account-type-option:last-child {
  border-bottom: 0;
}
#account-register .account-type-option:hover {
  background: rgba(83, 36, 205, 0.04);
}
#account-register .account-type-option.active {
  background: linear-gradient(90deg, rgba(83, 36, 205, 0.06) 0%, #fff 100%);
}
#account-register .account-type-option .fw-semibold {
  color: #29303f;
  font-size: 14px;
  font-weight: 700;
}
#account-register .account-type-option .small.text-muted {
  margin-top: 4px;
  color: #4b5565;
  font-size: 12px;
  line-height: 1.55;
}
#account-register #account-type-hint-register {
  margin-left: 2px;
  color: #8a839c;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
}
#account-register .text-danger {
  margin-top: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}
#account-register label[for="agree"],
#account-register .form-check-label {
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
#account-register .btn.btn-primary,
#account-register .button.primary,
#account-register .gradient-background,
#account-register input[type="submit"] {
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 6px;
  background: #5324CD;
  border-color: #5324CD;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#account-register .btn.btn-primary:hover,
#account-register .button.primary:hover,
#account-register .gradient-background:hover,
#account-register input[type="submit"]:hover,
#account-register .btn.btn-primary:focus,
#account-register .button.primary:focus,
#account-register .gradient-background:focus,
#account-register input[type="submit"]:focus {
  background: #5927d9;
  border-color: #5927d9;
  color: #fff;
}
@media (max-width: 1199.98px) {
  .account-register-intro {
    position: static;
  }
}
@media (max-width: 767.98px) {
  #account-register.account-register-page {
    padding-bottom: 48px;
  }
  .account-register-intro,
  .account-register-card {
    padding: 22px 18px;
  }
}
#account-account.account,
#account-order.account,
#account-address.account,
#account-password.account,
#account-edit.account,
#account-download.account,
#account-watchdog.account,
#account-newsletter.account,
#account-wishlist.account,
#account-reward.account,
#account-transaction.account {
  padding-top: 10px;
  padding-bottom: 82px;
}
#account-account.account #content,
#account-order.account #content,
#account-address.account #content,
#account-password.account #content,
#account-edit.account #content,
#account-download.account #content,
#account-watchdog.account #content,
#account-newsletter.account #content,
#account-wishlist.account #content,
#account-reward.account #content,
#account-transaction.account #content {
  width: 100%;
}
#account-account.account .account-page-shell,
#account-order.account .account-page-shell,
#account-address.account .account-page-shell,
#account-password.account .account-page-shell,
#account-edit.account .account-page-shell,
#account-download.account .account-page-shell,
#account-watchdog.account .account-page-shell,
#account-newsletter.account .account-page-shell,
#account-wishlist.account .account-page-shell,
#account-reward.account .account-page-shell,
#account-transaction.account .account-page-shell {
  display: grid;
  gap: 24px;
}
#account-account.account .account-heading,
#account-order.account .account-heading,
#account-address.account .account-heading,
#account-password.account .account-heading,
#account-edit.account .account-heading,
#account-download.account .account-heading,
#account-watchdog.account .account-heading,
#account-newsletter.account .account-heading,
#account-wishlist.account .account-heading,
#account-reward.account .account-heading,
#account-transaction.account .account-heading {
  width: 100%;
  margin: 0 0 28px;
}
#account-account.account .account-heading h1,
#account-order.account .account-heading h1,
#account-address.account .account-heading h1,
#account-password.account .account-heading h1,
#account-edit.account .account-heading h1,
#account-download.account .account-heading h1,
#account-watchdog.account .account-heading h1,
#account-newsletter.account .account-heading h1,
#account-wishlist.account .account-heading h1,
#account-reward.account .account-heading h1,
#account-transaction.account .account-heading h1 {
  margin: 0 0 16px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(2.15rem, 2.6vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
#account-account.account .account-heading--compact,
#account-order.account .account-heading--compact,
#account-address.account .account-heading--compact,
#account-password.account .account-heading--compact,
#account-edit.account .account-heading--compact,
#account-download.account .account-heading--compact,
#account-watchdog.account .account-heading--compact,
#account-newsletter.account .account-heading--compact,
#account-wishlist.account .account-heading--compact,
#account-reward.account .account-heading--compact,
#account-transaction.account .account-heading--compact {
  margin-bottom: 0;
}
#account-account.account .account-nav,
#account-order.account .account-nav,
#account-address.account .account-nav,
#account-password.account .account-nav,
#account-edit.account .account-nav,
#account-download.account .account-nav,
#account-watchdog.account .account-nav,
#account-newsletter.account .account-nav,
#account-wishlist.account .account-nav,
#account-reward.account .account-nav,
#account-transaction.account .account-nav {
  width: 100%;
}
#account-account.account .account-nav__mobile,
#account-order.account .account-nav__mobile,
#account-address.account .account-nav__mobile,
#account-password.account .account-nav__mobile,
#account-edit.account .account-nav__mobile,
#account-download.account .account-nav__mobile,
#account-watchdog.account .account-nav__mobile,
#account-newsletter.account .account-nav__mobile,
#account-wishlist.account .account-nav__mobile,
#account-reward.account .account-nav__mobile,
#account-transaction.account .account-nav__mobile {
  display: none;
}
#account-account.account .account-nav__select-wrap,
#account-order.account .account-nav__select-wrap,
#account-address.account .account-nav__select-wrap,
#account-password.account .account-nav__select-wrap,
#account-edit.account .account-nav__select-wrap,
#account-download.account .account-nav__select-wrap,
#account-watchdog.account .account-nav__select-wrap,
#account-newsletter.account .account-nav__select-wrap,
#account-wishlist.account .account-nav__select-wrap,
#account-reward.account .account-nav__select-wrap,
#account-transaction.account .account-nav__select-wrap {
  position: relative;
}
#account-account.account .account-nav__select-wrap:after,
#account-order.account .account-nav__select-wrap:after,
#account-address.account .account-nav__select-wrap:after,
#account-password.account .account-nav__select-wrap:after,
#account-edit.account .account-nav__select-wrap:after,
#account-download.account .account-nav__select-wrap:after,
#account-watchdog.account .account-nav__select-wrap:after,
#account-newsletter.account .account-nav__select-wrap:after,
#account-wishlist.account .account-nav__select-wrap:after,
#account-reward.account .account-nav__select-wrap:after,
#account-transaction.account .account-nav__select-wrap:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(41, 48, 63, 0.56);
  border-bottom: 1.5px solid rgba(41, 48, 63, 0.56);
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}
#account-account.account .account-nav__select,
#account-order.account .account-nav__select,
#account-address.account .account-nav__select,
#account-password.account .account-nav__select,
#account-edit.account .account-nav__select,
#account-download.account .account-nav__select,
#account-watchdog.account .account-nav__select,
#account-newsletter.account .account-nav__select,
#account-wishlist.account .account-nav__select,
#account-reward.account .account-nav__select,
#account-transaction.account .account-nav__select {
  min-height: 48px;
  padding: 12px 46px 12px 16px;
  border: 1px solid rgba(83, 36, 205, 0.14);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
}
#account-account.account .account-nav__select:focus,
#account-order.account .account-nav__select:focus,
#account-address.account .account-nav__select:focus,
#account-password.account .account-nav__select:focus,
#account-edit.account .account-nav__select:focus,
#account-download.account .account-nav__select:focus,
#account-watchdog.account .account-nav__select:focus,
#account-newsletter.account .account-nav__select:focus,
#account-wishlist.account .account-nav__select:focus,
#account-reward.account .account-nav__select:focus,
#account-transaction.account .account-nav__select:focus {
  border-color: rgba(83, 36, 205, 0.28);
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.1);
}
#account-account.account .account-menu,
#account-order.account .account-menu,
#account-address.account .account-menu,
#account-password.account .account-menu,
#account-edit.account .account-menu,
#account-download.account .account-menu,
#account-watchdog.account .account-menu,
#account-newsletter.account .account-menu,
#account-wishlist.account .account-menu,
#account-reward.account .account-menu,
#account-transaction.account .account-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#account-account.account .account-menu li,
#account-order.account .account-menu li,
#account-address.account .account-menu li,
#account-password.account .account-menu li,
#account-edit.account .account-menu li,
#account-download.account .account-menu li,
#account-watchdog.account .account-menu li,
#account-newsletter.account .account-menu li,
#account-wishlist.account .account-menu li,
#account-reward.account .account-menu li,
#account-transaction.account .account-menu li {
  margin: 0;
}
#account-account.account .account-menu a,
#account-order.account .account-menu a,
#account-address.account .account-menu a,
#account-password.account .account-menu a,
#account-edit.account .account-menu a,
#account-download.account .account-menu a,
#account-watchdog.account .account-menu a,
#account-newsletter.account .account-menu a,
#account-wishlist.account .account-menu a,
#account-reward.account .account-menu a,
#account-transaction.account .account-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(41, 48, 63, 0.82);
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.18s ease;
}
#account-account.account .account-menu a:hover,
#account-order.account .account-menu a:hover,
#account-address.account .account-menu a:hover,
#account-password.account .account-menu a:hover,
#account-edit.account .account-menu a:hover,
#account-download.account .account-menu a:hover,
#account-watchdog.account .account-menu a:hover,
#account-newsletter.account .account-menu a:hover,
#account-wishlist.account .account-menu a:hover,
#account-reward.account .account-menu a:hover,
#account-transaction.account .account-menu a:hover {
  color: #5324CD;
  background: rgba(83, 36, 205, 0.04);
  border-color: rgba(83, 36, 205, 0.12);
}
#account-account.account .account-menu .current a,
#account-order.account .account-menu .current a,
#account-address.account .account-menu .current a,
#account-password.account .account-menu .current a,
#account-edit.account .account-menu .current a,
#account-download.account .account-menu .current a,
#account-watchdog.account .account-menu .current a,
#account-newsletter.account .account-menu .current a,
#account-wishlist.account .account-menu .current a,
#account-reward.account .account-menu .current a,
#account-transaction.account .account-menu .current a {
  color: #5324CD;
  background: rgba(83, 36, 205, 0.06);
  border-color: rgba(83, 36, 205, 0.16);
  font-weight: 700;
}
#account-account.account .account-section,
#account-order.account .account-section,
#account-address.account .account-section,
#account-password.account .account-section,
#account-edit.account .account-section,
#account-download.account .account-section,
#account-watchdog.account .account-section,
#account-newsletter.account .account-section,
#account-wishlist.account .account-section,
#account-reward.account .account-section,
#account-transaction.account .account-section {
  margin-bottom: 30px;
}
#account-account.account .account-section > h4,
#account-order.account .account-section > h4,
#account-address.account .account-section > h4,
#account-password.account .account-section > h4,
#account-edit.account .account-section > h4,
#account-download.account .account-section > h4,
#account-watchdog.account .account-section > h4,
#account-newsletter.account .account-section > h4,
#account-wishlist.account .account-section > h4,
#account-reward.account .account-section > h4,
#account-transaction.account .account-section > h4,
#account-account.account .account-section > h2,
#account-order.account .account-section > h2,
#account-address.account .account-section > h2,
#account-password.account .account-section > h2,
#account-edit.account .account-section > h2,
#account-download.account .account-section > h2,
#account-watchdog.account .account-section > h2,
#account-newsletter.account .account-section > h2,
#account-wishlist.account .account-section > h2,
#account-reward.account .account-section > h2,
#account-transaction.account .account-section > h2 {
  margin: 0 0 14px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
#account-account.account .account-boxes,
#account-order.account .account-boxes,
#account-address.account .account-boxes,
#account-password.account .account-boxes,
#account-edit.account .account-boxes,
#account-download.account .account-boxes,
#account-watchdog.account .account-boxes,
#account-newsletter.account .account-boxes,
#account-wishlist.account .account-boxes,
#account-reward.account .account-boxes,
#account-transaction.account .account-boxes {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}
#account-account.account .account-box,
#account-order.account .account-box,
#account-address.account .account-box,
#account-password.account .account-box,
#account-edit.account .account-box,
#account-download.account .account-box,
#account-watchdog.account .account-box,
#account-newsletter.account .account-box,
#account-wishlist.account .account-box,
#account-reward.account .account-box,
#account-transaction.account .account-box {
  height: 100%;
  min-height: 102px;
  padding: 22px 20px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}
#account-account.account .account-box .value,
#account-order.account .account-box .value,
#account-address.account .account-box .value,
#account-password.account .account-box .value,
#account-edit.account .account-box .value,
#account-download.account .account-box .value,
#account-watchdog.account .account-box .value,
#account-newsletter.account .account-box .value,
#account-wishlist.account .account-box .value,
#account-reward.account .account-box .value,
#account-transaction.account .account-box .value {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
  word-break: break-word;
}
#account-account.account .account-box .description,
#account-order.account .account-box .description,
#account-address.account .account-box .description,
#account-password.account .account-box .description,
#account-edit.account .account-box .description,
#account-download.account .account-box .description,
#account-watchdog.account .account-box .description,
#account-newsletter.account .account-box .description,
#account-wishlist.account .account-box .description,
#account-reward.account .account-box .description,
#account-transaction.account .account-box .description {
  color: rgba(75, 85, 101, 0.88);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
#account-account.account .account-box.failed,
#account-order.account .account-box.failed,
#account-address.account .account-box.failed,
#account-password.account .account-box.failed,
#account-edit.account .account-box.failed,
#account-download.account .account-box.failed,
#account-watchdog.account .account-box.failed,
#account-newsletter.account .account-box.failed,
#account-wishlist.account .account-box.failed,
#account-reward.account .account-box.failed,
#account-transaction.account .account-box.failed {
  border-color: rgba(209, 95, 95, 0.28);
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}
#account-account.account .account-box__delete,
#account-order.account .account-box__delete,
#account-address.account .account-box__delete,
#account-password.account .account-box__delete,
#account-edit.account .account-box__delete,
#account-download.account .account-box__delete,
#account-watchdog.account .account-box__delete,
#account-newsletter.account .account-box__delete,
#account-wishlist.account .account-box__delete,
#account-reward.account .account-box__delete,
#account-transaction.account .account-box__delete {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
#account-account.account .edit-link,
#account-order.account .edit-link,
#account-address.account .edit-link,
#account-password.account .edit-link,
#account-edit.account .edit-link,
#account-download.account .edit-link,
#account-watchdog.account .edit-link,
#account-newsletter.account .edit-link,
#account-wishlist.account .edit-link,
#account-reward.account .edit-link,
#account-transaction.account .edit-link,
#account-account.account .violet,
#account-order.account .violet,
#account-address.account .violet,
#account-password.account .violet,
#account-edit.account .violet,
#account-download.account .violet,
#account-watchdog.account .violet,
#account-newsletter.account .violet,
#account-wishlist.account .violet,
#account-reward.account .violet,
#account-transaction.account .violet,
#account-account.account .table a,
#account-order.account .table a,
#account-address.account .table a,
#account-password.account .table a,
#account-edit.account .table a,
#account-download.account .table a,
#account-watchdog.account .table a,
#account-newsletter.account .table a,
#account-wishlist.account .table a,
#account-reward.account .table a,
#account-transaction.account .table a {
  color: #5324CD;
  font-weight: 700;
  text-decoration: none;
}
#account-account.account .edit-link:hover,
#account-order.account .edit-link:hover,
#account-address.account .edit-link:hover,
#account-password.account .edit-link:hover,
#account-edit.account .edit-link:hover,
#account-download.account .edit-link:hover,
#account-watchdog.account .edit-link:hover,
#account-newsletter.account .edit-link:hover,
#account-wishlist.account .edit-link:hover,
#account-reward.account .edit-link:hover,
#account-transaction.account .edit-link:hover,
#account-account.account .violet:hover,
#account-order.account .violet:hover,
#account-address.account .violet:hover,
#account-password.account .violet:hover,
#account-edit.account .violet:hover,
#account-download.account .violet:hover,
#account-watchdog.account .violet:hover,
#account-newsletter.account .violet:hover,
#account-wishlist.account .violet:hover,
#account-reward.account .violet:hover,
#account-transaction.account .violet:hover,
#account-account.account .table a:hover,
#account-order.account .table a:hover,
#account-address.account .table a:hover,
#account-password.account .table a:hover,
#account-edit.account .table a:hover,
#account-download.account .table a:hover,
#account-watchdog.account .table a:hover,
#account-newsletter.account .table a:hover,
#account-wishlist.account .table a:hover,
#account-reward.account .table a:hover,
#account-transaction.account .table a:hover {
  color: #481fb3;
}
#account-account.account .row + .row,
#account-order.account .row + .row,
#account-address.account .row + .row,
#account-password.account .row + .row,
#account-edit.account .row + .row,
#account-download.account .row + .row,
#account-watchdog.account .row + .row,
#account-newsletter.account .row + .row,
#account-wishlist.account .row + .row,
#account-reward.account .row + .row,
#account-transaction.account .row + .row,
#account-account.account .table-responsive + .row,
#account-order.account .table-responsive + .row,
#account-address.account .table-responsive + .row,
#account-password.account .table-responsive + .row,
#account-edit.account .table-responsive + .row,
#account-download.account .table-responsive + .row,
#account-watchdog.account .table-responsive + .row,
#account-newsletter.account .table-responsive + .row,
#account-wishlist.account .table-responsive + .row,
#account-reward.account .table-responsive + .row,
#account-transaction.account .table-responsive + .row,
#account-account.account .buttons,
#account-order.account .buttons,
#account-address.account .buttons,
#account-password.account .buttons,
#account-edit.account .buttons,
#account-download.account .buttons,
#account-watchdog.account .buttons,
#account-newsletter.account .buttons,
#account-wishlist.account .buttons,
#account-reward.account .buttons,
#account-transaction.account .buttons,
#account-account.account .pagination,
#account-order.account .pagination,
#account-address.account .pagination,
#account-password.account .pagination,
#account-edit.account .pagination,
#account-download.account .pagination,
#account-watchdog.account .pagination,
#account-newsletter.account .pagination,
#account-wishlist.account .pagination,
#account-reward.account .pagination,
#account-transaction.account .pagination,
#account-account.account .results,
#account-order.account .results,
#account-address.account .results,
#account-password.account .results,
#account-edit.account .results,
#account-download.account .results,
#account-watchdog.account .results,
#account-newsletter.account .results,
#account-wishlist.account .results,
#account-reward.account .results,
#account-transaction.account .results {
  margin-top: 18px;
}
#account-account.account .pagination,
#account-order.account .pagination,
#account-address.account .pagination,
#account-password.account .pagination,
#account-edit.account .pagination,
#account-download.account .pagination,
#account-watchdog.account .pagination,
#account-newsletter.account .pagination,
#account-wishlist.account .pagination,
#account-reward.account .pagination,
#account-transaction.account .pagination,
#account-account.account .results,
#account-order.account .results,
#account-address.account .results,
#account-password.account .results,
#account-edit.account .results,
#account-download.account .results,
#account-watchdog.account .results,
#account-newsletter.account .results,
#account-wishlist.account .results,
#account-reward.account .results,
#account-transaction.account .results {
  color: #4b5565;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
#account-account.account .modal-content,
#account-order.account .modal-content,
#account-address.account .modal-content,
#account-password.account .modal-content,
#account-edit.account .modal-content,
#account-download.account .modal-content,
#account-watchdog.account .modal-content,
#account-newsletter.account .modal-content,
#account-wishlist.account .modal-content,
#account-reward.account .modal-content,
#account-transaction.account .modal-content {
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(20, 14, 35, 0.16);
}
#account-account.account .modal-header,
#account-order.account .modal-header,
#account-address.account .modal-header,
#account-password.account .modal-header,
#account-edit.account .modal-header,
#account-download.account .modal-header,
#account-watchdog.account .modal-header,
#account-newsletter.account .modal-header,
#account-wishlist.account .modal-header,
#account-reward.account .modal-header,
#account-transaction.account .modal-header,
#account-account.account .modal-footer,
#account-order.account .modal-footer,
#account-address.account .modal-footer,
#account-password.account .modal-footer,
#account-edit.account .modal-footer,
#account-download.account .modal-footer,
#account-watchdog.account .modal-footer,
#account-newsletter.account .modal-footer,
#account-wishlist.account .modal-footer,
#account-reward.account .modal-footer,
#account-transaction.account .modal-footer {
  border-color: rgba(41, 48, 63, 0.08);
}
#account-account.account .modal-title,
#account-order.account .modal-title,
#account-address.account .modal-title,
#account-password.account .modal-title,
#account-edit.account .modal-title,
#account-download.account .modal-title,
#account-watchdog.account .modal-title,
#account-newsletter.account .modal-title,
#account-wishlist.account .modal-title,
#account-reward.account .modal-title,
#account-transaction.account .modal-title {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}
#account-account.account .modal-body,
#account-order.account .modal-body,
#account-address.account .modal-body,
#account-password.account .modal-body,
#account-edit.account .modal-body,
#account-download.account .modal-body,
#account-watchdog.account .modal-body,
#account-newsletter.account .modal-body,
#account-wishlist.account .modal-body,
#account-reward.account .modal-body,
#account-transaction.account .modal-body,
#account-account.account .modal-footer,
#account-order.account .modal-footer,
#account-address.account .modal-footer,
#account-password.account .modal-footer,
#account-edit.account .modal-footer,
#account-download.account .modal-footer,
#account-watchdog.account .modal-footer,
#account-newsletter.account .modal-footer,
#account-wishlist.account .modal-footer,
#account-reward.account .modal-footer,
#account-transaction.account .modal-footer,
#account-account.account .modal-header,
#account-order.account .modal-header,
#account-address.account .modal-header,
#account-password.account .modal-header,
#account-edit.account .modal-header,
#account-download.account .modal-header,
#account-watchdog.account .modal-header,
#account-newsletter.account .modal-header,
#account-wishlist.account .modal-header,
#account-reward.account .modal-header,
#account-transaction.account .modal-header {
  padding: 20px 22px;
}
@media (max-width: 767.98px) {
  #account-account.account,
  #account-order.account,
  #account-address.account,
  #account-password.account,
  #account-edit.account,
  #account-download.account,
  #account-watchdog.account,
  #account-newsletter.account,
  #account-wishlist.account,
  #account-reward.account,
  #account-transaction.account {
    padding-bottom: 62px;
  }
  #account-account.account .account-heading h1,
  #account-order.account .account-heading h1,
  #account-address.account .account-heading h1,
  #account-password.account .account-heading h1,
  #account-edit.account .account-heading h1,
  #account-download.account .account-heading h1,
  #account-watchdog.account .account-heading h1,
  #account-newsletter.account .account-heading h1,
  #account-wishlist.account .account-heading h1,
  #account-reward.account .account-heading h1,
  #account-transaction.account .account-heading h1 {
    font-size: 2.25rem;
  }
  #account-account.account .account-section > h4,
  #account-order.account .account-section > h4,
  #account-address.account .account-section > h4,
  #account-password.account .account-section > h4,
  #account-edit.account .account-section > h4,
  #account-download.account .account-section > h4,
  #account-watchdog.account .account-section > h4,
  #account-newsletter.account .account-section > h4,
  #account-wishlist.account .account-section > h4,
  #account-reward.account .account-section > h4,
  #account-transaction.account .account-section > h4,
  #account-account.account .account-section > h2,
  #account-order.account .account-section > h2,
  #account-address.account .account-section > h2,
  #account-password.account .account-section > h2,
  #account-edit.account .account-section > h2,
  #account-download.account .account-section > h2,
  #account-watchdog.account .account-section > h2,
  #account-newsletter.account .account-section > h2,
  #account-wishlist.account .account-section > h2,
  #account-reward.account .account-section > h2,
  #account-transaction.account .account-section > h2 {
    font-size: 1.45rem;
  }
  #account-account.account .account-page-shell,
  #account-order.account .account-page-shell,
  #account-address.account .account-page-shell,
  #account-password.account .account-page-shell,
  #account-edit.account .account-page-shell,
  #account-download.account .account-page-shell,
  #account-watchdog.account .account-page-shell,
  #account-newsletter.account .account-page-shell,
  #account-wishlist.account .account-page-shell,
  #account-reward.account .account-page-shell,
  #account-transaction.account .account-page-shell {
    gap: 18px;
  }
  #account-account.account .account-nav__mobile,
  #account-order.account .account-nav__mobile,
  #account-address.account .account-nav__mobile,
  #account-password.account .account-nav__mobile,
  #account-edit.account .account-nav__mobile,
  #account-download.account .account-nav__mobile,
  #account-watchdog.account .account-nav__mobile,
  #account-newsletter.account .account-nav__mobile,
  #account-wishlist.account .account-nav__mobile,
  #account-reward.account .account-nav__mobile,
  #account-transaction.account .account-nav__mobile {
    display: block;
  }
  #account-account.account .account-menu,
  #account-order.account .account-menu,
  #account-address.account .account-menu,
  #account-password.account .account-menu,
  #account-edit.account .account-menu,
  #account-download.account .account-menu,
  #account-watchdog.account .account-menu,
  #account-newsletter.account .account-menu,
  #account-wishlist.account .account-menu,
  #account-reward.account .account-menu,
  #account-transaction.account .account-menu {
    display: none;
  }
}
#account-edit,
#account-password,
#account-address,
#account-newsletter,
#account-wishlist,
#account-download,
#account-reward,
#account-transaction {
  padding-top: 12px;
  padding-bottom: 72px;
}
#account-edit #content,
#account-password #content,
#account-address #content,
#account-newsletter #content,
#account-wishlist #content,
#account-download #content,
#account-reward #content,
#account-transaction #content {
  width: 100%;
}
#account-edit h1,
#account-password h1,
#account-address h1,
#account-newsletter h1,
#account-wishlist h1,
#account-download h1,
#account-reward h1,
#account-transaction h1,
#account-edit h2,
#account-password h2,
#account-address h2,
#account-newsletter h2,
#account-wishlist h2,
#account-download h2,
#account-reward h2,
#account-transaction h2 {
  margin: 0 0 16px;
  color: #231f32;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(2rem, 2.25vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
#account-edit fieldset,
#account-password fieldset,
#account-address fieldset,
#account-newsletter fieldset,
#account-wishlist fieldset,
#account-download fieldset,
#account-reward fieldset,
#account-transaction fieldset,
#account-edit .content-card,
#account-password .content-card,
#account-address .content-card,
#account-newsletter .content-card,
#account-wishlist .content-card,
#account-download .content-card,
#account-reward .content-card,
#account-transaction .content-card {
  padding: 28px 28px 26px;
  border: 1px solid #ebe8f2;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 16px 40px rgba(24, 16, 40, 0.08);
}
#account-edit legend,
#account-password legend,
#account-address legend,
#account-newsletter legend,
#account-wishlist legend,
#account-download legend,
#account-reward legend,
#account-transaction legend {
  width: 100%;
  margin: 0 0 18px;
  padding: 0 0 12px;
  border-bottom: 1px solid #ebe8f2;
  color: #231f32;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
}
#account-edit .form-horizontal .form-group,
#account-password .form-horizontal .form-group,
#account-address .form-horizontal .form-group,
#account-newsletter .form-horizontal .form-group,
#account-wishlist .form-horizontal .form-group,
#account-download .form-horizontal .form-group,
#account-reward .form-horizontal .form-group,
#account-transaction .form-horizontal .form-group {
  margin-bottom: 16px;
}
#account-edit .form-horizontal .control-label,
#account-password .form-horizontal .control-label,
#account-address .form-horizontal .control-label,
#account-newsletter .form-horizontal .control-label,
#account-wishlist .form-horizontal .control-label,
#account-download .form-horizontal .control-label,
#account-reward .form-horizontal .control-label,
#account-transaction .form-horizontal .control-label {
  margin-bottom: 8px;
  color: #231f32;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
#account-edit p,
#account-password p,
#account-address p,
#account-newsletter p,
#account-wishlist p,
#account-download p,
#account-reward p,
#account-transaction p,
#account-edit .radio-inline,
#account-password .radio-inline,
#account-address .radio-inline,
#account-newsletter .radio-inline,
#account-wishlist .radio-inline,
#account-download .radio-inline,
#account-reward .radio-inline,
#account-transaction .radio-inline,
#account-edit .checkbox,
#account-password .checkbox,
#account-address .checkbox,
#account-newsletter .checkbox,
#account-wishlist .checkbox,
#account-download .checkbox,
#account-reward .checkbox,
#account-transaction .checkbox {
  color: #6d6a7d;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
}
#account-edit .buttons,
#account-password .buttons,
#account-address .buttons,
#account-newsletter .buttons,
#account-wishlist .buttons,
#account-download .buttons,
#account-reward .buttons,
#account-transaction .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
#account-edit .buttons .pull-left,
#account-password .buttons .pull-left,
#account-address .buttons .pull-left,
#account-newsletter .buttons .pull-left,
#account-wishlist .buttons .pull-left,
#account-download .buttons .pull-left,
#account-reward .buttons .pull-left,
#account-transaction .buttons .pull-left,
#account-edit .buttons .pull-right,
#account-password .buttons .pull-right,
#account-address .buttons .pull-right,
#account-newsletter .buttons .pull-right,
#account-wishlist .buttons .pull-right,
#account-download .buttons .pull-right,
#account-reward .buttons .pull-right,
#account-transaction .buttons .pull-right {
  float: none !important;
}
#account-edit .btn-default,
#account-password .btn-default,
#account-address .btn-default,
#account-newsletter .btn-default,
#account-wishlist .btn-default,
#account-download .btn-default,
#account-reward .btn-default,
#account-transaction .btn-default,
#account-edit .btn-danger,
#account-password .btn-danger,
#account-address .btn-danger,
#account-newsletter .btn-danger,
#account-wishlist .btn-danger,
#account-download .btn-danger,
#account-reward .btn-danger,
#account-transaction .btn-danger {
  border-radius: 4px;
}
#account-edit .btn-default,
#account-password .btn-default,
#account-address .btn-default,
#account-newsletter .btn-default,
#account-wishlist .btn-default,
#account-download .btn-default,
#account-reward .btn-default,
#account-transaction .btn-default {
  border-color: #ebe8f2;
  color: #231f32;
  background: #fff;
}
#account-edit .btn-danger,
#account-password .btn-danger,
#account-address .btn-danger,
#account-newsletter .btn-danger,
#account-wishlist .btn-danger,
#account-download .btn-danger,
#account-reward .btn-danger,
#account-transaction .btn-danger {
  border-color: rgba(209, 95, 95, 0.24);
  background: #fff7f7;
  color: #c34d4d;
}
#account-edit .table img,
#account-password .table img,
#account-address .table img,
#account-newsletter .table img,
#account-wishlist .table img,
#account-download .table img,
#account-reward .table img,
#account-transaction .table img {
  border-radius: 4px;
}
#account-edit .price b,
#account-password .price b,
#account-address .price b,
#account-newsletter .price b,
#account-wishlist .price b,
#account-download .price b,
#account-reward .price b,
#account-transaction .price b {
  color: #231f32;
  font-family: 'Satoshi', sans-serif;
}
#account-edit .price s,
#account-password .price s,
#account-address .price s,
#account-newsletter .price s,
#account-wishlist .price s,
#account-download .price s,
#account-reward .price s,
#account-transaction .price s {
  color: rgba(109, 106, 125, 0.8);
}
@media (max-width: 767.98px) {
  #account-edit,
  #account-password,
  #account-address,
  #account-newsletter,
  #account-wishlist,
  #account-download,
  #account-reward,
  #account-transaction {
    padding-bottom: 58px;
  }
  #account-edit fieldset,
  #account-password fieldset,
  #account-address fieldset,
  #account-newsletter fieldset,
  #account-wishlist fieldset,
  #account-download fieldset,
  #account-reward fieldset,
  #account-transaction fieldset,
  #account-edit .content-card,
  #account-password .content-card,
  #account-address .content-card,
  #account-newsletter .content-card,
  #account-wishlist .content-card,
  #account-download .content-card,
  #account-reward .content-card,
  #account-transaction .content-card {
    padding: 22px 20px;
  }
  #account-edit .buttons .pull-left,
  #account-password .buttons .pull-left,
  #account-address .buttons .pull-left,
  #account-newsletter .buttons .pull-left,
  #account-wishlist .buttons .pull-left,
  #account-download .buttons .pull-left,
  #account-reward .buttons .pull-left,
  #account-transaction .buttons .pull-left,
  #account-edit .buttons .pull-right,
  #account-password .buttons .pull-right,
  #account-address .buttons .pull-right,
  #account-newsletter .buttons .pull-right,
  #account-wishlist .buttons .pull-right,
  #account-download .buttons .pull-right,
  #account-reward .buttons .pull-right,
  #account-transaction .buttons .pull-right,
  #account-edit .buttons .button,
  #account-password .buttons .button,
  #account-address .buttons .button,
  #account-newsletter .buttons .button,
  #account-wishlist .buttons .button,
  #account-download .buttons .button,
  #account-reward .buttons .button,
  #account-transaction .buttons .button,
  #account-edit .buttons .btn,
  #account-password .buttons .btn,
  #account-address .buttons .btn,
  #account-newsletter .buttons .btn,
  #account-wishlist .buttons .btn,
  #account-download .buttons .btn,
  #account-reward .buttons .btn,
  #account-transaction .buttons .btn,
  #account-edit .buttons input[type="submit"],
  #account-password .buttons input[type="submit"],
  #account-address .buttons input[type="submit"],
  #account-newsletter .buttons input[type="submit"],
  #account-wishlist .buttons input[type="submit"],
  #account-download .buttons input[type="submit"],
  #account-reward .buttons input[type="submit"],
  #account-transaction .buttons input[type="submit"] {
    width: 100%;
  }
}
#account-account.account .account-info-block {
  display: grid;
  gap: 8px;
}
#account-account.account .account-section + .account-section {
  margin-top: 4px;
}
#account-account.account .account-box .value {
  max-width: 280px;
}
#account-account.account #type .account-box.failed .value {
  color: #bf5b5b;
}
#account-account.account .edit-link img {
  width: 16px;
  height: 16px;
}
@media (max-width: 767.98px) {
  #account-account.account .account-box .value {
    max-width: none;
  }
}
.account-subheader {
  margin-bottom: 34px;
}
.account-subheader--dashboard {
  margin-bottom: 28px;
}
.page-dashboard .container-fluid {
  max-width: 1320px;
}
.page-dashboard .account-menu-wrap {
  margin-bottom: 28px;
}
.page-dashboard .account-nav {
  width: 100%;
}
.page-dashboard .account-nav__mobile {
  display: none;
}
.page-dashboard .account-nav__select-wrap {
  position: relative;
}
.page-dashboard .account-nav__select-wrap:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(41, 48, 63, 0.56);
  border-bottom: 1.5px solid rgba(41, 48, 63, 0.56);
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}
.page-dashboard .account-nav__select {
  min-height: 48px;
  padding: 12px 46px 12px 16px;
  border: 1px solid rgba(83, 36, 205, 0.14);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
}
.page-dashboard .account-nav__select:focus {
  border-color: rgba(83, 36, 205, 0.28);
  box-shadow: 0 0 0 3px rgba(83, 36, 205, 0.1);
}
.page-dashboard .account-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 0;
  list-style: none;
}
.page-dashboard .account-menu li {
  margin: 0;
}
.page-dashboard .account-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(41, 48, 63, 0.82);
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.18s ease;
}
.page-dashboard .account-menu a:hover {
  color: #5324CD;
  background: rgba(83, 36, 205, 0.04);
  border-color: rgba(83, 36, 205, 0.12);
}
.page-dashboard .account-menu .current a {
  color: #5324CD;
  background: rgba(83, 36, 205, 0.06);
  border-color: rgba(83, 36, 205, 0.16);
  font-weight: 700;
}
.page-dashboard .dashboard-main-row {
  align-items: stretch;
  margin-bottom: 34px;
}
.page-dashboard .dashboard-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.page-dashboard .dashboard-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
}
.page-dashboard .dashboard-card__head--stacked {
  display: block;
}
.page-dashboard .dashboard-card__title {
  margin: 0 0 6px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.page-dashboard .dashboard-card__text {
  margin: 0;
  color: rgba(41, 48, 63, 0.66);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
.page-dashboard .dashboard-card__link {
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.page-dashboard .dashboard-card__link:hover {
  color: #481fb3;
}
.page-dashboard .dashboard-card__footer {
  margin-top: auto;
  padding: 22px 26px 26px;
  border-top: 1px solid rgba(41, 48, 63, 0.07);
}
.page-dashboard .dashboard-table-wrap {
  padding: 0 10px 10px;
}
.page-dashboard .dashboard-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.page-dashboard .dashboard-table thead th {
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
  color: rgba(41, 48, 63, 0.48);
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-dashboard .dashboard-table tbody td {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
  color: rgba(41, 48, 63, 0.74);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  vertical-align: middle;
}
.page-dashboard .dashboard-table tbody tr:last-child td {
  border-bottom: none;
}
.page-dashboard .dashboard-table__strong,
.page-dashboard .dashboard-table .dashboard-table__strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
}
.page-dashboard .dashboard-table__action,
.page-dashboard .dashboard-table .dashboard-table__action {
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  text-decoration: none;
}
.page-dashboard .status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f3ead4;
  color: #b07b00;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.page-dashboard .status-pill--complete,
.page-dashboard .status-pill--completed,
.page-dashboard .status-pill--shipped,
.page-dashboard .status-pill--delivered,
.page-dashboard .status-pill--processing {
  background: #e8f5ea;
  color: #237c42;
}
.page-dashboard .status-pill--canceled,
.page-dashboard .status-pill--cancelled,
.page-dashboard .status-pill--failed,
.page-dashboard .status-pill--denied,
.page-dashboard .status-pill--refunded {
  background: #fbe9e8;
  color: #be4f4a;
}
.page-dashboard .status-pill--pending,
.page-dashboard .status-pill--awaiting-payment {
  background: #f8edd8;
  color: #ad7a16;
}
.page-dashboard .status-pill--hero {
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
}
.page-dashboard .dashboard-order-cards {
  display: grid;
  gap: 14px;
  padding: 18px;
}
.page-dashboard .dashboard-order-card {
  padding: 18px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #f7f8fc;
}
.page-dashboard .dashboard-order-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.page-dashboard .dashboard-order-card__head strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
}
.page-dashboard .dashboard-order-card__meta {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}
.page-dashboard .dashboard-order-card__meta div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.page-dashboard .dashboard-order-card__meta dt,
.page-dashboard .dashboard-order-card__meta dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.page-dashboard .dashboard-order-card__meta dt {
  color: rgba(41, 48, 63, 0.54);
}
.page-dashboard .dashboard-order-card__meta dd {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  text-align: right;
}
.page-dashboard .dashboard-empty-state {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: 28px 26px 30px;
}
.page-dashboard .dashboard-empty-state p {
  margin: 0;
  color: rgba(41, 48, 63, 0.66);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
.page-dashboard .dashboard-empty-state--compact {
  padding-top: 26px;
}
.page-dashboard .dashboard-restock-list {
  display: grid;
  gap: 0;
}
.page-dashboard .restock-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
}
.page-dashboard .restock-row:last-child {
  border-bottom: none;
}
.page-dashboard .restock-row__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.page-dashboard .restock-row__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.22s ease;
}
.page-dashboard .restock-row__media:hover img {
  transform: scale(1.03);
}
.page-dashboard .restock-row__content {
  min-width: 0;
}
.page-dashboard .restock-row__brand {
  margin: 0 0 6px;
  color: rgba(41, 48, 63, 0.46);
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-dashboard .restock-row__title {
  margin: 0 0 12px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.02rem;
  line-height: 1.35;
}
.page-dashboard .restock-row__title a {
  color: inherit;
  text-decoration: none;
}
.page-dashboard .restock-row__title a:hover {
  color: #5324CD;
}
.page-dashboard .restock-row__meta {
  display: flex;
  align-items: baseline;
  gap: 12px 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.page-dashboard .restock-row__price {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.12rem;
  line-height: 1.1;
  white-space: nowrap;
}
.page-dashboard .restock-row__stock {
  color: rgba(41, 48, 63, 0.54);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
}
.page-dashboard .restock-row__stock--out {
  color: #b4544f;
}
.page-dashboard .restock-row__purchase {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.page-dashboard .restock-row__status {
  display: none;
  margin-top: 10px;
  color: #5324CD;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.5;
}
.page-dashboard .restock-row__status.is-visible {
  display: block;
}
.page-dashboard .restock-row__status.is-out {
  color: #b4544f;
}
.page-dashboard .dashboard-card--restock .restock-row > .bjutip-stock-note {
  display: none;
}
.page-dashboard .dashboard-qty {
  display: inline-grid;
  grid-template-columns: 34px 52px 34px;
  height: 42px;
  border: 1px solid rgba(41, 48, 63, 0.12);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.page-dashboard .dashboard-qty--compact {
  grid-template-columns: 32px 48px 32px;
  height: 40px;
}
.page-dashboard .dashboard-qty__btn,
.page-dashboard .dashboard-qty__input {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.page-dashboard .dashboard-qty__btn {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.page-dashboard .dashboard-qty__btn:hover {
  background: rgba(83, 36, 205, 0.05);
  color: #5324CD;
}
.page-dashboard .dashboard-qty__input {
  width: 100%;
  padding: 0;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}
.page-dashboard .dashboard-qty__input::-webkit-outer-spin-button,
.page-dashboard .dashboard-qty__input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.page-dashboard .dashboard-add-btn,
.page-dashboard .dashboard-offer-card__actions .btn {
  min-width: 132px;
}
.page-dashboard .dashboard-add-btn {
  padding-right: 22px;
  padding-left: 22px;
  white-space: nowrap;
}
.page-dashboard .dashboard-add-btn.is-loading,
.page-dashboard .dashboard-offer-card__actions .btn.is-loading {
  opacity: 0.82;
  pointer-events: none;
}
.page-dashboard .dashboard-offers {
  display: grid;
  gap: 20px;
}
.page-dashboard .dashboard-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.page-dashboard .dashboard-offers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.page-dashboard .dashboard-offer-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.page-dashboard .dashboard-offer-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 24px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
  background: #fff;
}
.page-dashboard .dashboard-offer-card__media img {
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  transition: transform 0.24s ease;
}
.page-dashboard .dashboard-offer-card__media:hover img {
  transform: scale(1.04);
}
.page-dashboard .dashboard-offer-card__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}
.page-dashboard .dashboard-offer-card__brand {
  margin: 0;
  color: rgba(41, 48, 63, 0.46);
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.page-dashboard .dashboard-offer-card__title {
  margin: 0;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.04rem;
  line-height: 1.4;
}
.page-dashboard .dashboard-offer-card__title a {
  color: inherit;
  text-decoration: none;
}
.page-dashboard .dashboard-offer-card__title a:hover {
  color: #5324CD;
}
.page-dashboard .dashboard-offer-card__footer {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}
.page-dashboard .dashboard-offer-card__price {
  display: block;
  margin-bottom: 6px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.1rem;
  line-height: 1.1;
}
.page-dashboard .dashboard-offer-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(83, 36, 205, 0.08);
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-dashboard .dashboard-offer-card__actions {
  display: grid;
  gap: 10px;
}
@media (max-width: 1399.98px) {
  .page-dashboard .dashboard-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  .page-dashboard {
    padding-bottom: 64px;
  }
  .page-dashboard .account-menu-wrap {
    margin-bottom: 22px;
  }
  .page-dashboard .dashboard-card__head {
    padding: 22px 20px 18px;
  }
  .page-dashboard .restock-row {
    padding: 18px 20px;
  }
  .page-dashboard .dashboard-card__footer {
    padding: 18px 20px 20px;
  }
  .page-dashboard .dashboard-offer-card__media {
    min-height: 220px;
  }
}
@media (max-width: 767.98px) {
  .page-dashboard .account-nav__mobile {
    display: block;
  }
  .page-dashboard .account-menu {
    display: none;
  }
  .page-dashboard .dashboard-card__title {
    font-size: 1.45rem;
  }
  .page-dashboard .restock-row {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 16px;
  }
  .page-dashboard .restock-row__media {
    width: 56px;
    height: 56px;
  }
  .page-dashboard .restock-row__brand {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .page-dashboard .restock-row__title {
    margin-bottom: 10px;
    font-size: 0.96rem;
    line-height: 1.32;
  }
  .page-dashboard .restock-row__meta {
    gap: 6px 12px;
    margin-bottom: 10px;
  }
  .page-dashboard .restock-row__price {
    font-size: 1.04rem;
  }
  .page-dashboard .restock-row__stock {
    font-size: 12px;
  }
  .page-dashboard .restock-row__purchase {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }
  .page-dashboard .restock-row__status {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.45;
  }
  .page-dashboard .dashboard-qty {
    grid-template-columns: 32px 46px 32px;
    height: 40px;
  }
  .page-dashboard .dashboard-qty__btn {
    font-size: 17px;
  }
  .page-dashboard .dashboard-add-btn,
  .page-dashboard .dashboard-offer-card__actions .btn {
    width: 100%;
    min-width: 0;
  }
  .page-dashboard .dashboard-add-btn {
    padding-right: 16px;
    padding-left: 16px;
  }
  .page-dashboard .dashboard-offers-grid {
    grid-template-columns: 1fr;
  }
}
#account-forgotten {
  padding-top: 12px;
  padding-bottom: 74px;
}
#account-forgotten #content {
  width: 100%;
}
#account-forgotten .well {
  position: relative;
  overflow: hidden;
  padding: 36px 34px;
  border: 1px solid #ebe8f2;
  border-radius: 4px;
  background: radial-gradient(circle at 0% 0%, rgba(91, 43, 224, 0.12), transparent 32%), linear-gradient(180deg, #ffffff 0%, #faf9fd 100%);
  box-shadow: 0 18px 46px rgba(24, 16, 40, 0.08);
}
#account-forgotten .well::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(91, 43, 224, 0.1), transparent 68%);
  pointer-events: none;
}
#account-forgotten h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #231f32;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(2rem, 2.25vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
#account-forgotten p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #6d6a7d;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
#account-forgotten .input {
  position: relative;
}
#account-forgotten .input .form-control {
  padding: 22px 14px 10px;
  color: #231f32;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
#account-forgotten .buttons {
  position: relative;
  z-index: 1;
}
#account-forgotten .buttons .pull-start {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767.98px) {
  #account-forgotten {
    padding-bottom: 60px;
  }
  #account-forgotten .well {
    padding: 26px 22px;
  }
  #account-forgotten .buttons .pull-start {
    width: 100%;
  }
  #account-forgotten .buttons .pull-start .button,
  #account-forgotten .buttons .pull-start input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}
#account-order.account .account-page-shell {
  display: grid;
  gap: 24px;
}
#account-order.account .account-heading--compact {
  margin-bottom: 0;
}
#account-order.account .account-surface {
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
#account-order.account .account-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
}
#account-order.account .account-section-head h2 {
  margin: 0 0 6px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.65rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
#account-order.account .account-section-head p {
  margin: 0;
  color: rgba(41, 48, 63, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
#account-order.account .account-table-wrap {
  padding: 0 10px 10px;
}
#account-order.account .account-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
#account-order.account .account-table thead th {
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
  color: rgba(41, 48, 63, 0.48);
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  vertical-align: middle;
}
#account-order.account .account-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
  color: rgba(41, 48, 63, 0.74);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  vertical-align: middle;
}
#account-order.account .account-table tbody tr:last-child td {
  border-bottom: none;
}
#account-order.account .account-table__strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
}
#account-order.account .account-table__action {
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  text-decoration: none;
}
#account-order.account .account-table__action:hover {
  color: #481fb3;
}
#account-order.account .account-table__muted {
  color: rgba(41, 48, 63, 0.38);
}
#account-order.account .status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f3ead4;
  color: #b07b00;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
#account-order.account .status-pill--complete,
#account-order.account .status-pill--completed,
#account-order.account .status-pill--shipped,
#account-order.account .status-pill--delivered,
#account-order.account .status-pill--processing {
  background: #e8f5ea;
  color: #237c42;
}
#account-order.account .status-pill--canceled,
#account-order.account .status-pill--cancelled,
#account-order.account .status-pill--failed,
#account-order.account .status-pill--denied,
#account-order.account .status-pill--refunded {
  background: #fbe9e8;
  color: #be4f4a;
}
#account-order.account .status-pill--pending,
#account-order.account .status-pill--awaiting-payment {
  background: #f8edd8;
  color: #ad7a16;
}
#account-order.account .status-pill--hero {
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
}
#account-order.account .order-list-cards,
#account-order.account .order-products-cards,
#account-order.account .order-history-cards {
  display: grid;
  gap: 14px;
  padding: 18px;
}
#account-order.account .order-card,
#account-order.account .order-product-card,
#account-order.account .order-history-card {
  padding: 18px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #f7f8fc;
}
#account-order.account .order-card__head,
#account-order.account .order-history-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
#account-order.account .order-card__head strong,
#account-order.account .order-history-card__head strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.03rem;
  line-height: 1.2;
}
#account-order.account .order-card__meta,
#account-order.account .order-product-card__meta {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}
#account-order.account .order-card__meta div,
#account-order.account .order-product-card__meta div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
#account-order.account .order-card__meta dt,
#account-order.account .order-product-card__meta dt,
#account-order.account .order-card__meta dd,
#account-order.account .order-product-card__meta dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
#account-order.account .order-card__meta dt,
#account-order.account .order-product-card__meta dt {
  color: rgba(41, 48, 63, 0.54);
}
#account-order.account .order-card__meta dd,
#account-order.account .order-product-card__meta dd {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  text-align: right;
}
#account-order.account .account-pagination-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 26px 24px;
}
#account-order.account .account-pagination-bar__pagination,
#account-order.account .account-pagination-bar__results {
  color: rgba(41, 48, 63, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
}
#account-order.account .account-empty-state {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: 28px 26px 30px;
}
#account-order.account .account-empty-state p {
  margin: 0;
  color: rgba(41, 48, 63, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
#account-order.account .account-page-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
#account-order.account .order-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 26px;
}
#account-order.account .summary-card {
  min-height: 108px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #f7f8fc;
}
#account-order.account .summary-card__label {
  display: block;
  margin-bottom: 10px;
  color: rgba(41, 48, 63, 0.46);
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
#account-order.account .summary-card__value {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.02rem;
  line-height: 1.45;
}
#account-order.account .order-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
#account-order.account .address-card__content {
  padding: 24px 26px 28px;
  color: rgba(41, 48, 63, 0.76);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
#account-order.account .order-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
#account-order.account .order-product__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
#account-order.account .order-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#account-order.account .order-product__content {
  min-width: 0;
}
#account-order.account .order-product__title {
  display: block;
  margin: 0;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}
#account-order.account .order-product__title a {
  color: inherit;
  text-decoration: none;
}
#account-order.account .order-product__title a:hover {
  color: #5324CD;
}
#account-order.account .order-product__options {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
#account-order.account .order-product__options li {
  color: rgba(41, 48, 63, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
}
#account-order.account .order-product-card__top {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
#account-order.account .order-product-card__top img {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #fff;
  object-fit: contain;
}
#account-order.account .order-product-card__top strong,
#account-order.account .order-product-card__top strong a {
  display: block;
  margin-bottom: 6px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  text-decoration: none;
}
#account-order.account .order-product-card__top span {
  display: block;
  color: rgba(41, 48, 63, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
#account-order.account .order-totals {
  display: grid;
  gap: 10px;
  padding: 0 26px 26px;
}
#account-order.account .order-totals__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #f7f8fc;
}
#account-order.account .order-totals__row span {
  color: rgba(41, 48, 63, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
#account-order.account .order-totals__row strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  line-height: 1.3;
  text-align: right;
}
#account-order.account .order-comment__body {
  padding: 24px 26px 28px;
  color: rgba(41, 48, 63, 0.76);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
#account-order.account .order-history-card p {
  margin: 0;
  color: rgba(41, 48, 63, 0.72);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
#account-order.account .alert {
  margin-bottom: 18px;
  border-radius: 6px;
}
@media (max-width: 1399.98px) {
  #account-order.account .order-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  #account-order.account .account-section-head {
    padding: 22px 20px 18px;
  }
  #account-order.account .order-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 22px 20px;
  }
  #account-order.account .order-address-grid {
    grid-template-columns: 1fr;
  }
  #account-order.account .address-card__content,
  #account-order.account .order-comment__body {
    padding: 20px;
  }
  #account-order.account .order-totals {
    padding: 0 20px 20px;
  }
  #account-order.account .account-pagination-bar {
    padding: 18px 20px 20px;
  }
}
@media (max-width: 767.98px) {
  #account-order.account .account-page-actions {
    justify-content: stretch;
  }
  #account-order.account .account-page-actions .btn {
    width: 100%;
  }
  #account-order.account .order-summary-grid {
    grid-template-columns: 1fr;
  }
}
#account-claim.account {
  padding-top: 10px;
  padding-bottom: 82px;
}
#account-claim.account #content {
  width: 100%;
}
#account-claim.account .account-page-shell {
  display: grid;
  gap: 24px;
}
#account-claim.account .account-heading {
  width: 100%;
  margin: 0 0 28px;
}
#account-claim.account .account-heading--compact {
  margin-bottom: 0;
}
#account-claim.account .account-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#account-claim.account .account-menu li {
  margin: 0;
}
#account-claim.account .account-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(41, 48, 63, 0.82);
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.18s ease;
}
#account-claim.account .account-menu a:hover {
  color: #5324CD;
  background: rgba(83, 36, 205, 0.04);
  border-color: rgba(83, 36, 205, 0.12);
}
#account-claim.account .account-menu .current a {
  color: #5324CD;
  background: rgba(83, 36, 205, 0.06);
  border-color: rgba(83, 36, 205, 0.16);
  font-weight: 700;
}
#account-claim.account .account-surface {
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, #fff 0%, #fcfbfe 100%);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
#account-claim.account .account-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
}
#account-claim.account .account-section-head h2 {
  margin: 0 0 6px;
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.65rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
#account-claim.account .account-section-head p {
  margin: 0;
  color: rgba(41, 48, 63, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
#account-claim.account .account-table-wrap {
  padding: 0 10px 10px;
}
#account-claim.account .account-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
#account-claim.account .account-table thead th {
  padding: 16px 16px 14px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
  color: rgba(41, 48, 63, 0.48);
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  vertical-align: middle;
}
#account-claim.account .account-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
  color: rgba(41, 48, 63, 0.74);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  vertical-align: middle;
}
#account-claim.account .account-table__strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
}
#account-claim.account .account-table__action {
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  text-decoration: none;
}
#account-claim.account .account-table__action:hover {
  color: #481fb3;
}
#account-claim.account .status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f3ead4;
  color: #b07b00;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
#account-claim.account .status-pill--approved,
#account-claim.account .status-pill--complete,
#account-claim.account .status-pill--completed,
#account-claim.account .status-pill--shipped,
#account-claim.account .status-pill--delivered,
#account-claim.account .status-pill--processing {
  background: #e8f5ea;
  color: #237c42;
}
#account-claim.account .status-pill--rejected,
#account-claim.account .status-pill--canceled,
#account-claim.account .status-pill--cancelled,
#account-claim.account .status-pill--failed,
#account-claim.account .status-pill--denied,
#account-claim.account .status-pill--refunded {
  background: #fbe9e8;
  color: #be4f4a;
}
#account-claim.account .status-pill--pending,
#account-claim.account .status-pill--pending-review,
#account-claim.account .status-pill--awaiting-payment {
  background: #f8edd8;
  color: #ad7a16;
}
#account-claim.account .order-list-cards {
  display: grid;
  gap: 14px;
  padding: 18px;
}
#account-claim.account .order-card {
  padding: 18px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #f7f8fc;
}
#account-claim.account .order-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
#account-claim.account .order-card__head strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.03rem;
  line-height: 1.2;
}
#account-claim.account .order-card__meta {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}
#account-claim.account .order-card__meta div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
#account-claim.account .order-card__meta dt,
#account-claim.account .order-card__meta dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
#account-claim.account .order-card__meta dt {
  color: rgba(41, 48, 63, 0.54);
}
#account-claim.account .order-card__meta dd {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  text-align: right;
}
#account-claim.account .account-pagination-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 26px 24px;
}
#account-claim.account .account-pagination-bar__pagination,
#account-claim.account .account-pagination-bar__results {
  color: rgba(41, 48, 63, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
}
#account-claim.account .account-empty-state {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: 28px 26px 30px;
}
#account-claim.account .account-empty-state p {
  margin: 0;
  color: rgba(41, 48, 63, 0.64);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
#account-claim.account .claim-row--summary td {
  background: #fff;
}
#account-claim.account .claim-row--summary:hover td {
  background: rgba(83, 36, 205, 0.02);
}
#account-claim.account .claim-row--details td {
  padding-top: 0;
  background: transparent;
  border-bottom-color: transparent;
}
#account-claim.account .claim-row__order {
  display: grid;
  gap: 4px;
}
#account-claim.account .claim-row__claim-id,
#account-claim.account .claim-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(83, 36, 205, 0.08);
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
#account-claim.account .claim-product {
  display: grid;
  gap: 5px;
}
#account-claim.account .claim-product strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
#account-claim.account .claim-product__meta {
  color: rgba(41, 48, 63, 0.46);
  font-size: 12px;
  line-height: 1.45;
  word-break: break-word;
}
#account-claim.account .account-table__details-cell {
  padding: 0 0 18px;
}
#account-claim.account .claim-detail-panel {
  margin: 0 8px 0;
  padding: 18px 20px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: linear-gradient(180deg, #faf9fd 0%, #ffffff 100%);
}
#account-claim.account .claim-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
#account-claim.account .claim-detail-block {
  min-height: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #fff;
}
#account-claim.account .claim-detail-block--card {
  margin-bottom: 12px;
}
#account-claim.account .claim-detail-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(41, 48, 63, 0.45);
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#account-claim.account .claim-detail-value {
  color: rgba(41, 48, 63, 0.8);
  font-size: 14px;
  line-height: 1.65;
  word-break: break-word;
}
#account-claim.account .claim-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}
#account-claim.account .claim-attachment {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(83, 36, 205, 0.16);
  border-radius: 6px;
  background: rgba(83, 36, 205, 0.05);
  color: #5324CD;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.18s ease;
}
#account-claim.account .claim-attachment:hover {
  color: #4c21bc;
  background: rgba(83, 36, 205, 0.09);
  border-color: rgba(83, 36, 205, 0.24);
}
#account-claim.account .claim-timeline {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(41, 48, 63, 0.08);
}
#account-claim.account .claim-timeline__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#account-claim.account .claim-timeline__item {
  position: relative;
  padding-left: 16px;
}
#account-claim.account .claim-timeline__item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5324CD;
  box-shadow: 0 0 0 5px rgba(83, 36, 205, 0.1);
}
#account-claim.account .claim-timeline__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: rgba(41, 48, 63, 0.52);
  font-size: 12px;
  line-height: 1.5;
}
#account-claim.account .claim-timeline__meta span {
  position: relative;
}
#account-claim.account .claim-timeline__meta span + span::before {
  content: '•';
  margin-right: 12px;
  color: rgba(41, 48, 63, 0.28);
}
#account-claim.account .claim-timeline__note {
  margin-top: 4px;
  color: rgba(41, 48, 63, 0.76);
  font-size: 13px;
  line-height: 1.6;
}
#account-claim.account .claim-card__head {
  align-items: flex-start;
}
#account-claim.account .claim-card__head > div {
  display: grid;
  gap: 6px;
}
#account-claim.account .claim-card__product {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}
#account-claim.account .claim-card__product strong {
  color: #29303f;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}
#account-claim.account .claim-card__meta {
  margin-bottom: 14px;
}
@media (max-width: 991.98px) {
  #account-claim.account {
    padding-bottom: 62px;
  }
  #account-claim.account .claim-detail-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  #account-claim.account .account-menu {
    gap: 8px 10px;
  }
  #account-claim.account .account-menu a {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }
  #account-claim.account .account-section-head {
    padding: 20px 18px 18px;
  }
  #account-claim.account .account-section-head h2 {
    font-size: 1.42rem;
  }
  #account-claim.account .account-section-head p {
    font-size: 13px;
    line-height: 1.6;
  }
  #account-claim.account .order-list-cards {
    padding: 14px;
  }
  #account-claim.account .order-card {
    padding: 16px;
  }
  #account-claim.account .order-card__head {
    align-items: flex-start;
    flex-direction: column;
  }
  #account-claim.account .order-card__meta div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  #account-claim.account .order-card__meta dd {
    text-align: left;
  }
  #account-claim.account .claim-detail-block {
    padding: 13px 14px;
  }
  #account-claim.account .claim-attachment {
    width: 100%;
    justify-content: center;
  }
  #account-claim.account .claim-timeline__meta {
    display: grid;
    gap: 4px;
  }
  #account-claim.account .claim-timeline__meta span + span::before {
    display: none;
  }
  #account-claim.account .account-pagination-bar {
    padding: 16px 18px 20px;
  }
}
@media (max-width: 767.98px) {
  #account-order.account .account-menu,
  #account-claim.account .account-menu {
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 6px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #account-order.account .account-menu::-webkit-scrollbar,
  #account-claim.account .account-menu::-webkit-scrollbar {
    display: none;
  }
  #account-order.account .account-menu a,
  #account-claim.account .account-menu a {
    white-space: nowrap;
  }
}
/* BJUTIP — premium cart + checkout flow */
#checkout-cart,
#checkout-checkout {
  padding-top: 20px;
  padding-bottom: 64px;
}
#checkout-cart .breadcrumb,
#checkout-checkout .breadcrumb {
  margin-bottom: 18px;
}
#checkout-cart .alert,
#checkout-checkout .alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(83, 36, 205, 0.1);
  border-radius: 6px;
  background: #f8d7da;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  color: rgba(41, 48, 63, 0.78);
}
#checkout-cart .alert a,
#checkout-checkout .alert a {
  color: #5324CD;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(83, 36, 205, 0.24);
  transition: border-color 0.35s ease, color 0.35s ease;
}
#checkout-cart .alert a:hover,
#checkout-checkout .alert a:hover {
  color: #481fb3;
  border-color: rgba(83, 36, 205, 0.42);
}
#checkout-cart .checkout-help-alert,
#checkout-checkout .checkout-help-alert {
  margin-top: 14px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 252, 254, 0.96));
}
#checkout-cart .checkout-flow__hero,
#checkout-checkout .checkout-flow__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
#checkout-cart .checkout-flow__eyebrow,
#checkout-checkout .checkout-flow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #5324CD;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
#checkout-cart .checkout-flow__eyebrow::before,
#checkout-checkout .checkout-flow__eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(83, 36, 205, 0.36);
}
#checkout-cart .checkout-flow__intro,
#checkout-checkout .checkout-flow__intro {
  max-width: 720px;
}
#checkout-cart .checkout-flow__intro h1,
#checkout-checkout .checkout-flow__intro h1 {
  margin: 0 0 12px;
  color: #29303f;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
}
#checkout-cart .checkout-flow__intro .text-muted,
#checkout-checkout .checkout-flow__intro .text-muted {
  color: rgba(41, 48, 63, 0.42);
  font-weight: 500;
}
#checkout-cart .checkout-flow__intro p,
#checkout-checkout .checkout-flow__intro p {
  max-width: 620px;
  margin: 0;
  color: rgba(41, 48, 63, 0.62);
  font-size: 18px;
  line-height: 1.65;
}
#checkout-cart .checkout-flow__arrow,
#checkout-checkout .checkout-flow__arrow {
  display: inline-block;
  margin: 0 2px;
  color: rgba(41, 48, 63, 0.44);
  font-weight: 500;
}
#checkout-cart .checkout-flow__stats,
#checkout-checkout .checkout-flow__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px;
  min-width: 300px;
}
#checkout-cart .checkout-stat-card,
#checkout-checkout .checkout-stat-card {
  padding: 16px 18px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 252, 254, 0.98));
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.04);
}
#checkout-cart .checkout-stat-card__label,
#checkout-checkout .checkout-stat-card__label {
  display: block;
  margin-bottom: 8px;
  color: rgba(41, 48, 63, 0.48);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
#checkout-cart .checkout-stat-card__value,
#checkout-checkout .checkout-stat-card__value {
  display: block;
  color: #29303f;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}
#checkout-cart .checkout-panel,
#checkout-checkout .checkout-panel,
#checkout-cart .checkout-form-panel,
#checkout-checkout .checkout-form-panel,
#checkout-cart .summary,
#checkout-checkout .summary {
  border: 1px solid rgba(41, 48, 63, 0.09);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(251, 252, 254, 0.99));
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
}
#checkout-cart .checkout-panel,
#checkout-checkout .checkout-panel,
#checkout-cart .checkout-form-panel,
#checkout-checkout .checkout-form-panel {
  padding: 20px;
}
#checkout-cart .checkout-panel__head,
#checkout-checkout .checkout-panel__head,
#checkout-cart .checkout-section-card__head,
#checkout-checkout .checkout-section-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
#checkout-cart .checkout-panel__head h2,
#checkout-checkout .checkout-panel__head h2,
#checkout-cart .checkout-section-card__head h2,
#checkout-checkout .checkout-section-card__head h2 {
  margin: 0 0 5px;
  color: #29303f;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}
#checkout-cart .checkout-panel__head p,
#checkout-checkout .checkout-panel__head p,
#checkout-cart .checkout-section-card__head p,
#checkout-checkout .checkout-section-card__head p {
  margin: 0;
  color: rgba(41, 48, 63, 0.52);
  font-size: 14px;
  line-height: 1.55;
}
#checkout-cart .summary,
#checkout-checkout .summary {
  position: sticky;
  top: 116px;
  padding: 20px;
}
#checkout-cart .checkout-summary__head,
#checkout-checkout .checkout-summary__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
#checkout-cart .checkout-summary__pill,
#checkout-checkout .checkout-summary__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(41, 48, 63, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: rgba(41, 48, 63, 0.54);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#checkout-cart .checkout-summary__title,
#checkout-checkout .checkout-summary__title {
  margin: 0 0 10px;
  color: #29303f;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}
#checkout-cart .checkout-summary__text,
#checkout-checkout .checkout-summary__text {
  margin: 0 0 18px;
  color: rgba(41, 48, 63, 0.56);
  font-size: 14px;
  line-height: 1.65;
}
#checkout-cart .checkout-summary__highlights,
#checkout-checkout .checkout-summary__highlights {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
#checkout-cart .checkout-summary__highlight,
#checkout-checkout .checkout-summary__highlight {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: rgba(251, 252, 254, 0.76);
}
#checkout-cart .checkout-summary__highlight strong,
#checkout-checkout .checkout-summary__highlight strong {
  color: #29303f;
  font-size: 13px;
  font-weight: 700;
}
#checkout-cart .checkout-summary__highlight span,
#checkout-checkout .checkout-summary__highlight span {
  color: rgba(41, 48, 63, 0.46);
  font-size: 12px;
  line-height: 1.5;
}
#checkout-cart .checkout-summary__actions,
#checkout-checkout .checkout-summary__actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
#checkout-cart .checkout-summary__legal,
#checkout-checkout .checkout-summary__legal {
  margin: 14px 0 0;
  color: rgba(41, 48, 63, 0.48);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
#checkout-cart .summary-row,
#checkout-checkout .summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-top: 1px solid rgba(41, 48, 63, 0.07);
}
#checkout-cart .summary-row:first-child,
#checkout-checkout .summary-row:first-child {
  border-top: 0;
}
#checkout-cart .summary-row__label,
#checkout-checkout .summary-row__label {
  color: rgba(41, 48, 63, 0.52);
  font-size: 14px;
  line-height: 1.45;
}
#checkout-cart .summary-row__value,
#checkout-checkout .summary-row__value {
  color: #29303f;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
#checkout-cart .summary-row--grand,
#checkout-checkout .summary-row--grand {
  margin-top: 4px;
  padding-top: 14px;
}
#checkout-cart .summary-row--grand .summary-row__label,
#checkout-checkout .summary-row--grand .summary-row__label,
#checkout-cart .summary-row--grand .summary-row__value,
#checkout-checkout .summary-row--grand .summary-row__value {
  color: #29303f;
  font-size: 18px;
  font-weight: 700;
}
#checkout-cart .summary-row--inline,
#checkout-checkout .summary-row--inline {
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(41, 48, 63, 0.07);
}
#checkout-cart .summary-totals,
#checkout-checkout .summary-totals {
  display: grid;
  gap: 0;
}
#checkout-cart .btn.btn-primary,
#checkout-checkout .btn.btn-primary,
#checkout-cart .btn.btn-secondary,
#checkout-checkout .btn.btn-secondary {
  min-height: 48px;
  border-radius: 6px;
}
#checkout-cart .btn.btn-primary,
#checkout-checkout .btn.btn-primary {
  box-shadow: 0 16px 36px rgba(83, 36, 205, 0.2);
}
#checkout-cart .btn.btn-secondary,
#checkout-checkout .btn.btn-secondary {
  background: #fff;
  border-color: rgba(41, 48, 63, 0.12);
  color: #29303f;
}
#checkout-cart .form-control,
#checkout-checkout .form-control,
#checkout-cart select.form-control,
#checkout-checkout select.form-control,
#checkout-cart textarea.form-control,
#checkout-checkout textarea.form-control {
  min-height: 48px;
  border: 1px solid rgba(41, 48, 63, 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  color: #29303f;
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
#checkout-cart .form-control:focus,
#checkout-checkout .form-control:focus,
#checkout-cart select.form-control:focus,
#checkout-checkout select.form-control:focus,
#checkout-cart textarea.form-control:focus,
#checkout-checkout textarea.form-control:focus {
  border-color: rgba(83, 36, 205, 0.42);
  box-shadow: 0 0 0 4px rgba(83, 36, 205, 0.1);
}
#checkout-cart .form-control:disabled,
#checkout-checkout .form-control:disabled,
#checkout-cart select.form-control:disabled,
#checkout-checkout select.form-control:disabled,
#checkout-cart textarea.form-control:disabled,
#checkout-checkout textarea.form-control:disabled,
#checkout-cart .form-control[disabled],
#checkout-checkout .form-control[disabled],
#checkout-cart select.form-control[disabled],
#checkout-checkout select.form-control[disabled],
#checkout-cart textarea.form-control[disabled],
#checkout-checkout textarea.form-control[disabled] {
  opacity: 1;
  background: rgba(243, 245, 249, 0.72);
  color: #29303f;
  -webkit-text-fill-color: #29303f;
}
#checkout-cart textarea.form-control,
#checkout-checkout textarea.form-control {
  min-height: 118px;
  resize: vertical;
}
#checkout-cart .checkout-cart-list {
  display: grid;
  gap: 12px;
}
#checkout-cart .checkout-panel__continue {
  min-width: 182px;
}
#checkout-cart .checkout-cart-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(41, 48, 63, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.35s ease;
}
#checkout-cart .checkout-cart-item:hover {
  transform: translateY(-2px);
  border-color: rgba(83, 36, 205, 0.16);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}
#checkout-cart .checkout-cart-item__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 8px;
  border: 1px solid rgba(41, 48, 63, 0.06);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
#checkout-cart .checkout-cart-item__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#checkout-cart .checkout-cart-item__body {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 60px 92px 116px 42px;
  grid-template-areas: 'info qty unit total remove' 'note note note note note';
  align-items: center;
  column-gap: 16px;
  row-gap: 8px;
  min-width: 0;
}
#checkout-cart .checkout-cart-item__top,
#checkout-cart .checkout-cart-item__bottom {
  display: contents;
}
#checkout-cart .checkout-cart-item__info {
  grid-area: info;
  min-width: 0;
  padding-right: 2px;
}
#checkout-cart .checkout-cart-item__title {
  display: -webkit-box;
  margin: 0 0 7px;
  color: #29303f;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#checkout-cart .checkout-cart-item__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
#checkout-cart .checkout-cart-item__title a:hover {
  color: #5324CD;
}
#checkout-cart .checkout-cart-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  color: rgba(41, 48, 63, 0.46);
  font-size: 12px;
  line-height: 1.45;
}
#checkout-cart .checkout-cart-item__meta span {
  position: relative;
}
#checkout-cart .checkout-cart-item__meta span strong {
  color: rgba(41, 48, 63, 0.74);
  font-weight: 700;
}
#checkout-cart .checkout-cart-item__qty {
  grid-area: qty;
  justify-self: start;
  align-self: center;
}
#checkout-cart .checkout-cart-item__unit-price-wrap {
  grid-area: unit;
  min-width: 0;
  text-align: left;
}
#checkout-cart .checkout-cart-item__line-total-wrap {
  grid-area: total;
  min-width: 0;
  text-align: right;
}
#checkout-cart .checkout-cart-item__line-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(41, 48, 63, 0.44);
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-left: 20px;
}
#checkout-cart .checkout-cart-item__line-total,
#checkout-cart .checkout-cart-item__unit-price {
  color: #29303f;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
#checkout-cart .checkout-cart-item__line-total {
  display: block;
  font-size: 18px;
}
#checkout-cart .checkout-cart-item__unit-price {
  display: block;
  font-size: 15px;
  padding-left: 20px;
}
#checkout-cart .checkout-cart-item__unit-price-inline {
  display: none;
}
#checkout-cart .checkout-cart-item__remove {
  grid-area: remove;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(209, 76, 76, 0.16);
  border-radius: 6px;
  background: rgba(255, 245, 245, 0.88);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
#checkout-cart .checkout-cart-item__remove img {
  width: 14px;
  height: 14px;
}
#checkout-cart .checkout-cart-item__remove:hover {
  border-color: rgba(209, 76, 76, 0.28);
  background: rgba(255, 240, 240, 0.96);
  box-shadow: 0 10px 20px rgba(209, 76, 76, 0.1);
  transform: translateY(-1px);
}
#checkout-cart .checkout-cart-item__stock-note {
  grid-area: note;
  display: none;
  margin-top: 0;
  color: rgba(83, 36, 205, 0.82);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}
#checkout-cart .checkout-cart-item__stock-note.is-visible {
  display: block;
}
#checkout-cart .qty-control {
  display: inline-grid;
  grid-template-columns: 52px 26px;
  grid-template-rows: repeat(2, 16px);
  gap: 6px 8px;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  align-items: center;
}
#checkout-cart .qty-control .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  min-width: 26px;
  height: 16px;
  padding: 0;
  border: 1px solid rgba(41, 48, 63, 0.12);
  border-radius: 6px;
  background: linear-gradient(180deg, #fcfcfd, #f3f4f7);
  color: rgba(41, 48, 63, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
#checkout-cart .qty-control .btn.qty-plus {
  grid-column: 2;
  grid-row: 1;
}
#checkout-cart .qty-control .btn.qty-minus {
  grid-column: 2;
  grid-row: 2;
}
#checkout-cart .qty-control .btn:hover,
#checkout-cart .qty-control .btn:focus {
  border-color: rgba(83, 36, 205, 0.2);
  background: rgba(83, 36, 205, 0.05);
  color: #29303f;
}
#checkout-cart .qty-control .btn[disabled] {
  opacity: 0.34;
  cursor: not-allowed;
  background: linear-gradient(180deg, #fcfcfd, #f3f4f7);
  color: rgba(41, 48, 63, 0.36);
}
#checkout-cart .qty-control .qty-input {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 52px;
  min-width: 52px;
  height: 38px;
  padding: 0 6px;
  border: 1px solid rgba(41, 48, 63, 0.14);
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
  text-align: center;
}
#checkout-cart .qty-control .qty-input::-webkit-outer-spin-button,
#checkout-cart .qty-control .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#checkout-checkout .checkout-form-panel {
  display: grid;
  gap: 14px;
}
#checkout-checkout .checkout-section-card {
  padding: 18px;
  border: 1px solid rgba(41, 48, 63, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
}
#checkout-checkout .checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
#checkout-checkout .checkout-field {
  padding: 12px 14px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: rgba(243, 245, 249, 0.48);
}
#checkout-checkout .checkout-field--full {
  grid-column: 1 / -1;
}
#checkout-checkout .checkout-field__label {
  display: block;
  margin-bottom: 6px;
  color: rgba(41, 48, 63, 0.44);
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
#checkout-checkout .checkout-field__value {
  color: #29303f;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  word-break: break-word;
}
#checkout-checkout .checkout-summary-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  max-height: 350px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#checkout-checkout .checkout-summary-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(41, 48, 63, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
}
#checkout-checkout .checkout-summary-item__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 8px;
  border: 1px solid rgba(41, 48, 63, 0.06);
  border-radius: 6px;
  background: #fff;
}
#checkout-checkout .checkout-summary-item__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#checkout-checkout .checkout-summary-item__content {
  min-width: 0;
}
#checkout-checkout .checkout-summary-item__name {
  display: block;
  color: #29303f;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
#checkout-checkout .checkout-summary-item__name:hover {
  color: #5324CD;
}
#checkout-checkout .checkout-summary-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 4px;
  color: rgba(41, 48, 63, 0.46);
  font-size: 12px;
  line-height: 1.45;
}
#checkout-checkout .checkout-summary-item__price {
  color: #29303f;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
#checkout-checkout .checkout-summary-block {
  margin-bottom: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(41, 48, 63, 0.07);
}
#checkout-checkout .checkout-summary-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}
#checkout-checkout .checkout-summary-block h3 {
  margin: 0 0 12px;
  color: #29303f;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
#checkout-checkout .checkout-summary-block--totals {
  margin-bottom: 0;
  padding-top: 18px;
}
#checkout-checkout .checkout-select-wrap {
  display: grid;
  gap: 8px;
}
#checkout-checkout .checkout-inline-alert {
  padding: 12px 14px;
  border: 1px solid rgba(209, 76, 76, 0.16);
  border-radius: 6px;
  background: rgba(255, 245, 245, 0.92);
  color: rgba(41, 48, 63, 0.68);
  font-size: 13px;
  line-height: 1.55;
}
#checkout-checkout .checkout-payment-list {
  display: grid;
  gap: 8px;
}
#checkout-checkout .checkout-payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #fff;
  color: rgba(41, 48, 63, 0.72);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
#checkout-checkout .checkout-payment-option input {
  accent-color: #5324CD;
  margin: 0;
}
#checkout-checkout .checkout-payment-option span {
  color: inherit;
}
#checkout-checkout .checkout-payment-option:hover,
#checkout-checkout .checkout-payment-option.is-active {
  border-color: rgba(83, 36, 205, 0.24);
  box-shadow: 0 12px 28px rgba(83, 36, 205, 0.08);
  color: #29303f;
  transform: translateY(-1px);
}
#checkout-checkout .checkout-delivery-list {
  display: grid;
  gap: 8px;
}
#checkout-checkout .checkout-delivery-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(41, 48, 63, 0.08);
  border-radius: 6px;
  background: #fff;
  color: rgba(41, 48, 63, 0.72);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
#checkout-checkout .checkout-delivery-option input {
  accent-color: #5324CD;
  flex: 0 0 auto;
  margin: 3px 0 0;
}
#checkout-checkout .checkout-delivery-option__copy {
  display: grid;
  gap: 3px;
  color: inherit;
  line-height: 1.35;
}
#checkout-checkout .checkout-delivery-option strong {
  color: #29303f;
  font-size: 14px;
  font-weight: 700;
}
#checkout-checkout .checkout-delivery-option small {
  color: rgba(41, 48, 63, 0.54);
  font-size: 12px;
  line-height: 1.45;
}
#checkout-checkout .checkout-delivery-option:hover,
#checkout-checkout .checkout-delivery-option.is-active {
  border-color: rgba(83, 36, 205, 0.24);
  box-shadow: 0 12px 28px rgba(83, 36, 205, 0.08);
  color: #29303f;
  transform: translateY(-1px);
}
#checkout-checkout .checkout-address-block.is-hidden {
  display: none;
}
#checkout-checkout .modal-content {
  border-radius: 6px;
  background: #fff;
}
#checkout-checkout #addressWarningLabel {
  color: #29303f;
  font-size: 26px;
  letter-spacing: -0.03em;
}
@media (max-width: 1199.98px) {
  #checkout-cart .checkout-flow__hero,
  #checkout-checkout .checkout-flow__hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
  #checkout-cart .summary,
  #checkout-checkout .summary {
    position: static;
  }
}
@media (max-width: 991.98px) {
  #checkout-cart,
  #checkout-checkout {
    padding-bottom: 44px;
  }
  #checkout-cart .checkout-flow__intro p,
  #checkout-checkout .checkout-flow__intro p {
    font-size: 16px;
  }
  #checkout-cart .checkout-flow__stats,
  #checkout-checkout .checkout-flow__stats {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  #checkout-cart .checkout-flow__hero,
  #checkout-checkout .checkout-flow__hero {
    gap: 18px;
    margin-bottom: 22px;
  }
  #checkout-cart .checkout-flow__intro h1,
  #checkout-checkout .checkout-flow__intro h1 {
    font-size: 34px;
    line-height: 1.06;
  }
  #checkout-cart .checkout-flow__intro p,
  #checkout-checkout .checkout-flow__intro p {
    font-size: 15px;
  }
  #checkout-cart .checkout-flow__stats,
  #checkout-checkout .checkout-flow__stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  #checkout-cart .checkout-stat-card,
  #checkout-checkout .checkout-stat-card {
    padding: 14px 15px;
  }
  #checkout-cart .checkout-stat-card__value,
  #checkout-checkout .checkout-stat-card__value {
    font-size: 24px;
  }
  #checkout-cart .checkout-panel,
  #checkout-checkout .checkout-panel,
  #checkout-cart .checkout-form-panel,
  #checkout-checkout .checkout-form-panel,
  #checkout-cart .summary,
  #checkout-checkout .summary {
    padding: 16px;
  }
  #checkout-cart .checkout-panel__head,
  #checkout-checkout .checkout-panel__head,
  #checkout-cart .checkout-section-card__head,
  #checkout-checkout .checkout-section-card__head {
    flex-direction: column;
    align-items: stretch;
  }
  #checkout-cart .checkout-cart-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
  }
  #checkout-cart .checkout-cart-item__thumb {
    width: 54px;
    height: 54px;
  }
  #checkout-cart .checkout-cart-item__body {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: 'info info remove' 'qty unit total' 'note note note';
    align-items: start;
    column-gap: 12px;
    row-gap: 10px;
  }
  #checkout-cart .checkout-cart-item__line-total-wrap {
    text-align: right;
  }
  #checkout-cart .checkout-cart-item__unit-price-wrap {
    min-width: 72px;
    text-align: left;
  }
  #checkout-cart .checkout-cart-item__remove {
    width: 38px;
    height: 38px;
  }
  #checkout-cart .qty-control {
    width: fit-content;
  }
  #checkout-checkout .checkout-grid {
    grid-template-columns: 1fr;
  }
  #checkout-checkout .checkout-field--full {
    grid-column: auto;
  }
  #checkout-checkout .checkout-summary-item {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  #checkout-checkout .checkout-summary-item__thumb {
    width: 48px;
    height: 48px;
  }
  #checkout-checkout .checkout-summary-item__price {
    grid-column: 2;
  }
}
@media (max-width: 575.98px) {
  #checkout-cart,
  #checkout-checkout {
    padding-top: 14px;
    padding-bottom: 34px;
  }
  #checkout-cart .breadcrumb,
  #checkout-checkout .breadcrumb {
    margin-bottom: 14px;
  }
  #checkout-cart .checkout-flow__intro h1,
  #checkout-checkout .checkout-flow__intro h1 {
    font-size: 30px;
  }
  #checkout-cart .checkout-flow__stats,
  #checkout-checkout .checkout-flow__stats {
    grid-template-columns: 1fr;
  }
  #checkout-cart .checkout-panel,
  #checkout-cart .summary {
    padding: 14px;
  }
  #checkout-cart .checkout-panel__continue {
    width: 100%;
    min-width: 0;
  }
  #checkout-cart .checkout-cart-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }
  #checkout-cart .checkout-cart-item__thumb {
    width: 48px;
    height: 48px;
  }
  #checkout-cart .checkout-cart-item__body {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: 'info remove' 'qty total' 'note note';
    align-items: start;
    column-gap: 12px;
    row-gap: 9px;
  }
  #checkout-cart .checkout-cart-item__title {
    font-size: 15px;
    margin-bottom: 6px;
  }
  #checkout-cart .checkout-cart-item__meta {
    font-size: 12px;
    gap: 4px 10px;
  }
  #checkout-cart .checkout-cart-item__unit-price-wrap {
    display: none;
  }
  #checkout-cart .checkout-cart-item__line-total-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  #checkout-cart .checkout-cart-item__line-total {
    display: inline-block;
    font-size: 16px;
  }
  #checkout-cart .checkout-cart-item__unit-price-inline {
    display: inline-block;
    margin-left: 6px;
    color: rgba(41, 48, 63, 0.48);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
  }
  #checkout-cart .checkout-cart-item__unit-price-inline::before {
    content: '(';
  }
  #checkout-cart .checkout-cart-item__unit-price-inline::after {
    content: ')';
  }
  #checkout-cart .checkout-cart-item__remove {
    width: 36px;
    height: 36px;
  }
  #checkout-cart .qty-control {
    grid-template-columns: 46px 24px;
    grid-template-rows: repeat(2, 15px);
    gap: 5px 7px;
  }
  #checkout-cart .qty-control .btn {
    width: 24px;
    min-width: 24px;
    height: 15px;
    font-size: 12px;
  }
  #checkout-cart .qty-control .qty-input {
    width: 46px;
    min-width: 46px;
    height: 35px;
    font-size: 13px;
  }
  #checkout-checkout .checkout-section-card {
    padding: 14px;
  }
  #checkout-checkout .checkout-field {
    padding: 11px 12px;
  }
  #checkout-checkout .checkout-field__value {
    font-size: 15px;
  }
}
:root {
  --premium-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --premium-duration-fast: 0.4s;
  --premium-duration-base: 0.5s;
  --premium-duration-slow: 0.55s;
  --premium-shadow-soft: 0 18px 34px rgba(5, 7, 11, 0.1);
  --premium-shadow-card: 0 20px 40px rgba(5, 7, 11, 0.14);
  --premium-shadow-accent: 0 16px 30px rgba(83, 36, 205, 0.18);
  --premium-overlay-dark: linear-gradient(180deg, rgba(10, 8, 16, 0) 0%, rgba(10, 8, 16, 0.28) 48%, rgba(10, 8, 16, 0.82) 100%);
  --premium-lift-y: -6px;
}
.transition-smooth {
  transition: transform var(--premium-duration-base) var(--premium-ease), opacity var(--premium-duration-base) var(--premium-ease), box-shadow var(--premium-duration-base) var(--premium-ease), filter var(--premium-duration-base) var(--premium-ease), background-color var(--premium-duration-base) var(--premium-ease), border-color var(--premium-duration-base) var(--premium-ease), color var(--premium-duration-base) var(--premium-ease);
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--premium-ease), transform 0.6s var(--premium-ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.scale-hover {
  transition: transform 0.55s var(--premium-ease), box-shadow 0.55s var(--premium-ease);
}
.scale-hover:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--premium-shadow-soft);
}
.stagger-1 {
  transition-delay: 0.06s !important;
}
.stagger-2 {
  transition-delay: 0.12s !important;
}
.stagger-3 {
  transition-delay: 0.18s !important;
}
.stagger-4 {
  transition-delay: 0.24s !important;
}
.stagger-5 {
  transition-delay: 0.3s !important;
}
.stagger-6 {
  transition-delay: 0.36s !important;
}
html body [data-aos] {
  transition-timing-function: var(--premium-ease) !important;
  will-change: transform, opacity;
}
.hero-section .hero-content > *,
.hero-mobile__panel > * {
  opacity: 0;
  transform: translateY(24px);
  animation: premiumHeroReveal 0.55s var(--premium-ease) forwards;
}
.hero-section .hero-content > *:nth-child(1),
.hero-mobile__panel > *:nth-child(1) {
  animation-delay: 0.08s;
}
.hero-section .hero-content > *:nth-child(2),
.hero-mobile__panel > *:nth-child(2) {
  animation-delay: 0.18s;
}
.hero-section .hero-content > *:nth-child(3),
.hero-mobile__panel > *:nth-child(3) {
  animation-delay: 0.28s;
}
.hero-section .hero-panel:hover .hero-content {
  transform: translateY(0);
}
.hero-section .hero-panel:hover video {
  transform: scale(1.03);
}
.hero-mobile__panel.is-active > * {
  animation-play-state: running;
}
@keyframes premiumHeroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-header,
.site-header .topbar,
.site-header .brand img,
.site-header .main-nav a,
.site-header .header-icon,
.site-header .header-badge,
.toolbar__filter,
.toolbar__sort,
.toolbar__search input,
.dropdown-menu,
.dropdown-item,
.offcanvas,
.offcanvas-backdrop,
.hero-mobile__tab,
.cart-drawer,
.cart-drawer__overlay,
.cart-item,
.list-row,
.btn,
.qty-btn,
.update-quantity {
  transition-timing-function: var(--premium-ease) !important;
}
.site-header .main-nav a,
.site-header .header-icon,
.toolbar__filter,
.hero-mobile__tab,
.btn {
  transition-duration: var(--premium-duration-fast) !important;
}
.site-header .header-icon:hover,
.toolbar__filter:hover,
.hero-mobile__tab:hover,
.hero-mobile__tab.is-active {
  transform: translateY(-2px);
}
.site-header .dropdown-menu {
  transform-origin: top right;
  animation-duration: 0.4s !important;
}
.dropdown-menu.show {
  animation: premiumDropdownIn 0.4s var(--premium-ease) forwards;
}
@keyframes premiumDropdownIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.offcanvas {
  transition: transform 0.5s var(--premium-ease), visibility 0.5s var(--premium-ease) !important;
}
.offcanvas-backdrop {
  transition: opacity 0.45s var(--premium-ease), visibility 0.45s var(--premium-ease) !important;
}
.btn,
.toolbar__filter,
.hero-mobile__tab,
.header-burger {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn,
.toolbar__filter,
.hero-mobile__tab,
.qty-btn,
.update-quantity {
  transition: transform 0.4s var(--premium-ease), box-shadow 0.4s var(--premium-ease), background-color 0.4s var(--premium-ease), border-color 0.4s var(--premium-ease), color 0.4s var(--premium-ease), opacity 0.4s var(--premium-ease) !important;
}
.btn:hover,
.toolbar__filter:hover,
.hero-mobile__tab:hover,
.qty-btn:hover,
.update-quantity:hover {
  transform: translateY(-2px);
}
.btn:active,
.toolbar__filter:active,
.hero-mobile__tab:active,
.qty-btn:active,
.update-quantity:active {
  transform: translateY(0) scale(0.985);
}
.btn.btn-primary:hover,
.add-to-cart-btn:hover,
.product-card__add:hover {
  box-shadow: var(--premium-shadow-accent);
}
.btn-ripple {
  position: absolute;
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.34);
  pointer-events: none;
  animation: premiumRipple 0.6s var(--premium-ease) forwards;
  z-index: 0;
}
@keyframes premiumRipple {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.75;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.product-card,
.product-layout .product,
.row.product-list .product,
.product-layout .product-layout,
.product-thumb,
.list-row {
  transition: transform 0.55s var(--premium-ease), box-shadow 0.55s var(--premium-ease), border-color 0.55s var(--premium-ease), background-color 0.55s var(--premium-ease);
}
.product-card:hover,
.product-layout .product:hover,
.row.product-list .product:hover,
.product-thumb:hover,
.list-row:hover {
  transform: translateY(var(--premium-lift-y));
}
.product-card:hover,
.product-layout .product:hover,
.row.product-list .product:hover,
.product-thumb:hover {
  box-shadow: var(--premium-shadow-card);
}
.product-card .card__img,
.product-layout .product .image-wrapper,
.row.product-list .product .image-wrapper,
.product-thumb .image {
  position: relative;
  overflow: hidden;
}
.product-card .card__img img,
.product-layout .product .image-wrapper img,
.row.product-list .product .image-wrapper img,
.product-thumb .image img,
.list-row__info img {
  transform-origin: center center;
  transition: transform 0.55s var(--premium-ease), filter 0.55s var(--premium-ease), opacity 0.55s var(--premium-ease);
}
.product-card:hover .card__img img,
.product-layout .product:hover .image-wrapper img,
.row.product-list .product:hover .image-wrapper img,
.product-thumb:hover .image img {
  transform: scale(1.08);
}
.product-card .card__overlay,
.product-card__overlay {
  opacity: 0;
  background: var(--premium-overlay-dark);
  transition: opacity 0.45s var(--premium-ease), transform 0.45s var(--premium-ease);
  pointer-events: none;
}
.product-card .card__overlay::before,
.product-card__overlay::before {
  content: attr(data-product-name);
  display: block;
  margin-bottom: 14px;
  max-width: 260px;
  color: #111;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--premium-ease), transform 0.45s var(--premium-ease);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}
.product-card:hover .card__overlay,
.product-card:hover .product-card__overlay,
.product-card:focus-within .card__overlay,
.product-card:focus-within .product-card__overlay {
  opacity: 1;
  pointer-events: auto;
}
.product-card:hover .card__overlay::before,
.product-card:hover .product-card__overlay::before,
.product-card:focus-within .card__overlay::before,
.product-card:focus-within .product-card__overlay::before {
  opacity: 1;
  transform: translateY(0);
}
.product-layout .product .image-wrapper::before,
.row.product-list .product .image-wrapper::before,
.product-thumb .image::before,
.product-layout .product .image-wrapper::after,
.row.product-list .product .image-wrapper::after,
.product-thumb .image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--premium-ease), transform 0.45s var(--premium-ease);
}
.product-layout .product .image-wrapper::before,
.row.product-list .product .image-wrapper::before,
.product-thumb .image::before {
  content: '';
  background: var(--premium-overlay-dark);
  opacity: 0;
}
.product-layout .product .image-wrapper::after,
.row.product-list .product .image-wrapper::after,
.product-thumb .image::after {
  content: attr(data-product-name);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.product-layout .product:hover .image-wrapper::before,
.row.product-list .product:hover .image-wrapper::before,
.product-thumb:hover .image::before,
.product-layout .product:hover .image-wrapper::after,
.row.product-list .product:hover .image-wrapper::after,
.product-thumb:hover .image::after {
  opacity: 1;
  transform: translateY(0);
}
.list-row {
  overflow: hidden;
}
.list-row:hover .list-row__info img {
  transform: scale(1.08);
}
.list-row__cta .btn,
.list-row__qty button,
.product-card__qty-control,
.qty-control {
  transition: transform 0.4s var(--premium-ease), box-shadow 0.4s var(--premium-ease), border-color 0.4s var(--premium-ease) !important;
}
@media (hover: none) {
  .product-card .card__overlay,
  .product-card__overlay {
    opacity: 1;
    pointer-events: auto;
    background: linear-gradient(180deg, rgba(10, 8, 16, 0) 10%, rgba(10, 8, 16, 0.14) 52%, rgba(10, 8, 16, 0.52) 100%);
  }
  .product-card .card__overlay::before,
  .product-card__overlay::before {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.cart-drawer__overlay {
  transition: opacity 0.45s var(--premium-ease), visibility 0.45s var(--premium-ease) !important;
}
.cart-drawer {
  transition: transform 0.55s var(--premium-ease), box-shadow 0.55s var(--premium-ease) !important;
}
.cart-item {
  transition: transform 0.4s var(--premium-ease), background-color 0.4s var(--premium-ease), border-color 0.4s var(--premium-ease) !important;
}
.cart-item:hover {
  transform: translateX(-2px);
}
#common-home > section,
.information-subheader,
.toolbar,
.search-hero,
.product-new__intro,
.product-new__grid-wrap,
.product-layout-wrapper,
.list-card,
.grid__cards,
.order-assistant__inner {
  transition: transform 0.55s var(--premium-ease), box-shadow 0.55s var(--premium-ease), opacity 0.55s var(--premium-ease);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in,
  .fade-in.visible {
    opacity: 1;
    transform: none;
  }
}
#product-product .pd-related-grid .product-card--guest {
  position: relative;
}
#product-product .pd-related-grid .product-card--guest .card__overlay,
#product-product .pd-related-grid .product-card--guest .product-card__overlay {
  position: absolute;
  inset: 0;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 4;
  cursor: pointer;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.78) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
#product-product .pd-related-grid .product-card--guest:hover .card__overlay,
#product-product .pd-related-grid .product-card--guest:focus-within .card__overlay,
#product-product .pd-related-grid .product-card--guest:hover .product-card__overlay,
#product-product .pd-related-grid .product-card--guest:focus-within .product-card__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#product-product .pd-related-grid .product-card--guest .card__overlay::before,
#product-product .pd-related-grid .product-card--guest .product-card__overlay::before {
  content: none;
}
#product-product .pd-related-grid .product-card--guest .product-card__view {
  min-width: 144px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  #product-product .pd-related-grid .product-card--guest:hover .card__overlay,
  #product-product .pd-related-grid .product-card--guest:focus-within .card__overlay,
  #product-product .pd-related-grid .product-card--guest:hover .product-card__overlay,
  #product-product .pd-related-grid .product-card--guest:focus-within .product-card__overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  #product-product .pd-related-grid .product-card--guest .card__overlay,
  #product-product .pd-related-grid .product-card--guest .product-card__overlay {
    display: none;
  }
}
/*# sourceMappingURL=styles_new.css.map */