* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
  width: 100%;
  min-width: 320px;
  color: #000;
  background: #fff;
  font: 16px/120% "Open Sans", sans-serif;
  cursor: default;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  height: auto !important;
  min-height: 100%;
  height: 100%;
  position: relative;
}

html, body, div, applet, object, iframe, blockquote, pre, abbr, acronym, address, big, select, input, textarea,
cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dd, dl, dt, fieldset, form, label, legend, caption, h1, h2, h3, h4, h5 {
  font: 16px/120% "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
}

a img, :link img, :visited img {
  border: 0;
}

p {
  padding: 0px;
  margin: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}

a {
  cursor: pointer;
  outline: none;
  color: #000;
  text-decoration: none;
  font: 16px/120% "Open Sans", sans-serif;
}

a:hover {
  text-decoration: none;
}

.cl:after {
  content: "";
  display: block;
  clear: both;
}

.hand {
  cursor: pointer;
}

.display_none {
  display: none;
}

input, select, textarea, button {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: unset;
  border: unset;
}

textarea {
  outline: none;
  resize: none;
  overflow: auto;
}

ul {
  list-style: none;
}

/* site styles */
.cart, .good, .cat_block, .cat, .pay, .autorization, .footer, .main_news, .main_goods, .hero_slider, .top_banner, .header_bot {
  max-width: 1830px;
  padding: 0 15px;
  margin: 0 auto;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h2 {
  font-size: 52px;
  text-align: center;
  text-transform: uppercase;
}
h2.hidden {
  display: none;
}

h3 {
  font-size: 64px;
  font-weight: 600;
}

header {
  position: relative;
  z-index: 5;
}

.header_top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  background: #000;
  height: 60px;
  padding: 0 15px;
}
.header_top > div, .header_top > a {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.header_top > div > span, .header_top > a > span {
  font-weight: 600;
}
.header_top > div:before, .header_top > a:before {
  display: block;
  content: "";
  width: 37px;
  height: 37px;
  margin-right: 9px;
}
.header_top > div.ht_address:before, .header_top > a.ht_address:before {
  background: url(../images/ht_icon_1.png) center/cover no-repeat;
}
.header_top > div.ht_delivery:before, .header_top > a.ht_delivery:before {
  background: url(../images/ht_icon_2.png) center/cover no-repeat;
}
.header_top > div.ht_tel:before, .header_top > a.ht_tel:before {
  background: url(../images/ht_icon_3.png) center/cover no-repeat;
}

.header_middle {
  display: flex;
  justify-content: center;
  padding: 25px 15px 35px;
  max-width: 100%;
  overflow: hidden;
  overflow-y: visible;
}

.logo {
  display: block;
  max-width: 100%;
  font-size: clamp(56px, 6.2vw, 112px);
  line-height: 110%;
  font-family: "Krona One";
  text-align: center;
}
.logo > span {
  display: block;
  margin-top: 0.15em;
  font-size: 18px;
  line-height: 1.15;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  letter-spacing: clamp(0.08em, 0.8vw, 0.52em);
  text-align: center;
  white-space: normal;
  max-width: 100%;
}

.header_bot {
  padding: 0;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: #000;
  position: relative;
}

.h_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.h_cat {
  position: relative;
}

.h_cat_btn {
  width: 316px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.h_cat_popup {
  display: none;
  width: 300px;
  background: #000;
  padding: 25px 30px 25px 57px;
  position: absolute;
  left: 0;
  top: 100px;
}

.h_cat_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.h_cat_list > li > a {
  font-size: 24px;
  line-height: 110%;
  color: #fff;
  transition: 0.3s;
}
.h_cat_list > li > a:hover {
  opacity: 0.7;
}

.burger, .hc_burger {
  display: none;
  width: 25px;
  height: 20px;
  position: relative;
  margin-left: 15px;
  cursor: pointer;
}
.burger.opened span, .opened.hc_burger span {
  height: 0;
}
.burger.opened span:before, .opened.hc_burger span:before {
  top: 50%;
  transform: rotate(-45deg);
}
.burger.opened span:after, .opened.hc_burger span:after {
  top: 50%;
  transform: rotate(45deg);
}
.burger:hover, .hc_burger:hover {
  opacity: 0.7;
}
.burger span, .hc_burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 9px;
}
.burger span:before, .hc_burger span:before {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: -9px;
  transition: 0.3s;
}
.burger span:after, .hc_burger span:after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 9px;
  transition: 0.3s;
}

