@charset "UTF-8";
:root {
  /* colors */
  --bg: #ffffff;
  --bg-rev: #0f1115;
  --text: #111111;
  --text-rev: #f3f4f6;
  --muted: #5a5a5a;
  --muted-rev: #c7c9ce;
  --border: #d9d9d9;
  --border-rev: #2a2f3a;
  --card: #ffffff;
  --card-rev: #151924;
  --focus: #005bbb;
  --focus-rev: #ffd500;
}

/* ========================================
   THEMES
======================================== */
html[data-a11y-theme=dark] {
  --bg: #0f1115;
  --bg-rev: #ffffff;
  --text: #f3f4f6;
  --text-rev: #111111;
  --muted: #c7c9ce;
  --muted-rev: #5a5a5a;
  --border: #2a2f3a;
  --border-rev: #d9d9d9;
  --card: #151924;
  --card-rev: #ffffff;
  --focus: #ffd500;
  --focus-rev: #005bbb;
}

body {
  width: 100%;
  height: 100%;
}
body * {
  font-family: "e-Ukraine Regular";
}

h1, h2, h3, h4, h5, h6 {
  color: #444;
}

legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

label {
  font-size: 12px;
  font-weight: normal;
}

/* Chrome border line */
button:focus {
  outline: none !important;
}

/* container */
#container {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin-bottom: 300px;
}

#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}

@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}

#alert .alert-primary {
  box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}

#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}

#alert .alert-success {
  box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}

#alert .alert-warning {
  box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}

#alert .alert-danger {
  box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}

#alert .alert-info {
  box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}

#alert .alert-light {
  box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}

#alert .alert-dark {
  box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}

/* top */
#top {
  background-color: var(--bs-tertiary-bg);
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 5px;
}

#top ul.list-inline {
  margin-bottom: 0;
}

#top .list-inline-item > a, #top .list-inline-item .dropdown > a {
  font-size: 1.1em;
  color: var(--bs-gray-600);
  line-height: 40px;
  vertical-align: middle;
  padding: 10px 0px 5px 0px;
}

/* logo */
#logo {
  text-align: center;
  margin: 7px 0 7px 0;
}

#logo img {
  max-width: 200px;
}

@media (min-width: 768px) {
  #logo {
    text-align: left;
  }
}
/* search */
#search {
  margin-bottom: 10px;
}

#search .form-control-lg {
  height: 40px;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
}

#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0.57rem 35px;
  text-shadow: 0 1px 0 #FFF;
}

/* cart */
#cart {
  margin-bottom: 10px;
}

#cart .img-thumbnail {
  min-width: 100px;
}

#cart .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 14px 35px;
}

#cart .dropdown-menu {
  background: #eee;
}

#cart .dropdown-menu li {
  min-width: 300px;
}

@media (max-width: 768px) {
  #cart .dropdown-menu li {
    min-width: 100%;
  }
}
/* menu */
#menu {
  background-color: #229ac8;
  background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
  background-repeat: repeat-x;
  border: 1px solid #1f90bb;
  border-color: #1f90bb #1f90bb #145e7a;
  min-height: 40px;
  border-radius: 4px;
  padding: 0 1rem;
  margin-bottom: 20px;
}

#menu .navbar-nav > li > a {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 15px 10px 15px;
  background-color: transparent;
}

html[data-a11y-contrast=high] #menu .navbar-nav > li > a,
html[data-a11y-contrast=bw] #menu .navbar-nav > li > a {
  text-shadow: none;
}

#menu .navbar-nav > li > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

#menu .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#menu .dropdown-inner {
  display: flex;
  flex-direction: column;
}

#menu .dropdown-inner ul {
  width: 100%;
  min-width: 200px;
}

@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

#menu .navbar-toggler i {
  color: #fff;
  border-color: #fff;
  font-size: 0.9em;
}

/* default boostrap changes */
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}

.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}

.nav-tabs {
  margin-bottom: 15px;
}

