/* SnopexShop 2026 Award-Winning UI/UX Redesign - Brutalist Elegance */
:root {
  --sx-bg: #f7f7f7;
  --sx-surface: #ffffff;
  --sx-ink: #000000;
  --sx-ink-light: #333333;
  --sx-grey: #888888;
  --sx-border: #e0e0e0;
  --sx-border-dark: #1a1a1a;
  --sx-accent: #000000;
  --sx-radius-sm: 2px;
  --sx-radius: 4px;
  --sx-radius-lg: 8px;
  --sx-font-display: 'Sora', sans-serif;
  --sx-font-body: 'Inter', sans-serif;
  --sx-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sx-dur: 0.3s;
}
body {
  font-family: var(--sx-font-body);
  color: var(--sx-ink);
  background: var(--sx-bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.015em;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, .h1, .h2, .h3, .page-title, .product-title, .category-name {
  font-family: var(--sx-font-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--sx-ink);
  margin-top: 0;
}
a {
  color: var(--sx-ink);
  text-decoration: none;
  transition: color var(--sx-dur) var(--sx-ease);
}
a:hover {
  color: var(--sx-grey);
}
.container, .container-fluid {
  max-width: 100%;
  padding: 0 3rem;
}
::selection {
  background: var(--sx-ink);
  color: var(--sx-surface);
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--sx-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--sx-border);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--sx-ink);
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--sx-surface);
  border-bottom: 1px solid var(--sx-border);
}
.header-top {
  padding: 0;
}
.header-banner {
  background: var(--sx-ink);
  color: var(--sx-surface);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  text-align: center;
}
.header-nav {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img, .logo img {
  height: auto;
  max-height: 40px;
}
.main-menu .top-menu {
  display: flex;
  gap: 2rem;
}
.main-menu .top-menu a, .header-nav .top-menu .menu-item a {
  font-family: var(--sx-font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--sx-ink);
  padding: 0.5rem 0;
  position: relative;
}
.main-menu .top-menu > li > a::after, .header-nav .top-menu > .menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--sx-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--sx-dur) var(--sx-ease);
}
.main-menu .top-menu > li > a:hover::after, .header-nav .top-menu > .menu-item > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.top-menu .sub-menu, .popover.sub-menu {
  background: var(--sx-surface);
  border: 1px solid var(--sx-border);
  border-radius: 0;
  box-shadow: none;
  padding: 2rem;
}
.header .search-widget form input[type="text"], .search-widget input[type="text"] {
  background: var(--sx-bg);
  border: 1px solid transparent;
  border-radius: var(--sx-radius);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  transition: all var(--sx-dur) var(--sx-ease);
}
.header .search-widget form input[type="text"]:focus, .search-widget input[type="text"]:focus {
  background: var(--sx-surface);
  border-color: var(--sx-ink);
  outline: none;
}
.blockcart .cart-products-count {
  background: var(--sx-ink);
  color: var(--sx-surface);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  margin-left: 0.25rem;
}
.btn, .btn-primary, .btn-secondary, .add-to-cart, button[type="submit"].btn {
  font-family: var(--sx-font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--sx-radius);
  border: 1px solid var(--sx-ink);
  padding: 1rem 2rem;
  transition: all var(--sx-dur) var(--sx-ease);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary, .add-to-cart, .product-add-to-cart .btn, button.add-to-cart {
  background: var(--sx-ink);
  color: var(--sx-surface) !important;
}
.btn-primary:hover, .add-to-cart:hover, button.add-to-cart:hover {
  background: var(--sx-surface);
  color: var(--sx-ink) !important;
}
.btn-secondary, .btn-outline-primary {
  background: var(--sx-surface);
  color: var(--sx-ink) !important;
}
.btn-secondary:hover, .btn-outline-primary:hover {
  background: var(--sx-ink);
  color: var(--sx-surface) !important;
}
.featured-products .h2, .products-section-title, h2.products-section-title, section.featured-products .title {
  font-family: var(--sx-font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  text-align: left;
  margin-bottom: 3rem;
  color: var(--sx-ink);
  border-bottom: 1px solid var(--sx-border);
  padding-bottom: 1rem;
}
.product-miniature, .js-product-miniature {
  background: var(--sx-surface);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius);
  overflow: hidden;
  position: relative;
  transition: border-color var(--sx-dur) var(--sx-ease);
  display: flex;
  flex-direction: column;
}
.product-miniature:hover, .js-product-miniature:hover {
  border-color: var(--sx-border-dark);
}

/* SnopexShop 2026 Product Accordion - Minimalist Editorial Brutalism */
#product-infos-accordion.accordion-flush {
  border-top: 1px solid var(--sx-border, #e0e0e0);
  background: transparent;
  margin-top: 3rem;
}
#product-infos-accordion .accordion-item {
  background-color: transparent;
  border-bottom: 1px solid var(--sx-border, #e0e0e0);
  border-top: none;
  border-left: none;
  border-right: none;
}
#product-infos-accordion .accordion-header {
  margin: 0;
}
#product-infos-accordion .accordion-button {
  font-family: var(--sx-font-display, 'Sora', sans-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--sx-ink, #000000);
  background-color: transparent;
  padding: 1.5rem 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  transition: color var(--sx-dur, 0.3s) var(--sx-ease, cubic-bezier(0.16, 1, 0.3, 1));
}
#product-infos-accordion .accordion-button:not(.collapsed) {
  color: var(--sx-ink, #000000);
  background-color: transparent;
  box-shadow: none;
}
#product-infos-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
#product-infos-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-position: center;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--sx-dur, 0.3s) var(--sx-ease, cubic-bezier(0.16, 1, 0.3, 1));
  transform: rotate(0deg);
}
#product-infos-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(135deg);
}
#product-infos-accordion .accordion-body {
  padding: 0 0 2rem 0;
  font-family: var(--sx-font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: var(--sx-ink-light, #333333);
  line-height: 1.6;
}
#product-infos-accordion .product__description p {
  margin: 0;
}
#product-infos-accordion .product__details,
#product-infos-accordion .product__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
#product-infos-accordion .detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sx-border, #e0e0e0);
}
#product-infos-accordion .detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#product-infos-accordion .detail__left {
  font-weight: 500;
  color: var(--sx-grey, #888888);
}
#product-infos-accordion .detail__right {
  font-weight: 400;
  color: var(--sx-ink, #000000);
  text-align: right;
}
#product-infos-accordion .detail__right a {
  display: inline-flex;
  align-items: center;
}
#product-infos-accordion .detail__manufacturer-logo {
  max-height: 28px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.8;
  transition: all var(--sx-dur, 0.3s) var(--sx-ease, cubic-bezier(0.16, 1, 0.3, 1));
}
#product-infos-accordion .detail__manufacturer-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}
/* SnopexShop 2026 Sidebar Layout System - Minimalist Editorial Brutalism */
#left-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.left-block {
  border: 1px solid var(--sx-border, #e0e0e0);
  background-color: transparent;
  padding: 1.5rem;
}
.left-block__title {
  font-family: var(--sx-font-display, 'Sora', sans-serif);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sx-ink, #000000);
}
.left-block__title__link,
.search-filters-title {
  color: var(--sx-ink, #000000);
  text-decoration: none;
  display: block;
  margin: 0;
}
.accordion--category {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-tree__child,
.category-tree__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-tree__list[data-depth="1"] {
  padding-left: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-left: 1px solid var(--sx-border, #e0e0e0);
}
.category-tree__item {
  border: none !important;
}
.category-tree__item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}
.category-tree__item__link {
  font-family: var(--sx-font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  color: var(--sx-ink-light, #333333);
  text-decoration: none;
  text-transform: capitalize;
  transition: color var(--sx-dur, 0.3s) var(--sx-ease, cubic-bezier(0.16, 1, 0.3, 1));
}
.category-tree__item__link:hover {
  color: var(--sx-ink, #000000);
}
.accordion--category .accordion-button {
  background: transparent;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  min-height: auto;
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.accordion--category .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='square'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-size: 0.85rem;
  background-position: center;
  width: 0.85rem;
  height: 0.85rem;
  transition: transform var(--sx-dur, 0.3s) var(--sx-ease, cubic-bezier(0.16, 1, 0.3, 1));
}
.accordion--category .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='square'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
}
.facet.accordion-item {
  background: transparent;
  border: none;
}
.facet-title .accordion-button {
  font-family: var(--sx-font-display, 'Sora', sans-serif);
  font-size: 0.95rem;
  color: var(--sx-ink, #000000);
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.facet-title .accordion-button:not(.collapsed) {
  color: var(--sx-ink, #000000);
  background: transparent;
}
.facet-title .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.5' stroke-linecap='square'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: 1rem;
  background-position: center;
  width: 1rem;
  height: 1rem;
  transition: transform var(--sx-dur, 0.3s) var(--sx-ease, cubic-bezier(0.16, 1, 0.3, 1));
}
.facet-title .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.facet .accordion-body {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-check {
  display: flex;
  align-items: center;
  min-height: auto;
  padding-left: 0;
  margin-bottom: 0;
}
.form-check-input {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.75rem;
  border-radius: 0 !important;
  border: 1px solid var(--sx-border-dark, #999999);
  background-color: transparent;
  cursor: pointer;
  float: none;
  box-shadow: none !important;
  transition: background-color var(--sx-dur, 0.3s), border-color var(--sx-dur, 0.3s);
}
.form-check-input:checked {
  background-color: var(--sx-ink, #000000);
  border-color: var(--sx-ink, #000000);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='square'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.form-check-label {
  font-family: var(--sx-font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  color: var(--sx-ink-light, #333333);
  cursor: pointer;
  width: 100%;
}
.search-filters-link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.magnitude {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--sx-grey, #888888);
}
.color.color-sm {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  border-radius: 0;
  border: 1px solid var(--sx-border, #e0e0e0);
}
.faceted-filter .js-faceted-values {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--sx-ink, #000000);
  margin-top: 1rem;
  font-weight: 600;
}
.noUi-target {
  background: var(--sx-border, #e0e0e0);
  border-radius: 0;
  border: none;
  box-shadow: none;
  height: 2px;
  margin: 1.5rem 0.5rem 0.5rem 0.5rem;
}
.noUi-connect {
  background: var(--sx-ink, #000000);
}
.noUi-handle {
  width: 12px !important;
  height: 12px !important;
  right: -6px !important;
  top: -5px !important;
  border-radius: 0;
  border: 1px solid var(--sx-ink, #000000);
  background: #ffffff;
  cursor: pointer;
  box-shadow: none;
}
.noUi-handle::before,
.noUi-handle::after {
  display: none;
}
hr.my-0 {
  border-top: 1px solid var(--sx-border, #e0e0e0);
  opacity: 1;
  margin: 0;
}
.offcanvas {
  border-right: 1px solid var(--sx-ink, #000000);
}
.offcanvas-header {
  border-bottom: 1px solid var(--sx-border, #e0e0e0);
  padding: 1.5rem;
}
.offcanvas-title {
  font-family: var(--sx-font-display, 'Sora', sans-serif);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.btn-close {
  border-radius: 0;
  opacity: 1;
  box-shadow: none !important;
}