.hc_burger {
  display: block;
  position: relative;
  left: unset;
  top: unset;
}

.h_menu {
  width: 100%;
}
.h_menu > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 39px;
}
.h_menu > ul > li > a {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  transition: 0.3s;
}
.h_menu > ul > li > a:hover {
  opacity: 0.7;
}

.h_right {
  display: flex;
  gap: 45px;
  margin-right: 100px;
  position: relative;
}
.h_right a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
.h_right a:hover {
  opacity: 0.7;
}
.h_right a:before {
  display: block;
  content: "";
  width: 37px;
  height: 37px;
}
.h_right a.h_search_btn:before {
  background: url(../images/search.png) center/cover no-repeat;
}
.h_right a.h_cart:before {
  background: url(../images/cart.png) center/cover no-repeat;
}
.h_right a.h_cart {
  position: relative;
}
.cart-badge {
  position: absolute;
  right: -8px;
  top: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
}

/* Прячем основные секции каталога/товара пока store-front.js не отрендерит данные,
   чтобы пользователь не видел дефолтные заглушки HTML на 0.3-0.5 сек. */
.cat,
.cat_block,
.good {
  opacity: 0;
  transition: opacity 0.18s ease-out;
}
body.is-ready .cat,
body.is-ready .cat_block,
body.is-ready .good {
  opacity: 1;
}

.site-notice {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1000;
  max-width: min(360px, calc(100vw - 44px));
  padding: 16px 20px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.site-notice--warning {
  background: #8a5a00;
}
.h_search {
  position: relative;
}

.hs_popup {
  display: none;
  background: #fff;
  border: 1px solid #000;
  width: 400px;
  height: 50px;
  position: absolute;
  top: 77px;
  right: 0;
}
.hs_popup > input {
  display: block;
  width: calc(100% - 50px);
  height: 50px;
  background: unset;
  padding: 0 10px;
  font-size: 18px;
}

.hsp_go {
  width: 50px;
  height: 50px;
  background: #000 url(../images/search.png) center/20px no-repeat;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s;
}
.hsp_go:hover {
  background-size: 30px;
}

.top_banner {
  margin-top: 30px;
  max-width: 1110px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.top_banner h2 {
  text-transform: unset;
}

.hero_slider {
  max-width: 1110px;
  margin-top: 35px;
  box-sizing: border-box;
}

.hero_slider.is-empty {
  display: none;
}

.hs_block {
  position: relative;
  width: 100%;
  aspect-ratio: 1110 / 624;
  background: #adadad;
  overflow: hidden;
  user-select: none;
}

.hs_stage {
  position: absolute;
  inset: 0;
}

.hs_slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.hs_slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hs_slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hs_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.hs_arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.hs_arrow--prev { left: 14px; }
.hs_arrow--prev::before { transform: translateX(2px) rotate(-135deg); }
.hs_arrow--next { right: 14px; }
.hs_arrow--next::before { transform: translateX(-2px) rotate(45deg); }
.hs_arrow:hover { background: rgba(0, 0, 0, 0.85); }
.hs_arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.hs_dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.hs_dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background: #c9c9c9;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hs_dot:hover { background: #8a8a8a; }
.hs_dot.is-active {
  background: #000;
  transform: scale(1.25);
}
.hs_dot:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

.main_goods {
  max-width: 1240px;
  margin-top: 35px;
}


.mg_items {
  margin-top: 25px;
}

.mg_items_2x {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}

.mg_items_3x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
  margin-top: 55px;
}
.mg_items_3x .mgi_name {
  font-size: 52px;
}

.mg_item:hover .mgi_name {
  text-shadow: 0 0 4px #000;
}
.mg_item:hover .bgi_img > img, .mg_item:hover .mni_img > img {
  transform: scale(1.1);
}

.bgi_img, .mni_img {
  display: block;
  width: 100%;
  aspect-ratio: 57/43;
  background: #ADADAD;
  overflow: hidden;
}
.bgi_img > img, .mni_img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.mgi_name {
  display: block;
  font-size: 36px;
  line-height: 120%;
  margin-top: 10px;
  transition: 0.5s;
}

.mgi_price {
  display: block;
  font-size: 40px;
  line-height: 120%;
  font-weight: 600;
  margin-top: 5px;
}
.mgi_price > del {
  display: inline-block;
  font-weight: 300;
  font-size: inherit;
}

.main_news {
  max-width: 1240px;
  margin-top: 40px;
}

.mn_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 140px;
  margin-top: 35px;
}