.form-check .form-check-input {
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
/* footer */
footer {
  border: 1px solid #000000;
  width: 100%;
  padding-top: 30px;
  background-color: #303030;
  border-top: 1px solid #ddd;
  color: #e2e2e2;
}
footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}
footer a {
  color: #ccc;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
footer h5 {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 0;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-tertiary-bg);
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  text-shadow: 0 1px 0 #FFF;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 26px;
  height: 26px;
  border-right: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "";
  padding: 0;
}

.product-thumb {
  border: 1px solid #ddd;
  position: relative;
  height: 100%;
}

.product-thumb .image {
  text-align: center;
}

.product-thumb .image a:hover {
  opacity: 0.8;
}

.product-thumb .description {
  padding: 15px;
}
.product-thumb .description p {
  margin-bottom: 0;
}

.product-thumb .description h4 {
  font-weight: bold;
}

.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-gray-600);
  line-height: 38px;
  text-align: center;
}

.product-thumb .button button:hover {
  color: var(--bs-gray-600);
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}

.product-thumb .button button + button {
  border-left: 1px solid var(--bs-border-color);
}

@media (min-width: 960px) {
  .product-list .product-thumb {
    display: flex;
  }
  .product-list .product-thumb .image {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .product-list .product-thumb .content {
    flex-direction: column;
    flex: 75%;
    position: relative;
  }
  .product-list .product-thumb .button {
    border-left: 1px solid #ddd;
    width: calc(100% - 15px);
    margin-left: 15px;
  }
}
.rating .fa-stack {
  width: 20px;
}

.rating .fa-star {
  color: #999;
  font-size: 15px;
}

.rating .fa-star {
  color: #FC0;
  font-size: 15px;
}

.rating .fa-star + .fa-star {
  color: #E69500;
}

/* product list */
.price {
  color: #444;
}

.price-new {
  font-weight: 600;
}

.price-old {
  color: #dc512c;
  text-decoration: line-through;
}

.price-tax {
  color: #999;
  font-size: 12px;
  display: block;
}

/* blog */
.blog-thumb {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.blog-thumb h4 {
  font-weight: bold;
}

.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}

.blog-thumb .image a:hover {
  opacity: 0.8;
}

.blog-thumb .description {
  padding: 15px;
}

/* Theme Custom CSS */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}

#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}

