:root {
  --secondary-background-color: #7f330c;
  --main-background-color: #fff;
  --accent-color: #ef8b2e;
  --main-text-color: #343434;
  --secondary-text-color: #fff;
  --color-accent: #ef8b2e;
  --color-text: #343434;
  --color-text-inverse: #fff;
  --top-text-color: #cecece;
  --text-md: 1.4rem;
  --text-sm: 1.2rem;
  --text-xs: 1.1rem;
}

html {
  height: 100%;
  font-size: 10px;
  overflow-x: clip;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

.header {
  position: relative;
  background-color: #2f2f2f;
  color: var(--top-text-color, #fff);
}

.header__texture-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  z-index: 0;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #2f2f2f;
  background-image: url(/uploads/background_vinokur96.webp);
  background-repeat: repeat;
  background-size: 36%;
  pointer-events: none;
}

.header__bottom {
  position: relative;
  background-color: #3d3d3d;
  isolation: isolate;
  height: 60px;
  align-content: center;
}

.header__bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #3d3d3d;
  background-image: url(/uploads/bg_still.webp);
  background-repeat: repeat;
  pointer-events: none;
}

.header__bottom > .container {
  position: relative;
  z-index: 2;
}

.wrapheader {
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, #fff0 0, #04040485 100%) no-repeat;
}

body .preloader {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  width: 100% !important;
  height: 3px !important;
  background: transparent !important;
  pointer-events: none !important;
  opacity: 1 !important;
  transition: opacity 0.2s ease !important;
  z-index: 1100 !important;
}

body .preloader.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

body .preloader.is-hidden .preloader__image-container::before {
  animation: none !important;
}

body .preloader__container {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
}

body .preloader__image-container {
  position: relative !important;
  width: 100% !important;
  height: 3px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.18) !important;
}

body .preloader__image-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  width: 35%;
  background: var(--color-accent, #d28b55);
  animation: storefront-loading-progress 1.15s ease-in-out infinite;
}

body .preloader__img,
body .preloader-text {
  display: none !important;
}

@keyframes storefront-loading-progress {
  0% {
    transform: translateX(0);
  }

  60%,
  100% {
    transform: translateX(385%);
  }
}

.header__top {
  min-height: 3.5rem;
}

.header-top,
.header-top__left,
.header-top__right,
.header-center,
.header__search-area,
.header__search-top,
.header__center-links,
.header-bottom,
.c-login,
.header__favorites-compare,
.compare,
.favorites_link-container,
.userlog-notify-container,
.c-cart__small {
  display: flex;
  align-items: center;
}

.header-top {
  justify-content: space-between;
}

.header__center .header-center {
  column-gap: 2rem;
}

.header-top__trailing:empty,
.header-mobile__trailing:empty {
  display: none;
}

.header-top__trailing:not(:empty) {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
  width: max-content;
  min-width: 0;
  overflow: visible;
}

.header-mobile__trailing:not(:empty) {
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 3;
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  width: calc(50% - 8rem + 30px);
  max-width: calc(50% - 8rem + 30px);
  min-width: 0;
  overflow: visible;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .header-top__trailing,
  .header-top__trailing:not(:empty) {
    display: none;
  }

  .header-mobile__trailing:not(:empty) {
    display: flex;
  }

  .header-mobile:has(.header-mobile__shadow._active) .header-mobile__phone {
    z-index: 2101;
  }

  .header-mobile__shadow-container {
    position: relative;
    background: var(--color-bg);
    color: var(--color-text);
    border-radius: 1.2rem;
    overflow: hidden;
  }
}

.header-top__auth-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-top__right .logout-button,
.header-top__right .header-top__action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.header-top__right .logout-button i,
.header-top__right .header-top__action-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.3rem;
  width: 1.3rem;
  min-width: 1.3rem;
  font-size: 1.3rem;
  line-height: 1;
}

@media (min-width: 1201px) {
  .header-center {
    min-height: var(--storefront-header-center-row-min-height, 20.8rem);
  }

  .header__logo {
    min-height: var(--storefront-header-logo-slot-min-height, 20.8rem);
  }
}

.header__center {
  width: 100%;
  padding: 1rem 0 0;
}

.header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 21rem;
  box-sizing: border-box;
  margin: 0;
  padding: 0 0 2rem 0.4rem;
  position: relative;
  z-index: 2;
  isolation: isolate;
  transform: translateZ(0);
}

.header-mobile__logo {
  position: relative;
  z-index: 2;
  isolation: isolate;
  transform: translateZ(0);
}

.header__logo > a,
.header__logo-link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.header__logo-mark,
.header-mobile__logo-mark {
  display: block;
  width: 16rem;
  max-width: 100%;
  height: 18.8rem;
  max-height: 18.8rem;
  aspect-ratio: 256 / 301;
  contain-intrinsic-size: 256px 301px;
  object-fit: contain;
}

.header__logo-mark {
  object-position: left center;
}

.header-mobile__logo-mark {
  max-width: 16rem;
  object-position: center center;
}

.header__search-area {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}

.header__search-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-height: 4.6rem;
  transform: translateY(-100%);
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #fff;
}

.header__search-top-line {
  min-height: 7.2rem;
  font-family: "Oranienbaum", serif;
  font-size: 6rem;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

.header__search-top-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 4.6rem;
}