.mn_item p {
  font-size: 24px;
  line-height: 140%;
  margin-top: 15px;
}

.mni_img {
  aspect-ratio: 5/3;
}

.mni_head {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.mni_name {
  font-size: 48px;
  font-weight: 700;
  flex: 1;
}

.mni_time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 6px 14px;
  flex-shrink: 0;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.2;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

footer {
  background: #000;
  margin-top: 75px;
  padding-top: 95px;
}

.f_top {
  display: flex;
  gap: 160px;
}
.f_top > div {
  display: flex;
  gap: 25px;
}

.ft_logo_dev {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.f_logo {
  font-size: 36px;
  line-height: 120%;
  font-family: "Krona One";
  color: #fff;
}

.f_dev {
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}
.f_dev:hover {
  text-decoration: underline;
}

.ft_contacts {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.f_tel {
  font-size: 18px;
  line-height: 120%;
  color: #fff;
}

.f_address {
  font-size: 18px;
  line-height: 120%;
  color: #fff;
}

.f_socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
.f_socials > a {
  display: block;
  width: 44px;
  height: 44px;
  transition: 0.3s;
}
.f_socials > a:hover {
  opacity: 0.7;
}
.f_socials > a.fs_1 {
  background: url(../images/fs_1.png) center/cover no-repeat;
}
.f_socials > a.fs_2 {
  background: url(../images/fs_2.png) center/cover no-repeat;
}
.f_socials > a.fs_3 {
  background: url(../images/fs_3.png) center/cover no-repeat;
}

.f_colls {
  display: flex;
  gap: 25px;
}

.fc_head {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.fc_head.mt {
  margin-top: 20px;
}

.fc_list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fc_list > li > a {
  font-size: 14px;
  line-height: 120%;
  color: #fff;
}
.fc_list > li > a:hover {
  text-decoration: underline;
}

.fc_item {
  margin-bottom: 10px;
}

.fci_head {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.fci_email {
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  text-decoration: underline;
}
.fci_email:hover {
  text-decoration: none;
}

.fci_tg {
  font-size: 18px;
  line-height: 120%;
  color: #fff;
}
.fci_tg:hover {
  text-decoration: underline;
}

.f_pay_block {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin: 20px 0;
}

.f_pay {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  transform: translateY(-45px);
}
.f_pay > a, .f_pay > span {
  transition: 0.3s;
}
.f_pay > a > img, .f_pay > span > img {
  display: block;
}
.f_pay > a:hover {
  opacity: 0.7;
}

.f_copy {
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.autorization {
  max-width: 960px;
  margin-top: 40px;
}
.autorization h2 {
  font-size: 72px;
  text-transform: none;
}

.a_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 100px;
}

.af_input {
  width: 100%;
  height: 80px;
  background: #000;
  padding: 0 40px;
  font-size: 48px;
  color: #fff;
}

.af_submit {
  max-width: 350px;
  width: 100%;
  height: 80px;
  background: #000;
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  margin-top: 25px;
  transition: 0.3s;
}
.af_submit:hover {
  opacity: 0.7;
}

.af_reg {
  font-size: 25px;
}
.af_reg:hover {
  text-decoration: underline;
}

.pay {
  margin-top: 35px;
}
.pay h2 {
  text-align: left;
  font-size: 40px;
  font-weight: 700;
  text-transform: none;
}

.p_text {
  font-size: 40px;
  padding-left: 50px;
  line-height: 130%;
  margin-top: 5px;
}

.p_btn {
  display: block;
  max-width: 690px;
  width: 100%;
  height: 110px;
  background: #000;
  margin: 60px auto 0;
  font-size: 40px;
  line-height: 110px;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
.p_btn:hover {
  opacity: 0.7;
}

.content-page {
  margin-top: 35px;
  max-width: 920px;
}
.content-page h2 {
  text-align: left;
  font-size: 40px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 12px;
}
.content-page h3 {
  font-size: 26px;
  margin-top: 28px;
  font-weight: 700;
}
.content-page p,
.content-page li {
  font-size: 20px;
  line-height: 140%;
  margin-top: 10px;
}
.content-page ul {
  list-style: disc;
  padding-left: 28px;
  margin-top: 8px;
}

.cat {
  margin-top: 35px;
}

h2 {
  font-size: 48px;
  text-transform: none;
}

.cat_filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 1100px;
  margin: 30px auto 0;
}
.cat_filter > input,
.cat_filter > select,
.cat_filter > button,
.cat_filter .cat_price_dropdown {
  height: 54px;
  background: #000;
  color: #fff;
  padding: 0 14px;
  font-size: 20px;
}
.cat_filter > input::placeholder {
  color: #b9b9b9;
}
.cat_filter > button {
  cursor: pointer;
}
.cat_price_dropdown {
  position: relative;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.cat_price_trigger {
  font: inherit;
  height: 54px;
  min-width: 140px;
  padding: 0 18px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s;
}
.cat_price_trigger:hover {
  opacity: 0.85;
}
.cat_price_panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(360px, 92vw);
  background: #000;
  color: #fff;
  border: 1px solid #444;
  padding: 16px 18px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}
.cat_price_panel[hidden] {
  display: none !important;
}
.price-popup-head {
  font-size: 15px;
  margin-bottom: 10px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-popup-values {
  font-size: 18px;
  margin-bottom: 12px;
  text-align: center;
}
.range-wrap {
  position: relative;
  height: 36px;
  margin-top: 8px;
}
.range-track-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  background: #333;
  border-radius: 2px;
  pointer-events: none;
}
.range-track-active {
  position: absolute;
  left: 0;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  background: #fff;
  border-radius: 2px;
  pointer-events: none;
  min-width: 2%;
}
.range-wrap input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 36px;
  margin: 0;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  cursor: grab;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.range-wrap input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #000;
  cursor: grab;
}
.cat-filter-select {
  appearance: none;
  -webkit-appearance: none;
  background: #000;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  text-align-last: center;
  box-sizing: border-box;
  height: 54px;
  line-height: 54px;
  transition: width 0.28s ease, padding 0.28s ease;
}
.cat-filter-select--bar {
  width: 200px;
  padding: 0 14px;
}
.cat-filter-select--square {
  width: 54px;
  padding: 0;
}

/*	styles for select*/
.selectbox {
  width: 100%;
  vertical-align: middle;
  /* min-width: 160px;
  &:nth-child(1){
    min-width: 420px;
  } */
  cursor: pointer;
}
.selectbox .select {
  width: 100%;
  height: 70px;
  padding: 0 60px 0 20px;
  background: #000;
  position: relative;
}
.selectbox .select:after {
  display: block;
  content: "";
  width: 39px;
  height: 39px;
  background: url(../images/select.png) center/cover no-repeat;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.selectbox .select .text {
  display: block;
  color: #fff;
  font-size: 36px;
  line-height: 70px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  user-select: none;
}
.selectbox ul.dropdown {
  top: 70px;
  width: 100%;
  margin: 0;
  background: #000;
}
.selectbox ul.dropdown li {
  font-size: 36px;
  line-height: 110%;
  color: #fff;
  padding: 5px 10px 5px;
  /*&:first-child{
  	display: none;
  }*/
}
.selectbox ul.dropdown li:hover, .selectbox ul.dropdown li.selected {
  background: #FBF5ED;
  color: #000;
}
.selectbox ul.dropdown li.disabled {
  color: #AAA;
}

.cat_block {
  margin-top: 50px;
}

.cat_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 75px;
}

.cat_item {
  display: block;
}
.cat_item:hover img {
  transform: scale(1.1);
}
.cat_item:hover .ci_name {
  text-shadow: 0 0 3px #000;
}

.ci_img {
  display: block;
  width: 100%;
  aspect-ratio: 40/46;
  overflow: hidden;
}
.ci_img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.ci_name {
  display: block;
  font-size: 40px;
  line-height: 110%;
  margin-top: 20px;
  transition: 0.5s;
}

.ci_price {
  display: block;
  font-size: 35px;
  line-height: 120%;
  font-weight: 600;
  margin-top: 5px;
}

.listing {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 60px;
  list-style: none;
  padding: 0;
}
.listing > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  background: #000;
  font-size: 48px;
  line-height: 1;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: background-color 0.3s ease, color 0.3s ease, outline-color 0.3s ease, transform 0.25s ease, opacity 0.2s ease;
}
.listing > li > a:hover {
  opacity: 0.75;
}
.listing > li > a.listing-current {
  background: #fbf5ed;
  color: #000;
  outline-color: #000;
  pointer-events: none;
  transform: scale(1.06);
}

.good {
  max-width: 1630px;
  margin-top: 95px;
}

.g_top {
  display: flex;
  gap: 60px;
}

.goods_slider_block {
  max-width: 650px;
}

.gallery {
  position: relative;
  width: 100%;
}
.gallery-stage {
  width: 100%;
  aspect-ratio: 57 / 43;
  overflow: hidden;
  background: #adadad;
  border: none;
}
.gallery-stage > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.25s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.gallery-arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.gallery-arrow--prev { left: 14px; }
.gallery-arrow--prev::before { transform: translateX(2px) rotate(-135deg); }
.gallery-arrow--next { right: 14px; }
.gallery-arrow--next::before { transform: translateX(-2px) rotate(45deg); }
.gallery-arrow:hover:not(:disabled) { background: rgba(0, 0, 0, 0.85); }
.gallery-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 88px;
  height: 88px;
  padding: 0;
  border: 2px solid transparent;
  background: #adadad;
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.gallery-thumb > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb.is-active {
  border-color: #000;
  transform: scale(1.03);
}

.g_info {
  flex: 1;
}

.gi_class {
  font-size: 28px;
  color: #8A8A8A;
}

.gi_price {
  font-size: 36px;
  margin-top: 6px;
}

.gis_head {
  font-size: 48px;
  margin-top: 90px;
}

.gis_items {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.gis_items > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  width: max-content;
  max-width: 100%;
  padding: 0 14px;
  aspect-ratio: 1;
  box-sizing: border-box;
  background: #000;
  font-size: 28px;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  transition: min-width 0.25s ease, min-height 0.25s ease, padding 0.25s ease;
}
.gis_items > a.good-size-item.is-active {
  background: #fff;
  color: #000;
}
.gis_items > a.good-size-item.is-disabled {
  background: #8d8d8d;
  color: #fff;
  pointer-events: none;
}
.gis_items > a:hover {
  opacity: 0.7;
}

.gi_table {
  display: inline-block;
  font-size: 20px;
  line-height: 120%;
  text-decoration: underline;
  margin-top: 10px;
}
.gi_table:hover {
  text-decoration: none;
}

.g_add {
  display: block;
  max-width: 410px;
  width: 100%;
  height: 70px;
  margin-top: 90px;
  background: #000;
  font-size: 36px;
  line-height: 70px;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
.g_add:hover {
  opacity: 0.7;
}

.g_bot {
  margin-top: 40px;
}

.gb_head {
  font-size: 64px;
  font-weight: 600;
}

.gb_lines {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gb_line {
  display: flex;
  gap: 5px;
}
.gb_line > div {
  font-size: 36px;
}

.cart {
  margin-top: 50px;
}
.cart h2 {
  font-size: 80px;
}

.cart_items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 70px;
}

.cart_item {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #f3f3f3;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 14px;
}

.cti_img {
  width: 150px;
  aspect-ratio: 1/1;
}
.cti_img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cti_text {
  flex: 1;
  max-width: 760px;
  min-height: 120px;
}

.cti_name {
  font-size: 30px;
  font-weight: 700;
}

.cti_size {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  color: #777;
}

.cti_price {
  font-size: 28px;
  margin-top: 8px;
}
.cti_price > del {
  font-size: inherit;
}

.cti_less {
  display: inline-block;
  background: #000;
  padding: 2px 5px;
  font-size: 32px;
  color: #fff;
  margin-top: 15px;
}

.counter {
  display: flex;
  width: 170px;
  height: 55px;
  background: #B8B8B8;
}
.counter a {
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 30px;
  line-height: 55px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  transition: 0.3s;
}
.counter a:hover {
  color: #646363;
}
.counter input {
  display: block;
  width: 60px;
  height: 55px;
  text-align: center;
  background: none;
  font-size: 40px;
}

.cart_bot {
  margin-top: 110px;
}

.cart_total {
  font-size: 48px;
}

.cart_order {
  display: block;
  max-width: 560px;
  width: 100%;
  height: 80px;
  background: #000;
  font-size: 48px;
  line-height: 80px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  margin-top: 18px;
  transition: 0.3s;
}
.cart_order:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 1600px) {
  .cat_items {
    gap: 40px 15px;
  }
  .ci_name {
    font-size: 25px;
    margin-top: 5px;
  }
  .ci_price {
    font-size: 22px;
  }
} /*1600*/
@media only screen and (max-width: 1550px) {
  .f_pay {
    transform: unset;
  }
} /*1550*/
@media only screen and (max-width: 1400px) {
  .h_cat_btn {
    width: 250px;
  }
  .h_menu > ul {
    gap: 30px;
  }
  .h_menu > ul > li > a {
    font-size: 18px;
  }
  .h_right {
    margin-right: 25px;
    gap: 20px;
  }
} /*1400*/
@media only screen and (max-width: 1300px) {
  h3 {
    font-size: 48px !important;
  }
  footer {
    padding-top: 50px;
  }
  .f_top {
    gap: 40px;
    justify-content: space-between;
  }
  .ft_1 {
    flex-direction: column;
  }
  .g_top {
    gap: 30px;
  }
  .goods_slider_block {
    width: calc(50% - 15px);
    max-width: unset;
  }
  .g_info {
    width: calc(50% - 15px);
  }
} /*1300*/
@media only screen and (max-width: 1200px) {
  .mn_items {
    gap: 30px;
  }
  .selectbox .select {
    height: 40px;
    padding: 0 35px 0 10px;
  }
  .selectbox .select:after {
    width: 18px;
    height: 18px;
  }
  .selectbox .select .text {
    font-size: 20px;
    line-height: 40px;
  }
  .selectbox ul.dropdown {
    top: 40px;
  }
  .selectbox ul.dropdown li {
    font-size: 16px;
    padding: 3px 10px;
  }
} /*1200*/
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 40px !important;
  }
  h3 {
    font-size: 34px !important;
  }
  .header_top {
    height: 40px;
    gap: 25px;
  }
  .header_top > div, .header_top > a {
    font-size: 14px;
  }
  .header_top > div:before, .header_top > a:before {
    width: 24px;
    height: 24px;
  }
  .header_middle {
    padding: 15px;
    justify-content: center;
  }
  .logo {
    flex: 1 1 auto;
    font-size: clamp(40px, 12dvw, 92px);
  }
  .logo > span {
    font-size: clamp(10px, 2.3dvw, 16px);
    letter-spacing: clamp(0.04em, 0.7dvw, 0.22em);
  }
  .header_bot {
    height: 50px;
  }
  .burger, .hc_burger {
    display: block;
  }
  .h_block {
    display: none;
    min-width: 220px;
    flex-direction: column;
    background: #000;
    position: absolute;
    padding: 20px 15px;
    top: 50px;
    left: 0;
  }
  .h_menu {
    order: 1;
  }
  .h_menu > ul {
    flex-direction: column;
    gap: 10px;
  }
  .h_menu > ul > li > a {
    font-size: 16px;
  }
  .h_cat {
    order: 2;
  }
  .h_cat_btn {
    width: unset;
    height: unset;
    pointer-events: none;
    font-size: 20px;
    margin: 20px 0 10px;
    gap: 4px;
  }
  .h_cat_btn:after {
    display: block;
    content: ":";
  }
  .hc_burger {
    display: none;
  }
  .h_cat_popup {
    display: block;
    width: unset;
    position: static;
    padding: 0;
    background: unset;
  }
  .h_cat_list {
    gap: 10px;
  }
  .h_cat_list > li {
    text-align: center;
  }
  .h_cat_list > li > a {
    font-size: 16px;
    text-align: center;
  }
  .h_right a {
    font-size: 14px;
  }
  .h_right a:before {
    width: 24px;
    height: 24px;
  }
  .mgi_name {
    font-size: 26px !important;
  }
  .mgi_price {
    font-size: 20px;
  }
  .mg_items_2x {
    gap: 15px;
  }
  .mg_items_3x {
    gap: 15px;
    margin-top: 35px;
  }
  .mn_items {
    margin-top: 20px;
    gap: 20px;
  }
  .mn_item p {
    font-size: 18px;
    margin-top: 10px;
  }
  .mni_head {
    margin-top: 10px;
  }
  .mni_name {
    font-size: 28px;
  }
  .mni_time {
    font-size: 18px;
    padding: 5px 10px;
  }
  footer {
    padding-top: 30px;
    margin-top: 40px;
  }
  .f_top {
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
  }
  .ft_1 {
    flex-direction: row;
    justify-content: space-between;
  }
  .hs_popup {
    top: 45px;
  }
  .hs_popup > input {
    font-size: 16px;
  }
  .a_form {
    margin-top: 30px;
  }
  .p_text {
    font-size: 34px;
    padding-left: 0;
  }
  .cat_items {
    grid-template-columns: repeat(3, 1fr);
  }
  .listing {
    margin-top: 40px;
  }
  .listing > li > a {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }
  .good {
    margin-top: 40px;
  }
  .gi_class {
    font-size: 18px;
  }
  .gi_price {
    font-size: 26px;
  }
  .gis_head {
    margin-top: 35px;
    font-size: 25px;
  }
  .gis_items {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  .gis_items > a {
    min-width: 44px;
    min-height: 44px;
    width: max-content;
    font-size: 22px;
    line-height: 1.1;
  }
  .g_add {
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    margin-top: 30px;
  }
  .gb_head {
    font-size: 40px;
  }
  .gb_line {
    gap: 3px;
  }
  .gb_line > div {
    font-size: 25px;
  }
  .cart_items {
    margin-top: 40px;
    gap: 20px;
  }
  .cti_img {
    width: 100px;
  }
  .cti_text {
    min-height: 100px;
  }
  .cti_name {
    font-size: 24px;
  }
  .cti_price {
    font-size: 20px;
  }
  .cti_less {
    font-size: 20px;
    margin-top: 10px;
  }
  .counter {
    width: 120px;
    height: 35px;
  }
  .counter a {
    width: 35px;
    height: 35px;
    font-size: 20px;
    line-height: 35px;
  }
  .counter input {
    width: 50px;
    height: 35px;
    font-size: 25px;
  }
  .cart_bot {
    margin-top: 50px;
  }
  .cart_total {
    font-size: 30px;
  }
  .cart_order {
    height: 50px;
    max-width: 400px;
    font-size: 26px;
    line-height: 50px;
  }
} /*1024*/
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 26px !important;
  }
  .top_banner {
    margin-top: 20px;
    gap: 10px;
  }
  .hero_slider {
    margin-top: 20px;
  }
  .hs_arrow {
    width: 40px;
    height: 40px;
  }
  .hs_arrow::before {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
  .hs_arrow--prev { left: 8px; }
  .hs_arrow--next { right: 8px; }
  .hs_dot {
    width: 10px;
    height: 10px;
  }
  .hs_dots {
    gap: 8px;
    margin-top: 12px;
  }
  .a_form {
    gap: 10px;
    margin-top: 10px;
  }
  .af_input {
    height: 40px;
    padding: 0 15px;
    font-size: 24px;
  }
  .af_submit {
    height: 40px;
    font-size: 24px;
    margin-top: 10px;
  }
  .p_text {
    font-size: 24px;
  }
  .p_btn {
    height: 60px;
    font-size: 24px;
    line-height: 60px;
    margin-top: 20px;
  }
  .cat_items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px 10px;
  }
  .ci_name {
    font-size: 16px;
  }
  .ci_price {
    font-size: 14px;
    margin-top: 3px;
  }
  .g_top {
    flex-direction: column;
  }
  .goods_slider_block {
    width: 100%;
  }
  .g_info {
    width: 100%;
  }
  .gb_head {
    font-size: 30px;
  }
  .g_add {
    max-width: 100%;
    font-size: 24px;
  }
  .gb_line > div {
    font-size: 20px;
  }
  .cart {
    margin-top: 30px;
  }
  .cart_items {
    margin-top: 30px;
  }
} /*768*/
@media only screen and (max-width: 680px) {
  .header_top {
    height: unset;
    padding: 10px 15px;
    flex-direction: column;
    gap: 5px;
  }
  .mn_items {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .f_colls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
  }
  .f_pay_block {
    justify-content: center;
    margin: 20px 0 5px;
  }
  .cat_filter {
    flex-direction: column;
    align-items: stretch;
  }
  .cart_item {
    flex-wrap: wrap;
  }
  .cti_text {
    min-width: 100%;
    order: 3;
  }
} /*680*/
@media only screen and (max-width: 580px) {
  .mg_items {
    margin-top: 15px;
  }
  .mg_items_2x {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .mg_items_3x {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .mgi_name {
    font-size: 22px !important;
    margin-top: 5px;
  }
  .mgi_price {
    font-size: 18px;
  }
  .ft_1 {
    flex-direction: column;
  }
  .fc_head {
    font-size: 20px;
  }
  .fci_head {
    font-size: 16px;
  }
  .fci_email {
    font-size: 14px;
  }
  .fci_tg {
    font-size: 14px;
  }
  .h_search {
    position: static;
  }
  .hs_popup {
    width: 100dvw;
    right: -25px;
  }
  .listing {
    margin-top: 30px;
  }
  .listing > li > a {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
} /*580*/
@media only screen and (max-width: 480px) {
  .p_text br {
    display: none;
  }
  .cart_total {
    font-size: 24px;
  }
} /*480*/

.as-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.as-modal-backdrop.is-open {
  display: flex;
}
.as-modal {
  background: #fffaf4;
  color: #111;
  border: 2px solid #000;
  max-width: 480px;
  width: 100%;
  padding: 28px 26px 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}
.as-modal h3 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 0 0 8px;
}
.as-modal-note {
  font-size: 15px;
  color: #444;
  margin: 0 0 18px;
  line-height: 1.4;
}
.as-modal-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.as-modal-fields label span {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.as-modal-fields input,
.as-modal-fields textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #000;
  background: #fff;
  font-family: inherit;
}
.as-modal-fields textarea {
  min-height: 88px;
  resize: vertical;
}
.as-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.as-btn-black {
  font: inherit;
  cursor: pointer;
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 18px;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.as-btn-black:hover {
  opacity: 0.85;
}
.as-btn-ghost {
  font: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  text-decoration: underline;
  color: #333;
}

button.cart_order {
  cursor: pointer;
  border: none;
  font: inherit;
  font-family: "Krona One", sans-serif;
}

.size-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.size-modal-backdrop.is-open {
  display: flex;
}
.size-modal {
  background: #fff;
  border: 2px solid #000;
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow: auto;
  padding: 22px 22px 18px;
}
.size-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.size-modal-head > h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
}
.size-modal-close {
  width: 36px;
  height: 36px;
  border: 1px solid #000;
  font-size: 26px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
}
.size-table-grid {
  width: 100%;
  border-collapse: collapse;
}
.size-table-grid th,
.size-table-grid td {
  border: 1px solid #d6d6d6;
  padding: 10px 12px;
  text-align: left;
  font-size: 16px;
}
.size-table-grid th {
  background: #f5f5f5;
  font-weight: 700;
}
.size-table-note {
  margin-top: 12px;
  font-size: 14px;
  color: #4a4a4a;
}

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