.articleProductWrapper {
  margin-bottom: 50px;
}
.articleProductWrapper .articleProduct {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 16px;
  margin-bottom: 16px;
}
.articleProductWrapper .articleProduct .main {
  background: #f8f9fa;
  padding: 15px 15px 15px;
  border-radius: 4px;
  border: 1px solid rgb(222, 226, 230);
}
.articleProductWrapper .articleProduct .main .title {
  font-weight: 700;
  font-size: 1.6666666667vw;
  line-height: 2.0833333333vw;
  margin-bottom: 24px;
}
@media screen and (max-width: 1536px) {
  .articleProductWrapper .articleProduct .main .title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .articleProductWrapper .articleProduct .main .title {
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 1000px) {
  .articleProductWrapper .articleProduct .main .title {
    font-weight: 700;
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 1000px) and (max-width: 1536px) {
  .articleProductWrapper .articleProduct .main .title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1000px) and (max-width: 768px) {
  .articleProductWrapper .articleProduct .main .title {
    font-size: 16px;
    line-height: 24px;
  }
}
.articleProductWrapper .articleProduct .main .imagesWrapper {
  background: #ededed;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgb(222, 226, 230);
}
.articleProductWrapper .articleProduct .main .imagesWrapper .thumbWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.articleProductWrapper .articleProduct .main .editor-content {
  overflow: hidden;
  margin: 16px 0;
}
.articleProductWrapper .articleProduct .main .product-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.articleProductWrapper .articleProduct .sideBarRight {
  background: #f8f9fa;
  padding: 10px 15px 15px;
  border-radius: 4px;
  border: 1px solid rgb(222, 226, 230);
}
.articleProductWrapper .articleProduct .sideBarRight .item {
  margin-top: 16px;
}
.articleProductWrapper .articleProduct .sideBarRight .item .title {
  font-weight: 700;
  font-size: 0.9375vw;
  line-height: 1.25vw;
  margin-bottom: 8px;
}
@media screen and (max-width: 1536px) {
  .articleProductWrapper .articleProduct .sideBarRight .item .title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .articleProductWrapper .articleProduct .sideBarRight .item .title {
    font-size: 14px;
    line-height: 20px;
  }
}
.articleProductWrapper .articleProduct .sideBarRight .item:first-child {
  margin-top: 0;
}
.articleProductWrapper .articleProduct .sideBarRight #column-right {
  width: 100%;
}
.articleProductWrapper .articleProduct .sideBarRight #column-right .carousel {
  margin-top: 16px;
  margin-bottom: 0;
}
.editor-content {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.editor-content h1, .editor-content h2, .editor-content h3 {
  font-weight: bold;
}
.editor-content h1 {
  font-size: 28px;
}
.editor-content h2 {
  font-size: 24px;
}
.editor-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.editor-content ul, .editor-content ol {
  padding-left: 35px;
}
.editor-content ul ul, .editor-content ol ul {
  list-style-type: disc;
}
.editor-content ul ol, .editor-content ol ol {
  list-style-type: decimal;
}
.editor-content ul li, .editor-content ol li {
  margin-bottom: 5px;
}
.editor-content blockquote {
  font-style: italic;
  color: #666;
  border-left: 4px solid #ccc;
  padding-left: 10px;
}
.editor-content a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s;
}
.editor-content a:hover {
  color: #0056b3;
  text-decoration: underline;
}
.editor-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
}
.editor-content pre {
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 5px;
  overflow-x: auto;
}
.editor-content code {
  font-family: "Courier New", monospace;
  background-color: #f8f8f8;
  padding: 2px 5px;
  border-radius: 3px;
}
.editor-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}
.editor-content table th, .editor-content table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
.editor-content table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
.editor-content strong {
  font-weight: bold;
}
.editor-content em {
  font-style: italic;
}
.editor-content u {
  text-decoration: underline;
}
.editor-content > *:not(:last-child) {
  margin-bottom: 15px !important; /* Відступ знизу для всіх елементів, крім останнього */
}
.editor-content p:last-child {
  margin-bottom: 0;
}

/* ========================================
   ACCESSIBILITY PANEL
======================================== */
:root {
  /* typography */
  --a11y-font-scale: 1;
  --a11y-line-height: 1.45;
  --a11y-letter-spacing: 0;
  --a11y-word-spacing: 0;
}

/* ========================================
   GLOBAL APPLICATION
======================================== */
html {
  font-size: calc(16px * var(--a11y-font-scale));
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: var(--a11y-line-height);
  letter-spacing: var(--a11y-letter-spacing);
  word-spacing: var(--a11y-word-spacing);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ========================================
   CONTRAST MODES
======================================== */
html[data-a11y-contrast=high],
html[data-a11y-contrast=bw] {
  --bg: #ffffff;
  --text: #000000;
  --muted: #000000;
  --border: #000000;
  --card: #ffffff;
  --focus: #000000;
}

/* ========================================
   ACCESSIBILITY COMPONENT
======================================== */
.a11y {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 9999;
}
.a11y__icon {
  font-size: 18px;
  line-height: 1;
}
.a11y__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 320px;
  max-width: calc(100vw - 20px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  padding: 12px;
}
.a11y__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.a11y__title {
  font-weight: 700;
}
.a11y__close {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}
.a11y__section {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}
.a11y__section:last-of-type {
  border-bottom: none;
}
.a11y__label {
  font-weight: 600;
  margin-bottom: 8px;
}
.a11y__controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.a11y__btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}
.a11y__btn[aria-pressed=true] {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.a11y__btn--ghost {
  background: transparent;
}
.a11y__hint {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--muted);
}
.a11y__footer {
  padding-top: 10px;
  display: flex;
  justify-content: flex-end;
}

html[data-a11y-contrast=high] {
  --bg: #ffffff;
  --text: #000000;
  --muted: #111111;
  --border: #000000;
  --card: #ffffff;
  --focus: #000000;
}