.header__search-top-stack-line {
  font-size: 2.5rem;
  line-height: 1.2;
  font-family: "Oranienbaum", serif;
  color: #ef8b2e;
  text-transform: uppercase;
}

.header__search-top-stack-line1 {
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.c-search {
  position: relative;
  flex: 1 1 auto;
  max-width: 80rem;
  margin: 0 auto 1rem 0;
}

.c-search__container {
  position: relative;
}

.c-search__form {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  height: 4.6rem;
  padding: 1rem 4.6rem 1rem 2rem;
  border: 1px solid transparent;
  border-radius: 5px;
  background: #ffffff44;
}

.c-search__button {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  margin-top: -1.9rem;
  border-radius: 5px;
  background: var(--accent-color, #ef8b2e);
  color: var(--secondary-text-color, #fff);
}

.header__search-area .c-search__icon {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
  fill-rule: evenodd;
}

.header-tab__title,
a.header-tab__container {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.header__center-links {
  flex: 0 0 auto;
}

.c-login,
.userlog-notify-container {
  justify-content: center;
  flex: 0 0 5.4rem;
  width: 5.4rem;
  height: 4.6rem;
  margin: 0 0.5rem 0 0;
  box-sizing: border-box;
}

.header__favorites-compare {
  justify-content: center;
  flex: 0 0 auto;
  height: 4.6rem;
  margin: 0 0.5rem 0 0;
  box-sizing: border-box;
}

.compare,
.favorites_link-container {
  justify-content: center;
  flex: 0 0 5.4rem;
  width: 5.4rem;
  height: 4.6rem;
  box-sizing: border-box;
}

.header__cart {
  flex: 0 0 auto;
}

.c-cart__small {
  justify-content: center;
  flex: 0 0 auto;
  min-width: 13rem;
  width: auto;
  height: 4.6rem;
  box-sizing: border-box;
  padding: 0.5rem 2rem 0.5rem 1.5rem;
  border: 1px solid #ffffff44;
  border-radius: 5px;
  color: var(--color-text-inverse);
  text-decoration: none;
  white-space: nowrap;
}

.header__cart .c-cart__small--icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__cart .cart__image {
  margin: 0 1rem 0 0;
  display: block;
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.header__cart .c-cart__small--list,
.header__cart .cart-list {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  font-size: var(--text-md);
  line-height: 1.2;
  font-weight: 500;
}

.header__cart .c-cart__small--text {
  display: flex;
  margin: 0 0 0.2rem;
  padding: 0;
  font-size: var(--text-sm);
  line-height: 1.2;
  font-weight: 500;
  opacity: 0.8;
  color: var(--top-text-color);
}

.header__cart .c-cart__small--price {
  display: block;
  white-space: nowrap;
  font-size: var(--text-md);
  line-height: 1.2;
  color: var(--color-text-inverse);
}

.header__cart .js-cart-small-total,
.header__cart .c-cart__small--currency {
  display: inline;
}

.header-mobile-menu .header__cart .c-cart__small--price,
.header-mobile-menu .header__cart .js-cart-small-total,
.header-mobile-menu .header__cart .c-cart__small--currency,
.header-mobile-menu__links .header__cart .c-cart__small--price,
.header-mobile-menu__links .header__cart .js-cart-small-total,
.header-mobile-menu__links .header__cart .c-cart__small--currency {
  color: var(--color-text);
}

.header-bottom {
  min-height: 6rem;
  gap: 1rem;
}

.header-tabs {
  flex: 1 1 auto;
  min-width: 0;
}

.header-bottom__tools {
  display: none;
}

.js-transition-item.hidden[data-mobile="false"] {
  display: block;
}

.cart__count,
.countsht,
.compare__count,
.favorites__count,
.userlog-notify-count {
  position: absolute;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
}

@media (max-width: 1200px) {
  .header__top,
  .header__center {
    display: none;
  }

  .header-sticky__button svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
  }

  .header-sticky__button_favorites svg {
    fill: transparent;
    stroke: currentColor;
    stroke-width: 2;
  }
}

@media (min-width: 1201px) {
  .wrapper {
    overflow: visible;
  }

  .wrapper > .main {
    position: relative;
    z-index: 0;
  }

  .header__search-area .c-search .c-search__dropdown.wraper-fast-result,
  .header__search-area .c-search .wraper-fast-result,
  .header-bottom__search .c-search .c-search__dropdown.wraper-fast-result,
  .header-bottom__search .c-search .wraper-fast-result {
    overflow: visible;
  }

  .header__search-area .c-search .search-item,
  .header-bottom__search .c-search .search-item {
    z-index: 1;
  }

  .header__search-area .c-search .search-item:hover,
  .header-bottom__search .c-search .search-item:hover {
    z-index: 8;
  }

  .header-bottom__search .c-search__dropdown.wraper-fast-result,
  .header-bottom__search .c-search__dropdown {
    left: var(--header-bottom-search-dropdown-offset, 0);
    right: auto;
    width: var(--header-bottom-search-dropdown-width, 750px);
    min-width: var(--header-bottom-search-dropdown-width, 750px);
    max-width: var(--header-bottom-search-dropdown-width, 750px);
  }
}