/* ЧЕРНО-БЕЛЫЙ: дополнительно убираем цвета везде */
html[data-a11y-contrast=bw] {
  --bg: #ffffff;
  --text: #000000;
  --muted: #000000;
  --border: #000000;
  --card: #ffffff;
  --focus: #000000;
  /* максимально жестко убираем цветность */
  filter: grayscale(1) contrast(1.2);
}
html[data-a11y-contrast=bw] a {
  color: #000 !important;
  text-decoration: underline !important;
}
html[data-a11y-contrast=bw] img, html[data-a11y-contrast=bw] video, html[data-a11y-contrast=bw] svg {
  filter: grayscale(1) contrast(1.1);
}

html[data-a11y-contrast=high] {
  --bg: #ffffff;
  --text: #000000;
  --muted: #1a1a1a;
  --border: #000000;
  --card: #ffffff;
  --focus: #ff0000;
}
html[data-a11y-contrast=high] body {
  filter: contrast(1.2);
}
html[data-a11y-contrast=high] a {
  color: #0033cc !important;
  text-decoration: underline;
}
html[data-a11y-contrast=high] button {
  border: 2px solid #000;
}
html[data-a11y-contrast=high] img, html[data-a11y-contrast=high] video {
  filter: contrast(1.1);
}

.sectionWrapper {
  padding-top: 1.0416666667vw;
  padding-bottom: 1.0416666667vw;
}
@media screen and (max-width: 1000px) {
  .sectionWrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

header .sectionWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.0416666667vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
}
@media screen and (max-width: 1000px) {
  header .sectionWrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  header .sectionWrapper {
    gap: 20px;
  }
}
header .sectionWrapper .left {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media screen and (max-width: 1000px) {
  header .sectionWrapper .left {
    gap: 8px;
  }
}
header .sectionWrapper .left .logoWrap {
  display: flex;
  align-items: center;
  gap: 0.5208333333vw;
}
header .sectionWrapper .left .logoWrap .logo img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 80px;
}
header .sectionWrapper .left .logoWrap .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0a0c0d;
}
header .sectionWrapper .left .logoWrap .name {
  width: 12.5vw;
  font-size: 0.7291666667vw;
}
header .sectionWrapper .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
header .sectionWrapper .right img {
  display: block;
  max-width: 48px;
  width: 100%;
  height: auto;
}

.categories-wrapper {
  margin-bottom: 32px;
}
.categories-wrapper > .category-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 16px;
}
@media screen and (max-width: 1000px) {
  .categories-wrapper > .category-wrap {
    grid-template-columns: 1fr;
  }
}
.categories-wrapper > .category-wrap .category-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.categories-wrapper > .category-wrap .category-item {
  background: rgba(0, 140, 255, 0.05);
  padding: 16px;
  border-radius: 4px;
  border: 1px solid rgba(201, 201, 201, 0.37);
}
.categories-wrapper > .category-wrap .category-link {
  margin-bottom: 8px;
  font-size: 14px;
}
.categories-wrapper > .category-wrap > .category-item a {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}
.btn.rev {
  border: 1px solid var(--border-rev);
  background: var(--card-rev);
  color: var(--text-rev);
}
.btn.link {
  padding: 0;
  border: none;
  background: transparent;
}
.btn .nowrap {
  white-space: nowrap;
}

.icon {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-search-autocomplete {
  position: relative;
  width: 100%;
}
.header-search-autocomplete__field {
  position: relative;
}
.header-search-autocomplete__ghost,
.header-search-autocomplete #ajax-search-input {
  width: 100%;
  font: inherit;
  letter-spacing: inherit;
  padding: 10px 14px;
  line-height: 1.4;
  box-sizing: border-box;
}
.header-search-autocomplete__ghost {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  white-space: pre;
  overflow: hidden;
  color: #b8b8b8;
  background: transparent;
  border: 1px solid transparent;
}
.header-search-autocomplete__ghost-prefix {
  visibility: hidden;
}
.header-search-autocomplete #ajax-search-input {
  position: relative;
  z-index: 2;
  background: transparent;
}

#ajax-search-result {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  z-index: 1000;
  max-height: 480px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
#ajax-search-result.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
#ajax-search-result mark {
  background: #fff3a3;
  padding: 0 2px;
  border-radius: 2px;
}

.ajax-search-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  text-decoration: none;
  color: #222;
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ajax-search-item:last-child {
  border-bottom: 0;
}
.ajax-search-item:hover, .ajax-search-item.is-active {
  background: #f7f7f7;
}
.ajax-search-item:active {
  transform: scale(0.995);
}
.ajax-search-item__image {
  flex: 0 0 60px;
}
.ajax-search-item__image img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.ajax-search-item__content {
  flex: 1;
  min-width: 0;
}
.ajax-search-item__name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.35;
}
.ajax-search-item__desc {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin-bottom: 6px;
}
.ajax-search-item__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.ajax-search-item__price {
  font-size: 13px;
  font-weight: 700;
}
.ajax-search-item__meta {
  font-size: 12px;
  color: #777;
}

.ajax-search-empty {
  padding: 14px;
  font-size: 14px;
  color: #666;
}

.ajax-search-all-results {
  display: block;
  padding: 12px 14px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #222;
  background: #fafafa;
  border-top: 1px solid #eee;
  transition: background 0.2s ease;
}
.ajax-search-all-results:hover {
  background: #f3f3f3;
}

/* Dark theme */
.theme--dark .header-search-autocomplete__ghost {
  color: #7f8794;
}
.theme--dark .header-search-autocomplete #ajax-search-input {
  color: #f3f4f6;
}
.theme--dark #ajax-search-result {
  background: #1c1f26;
  border-color: #2b313d;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.theme--dark #ajax-search-result mark {
  background: #5c4b16;
  color: #fff;
}
.theme--dark .ajax-search-item {
  color: #f3f4f6;
  border-bottom-color: #2b313d;
}
.theme--dark .ajax-search-item:hover, .theme--dark .ajax-search-item.is-active {
  background: #252b36;
}
.theme--dark .ajax-search-item__desc {
  color: #a6afbd;
}
.theme--dark .ajax-search-item__meta {
  color: #8f98a8;
}
.theme--dark .ajax-search-empty {
  color: #a6afbd;
}
.theme--dark .ajax-search-all-results {
  color: #f3f4f6;
  background: #20242d;
  border-top-color: #2b313d;
}
.theme--dark .ajax-search-all-results:hover {
  background: #2a303b;
}

.partnersWrap .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.0416666667vw;
}
@media screen and (max-width: 1000px) {
  .partnersWrap .wrapper {
    gap: 20px;
  }
}
.partnersWrap .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5208333333vw;
  background: transparent;
  transition: background 0.3s ease, transform 0.2s ease;
}
@media screen and (max-width: 1000px) {
  .partnersWrap .item a {
    border-radius: 10px;
  }
}
.partnersWrap .item a:hover {
  transform: translateY(-0.1041666667vw);
}
@media screen and (max-width: 1000px) {
  .partnersWrap .item a:hover {
    transform: translateY(-2px);
  }
}
.partnersWrap .iconWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partnersWrap .logoSVG {
  width: 6.25vw;
  height: 2.0833333333vw;
  fill: #ffffff;
  filter: grayscale(100%) brightness(0) invert(1);
  transition: filter 0.3s ease, transform 0.2s ease;
}
@media screen and (max-width: 1000px) {
  .partnersWrap .logoSVG {
    width: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .partnersWrap .logoSVG {
    height: 40px;
  }
}
.partnersWrap .item:hover .logoSVG {
  filter: none;
  fill: initial;
  transform: scale(1.05);
}

.custom-menu .custom-menu__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5625vw;
}
@media screen and (max-width: 1000px) {
  .custom-menu .custom-menu__list {
    gap: 30px;
  }
}
.custom-menu .custom-menu__link {
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1000px) {
  .custom-menu .custom-menu__link {
    font-size: 16px;
  }
}

/*# sourceMappingURL=stylesheet.css.map */
