@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/static/Geologica-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/static/Geologica-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/static/Geologica-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica/static/Geologica-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/Oswald-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/Oswald-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald/Oswald-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Halvar";
  src: url("../fonts/HalvarEn/HalvarEng-Lt.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Halvar";
  src: url("../fonts/HalvarEn/HalvarEng-Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Halvar";
  src: url("../fonts/HalvarEn/HalvarEng-Md.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Halvar";
  src: url("../fonts/HalvarEn/HalvarEng-Blk.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", "Halvar", Arial, sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 14px 0 0;
}

.hero {
  width: min(100%, 390px);
  padding: 0;
  position: relative;
  left: +0px;
}

.hero__inner {
  min-height: 533px;
  border-radius: 20px;
  background-image: url("../img/bg2_mob.jpg?v2");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 10px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  overflow: hidden;
  box-shadow: 0 20px 24px rgba(0, 0, 0, 0.45);
  position: relative;
  isolation: isolate;
}

.header_bottom {
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -15px;
  height: 72px;
}
.header_bottom::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 0;
  height: 72px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 7%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 1) 50%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 7%, rgba(0, 0, 0, 0.4) 10%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 1) 50%);
  z-index: 0;
  pointer-events: none;
}

.hero__inner > * {
  position: relative;
  z-index: 1;
}

.topbar {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 13px;
}

.menu__link {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.menu__link--discount {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu__link--discount img {
  width: 21px;
  height: 13px;
  display: block;
}

.promo {
  width: 145px;
  max-width: 100%;
}

.promo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__content {
  width: 100%;
  max-width: 358px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}

.hero__title {
  margin: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.hero__subtitle {
  margin: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: "Geologica", "Halvar", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.34;
  letter-spacing: 0.01em;
}

.cta {
  border-radius: 29px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 6px 6px 18px;
  text-decoration: none;
  color: #000;
}

.cta__label {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 36.28px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transform: translateY(-2px);
}

.cta__icon {
  width: 51.7px;
  height: 65.3px;
  border-radius: 21.8px;
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta__icon img {
  width: 11.9px;
  height: 11.05px;
}

.shipping {
  min-height: 26px;
  border-radius: 40px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 7px;
  text-align: center;
}

.shipping span,
.shipping__extra {
  font-family: "Geologica", "Halvar", sans-serif;
  text-transform: lowercase;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.shipping span {
  font-size: 11px;
  font-weight: 400;
}

.shipping__extra {
  display: none;
  font-size: 11px;
  font-weight: 200;
}

.page {
  width: min(100%, 390px);
  padding: 0 6px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.products-showcase {
  width: 100%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.products-showcase__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.products-showcase__title {
  margin: 0;
  width: 100%;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.products-showcase__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.products-showcase__card {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-showcase__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.products-showcase + .discount-form {
  margin-top: 20px;
}

.discount-form {
  background: #fff;
  border-radius: 20px;
  color: #000;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: -39px;
  z-index: 3;
}

.discount-form__head {
  width: 100%;
  max-width: 358px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.discount-form__small {
  margin: 0;
  font-family: "Halvar", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.39;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.discount-form__title {
  margin: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-family: "Geologica", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.discount-form__promo {
  width: 268px;
  height: auto;
}

.discount-form__card {
  width: 100%;
  max-width: 358px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.discount-form__conditions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.discount-form__conditions h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
}

.condition-item {
  margin: 0;
  background: #f2f2f2;
  border-radius: 15px;
  padding: 5px 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
}

.condition-item span.smblock {
  opacity: 0.6;
  font-size: 11px;
  line-height: 1.4;
  display: block;
}

.lead-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.lead-field span {
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  color: #242424;
}

.lead-field input {
  width: 100%;
  height: 35.5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 9px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #333;
  outline: none;
}

.lead-field input:focus {
  border-color: #242424;
}

.lead-field input::placeholder {
  color: #333;
  opacity: 0.5;
}

.lead-form__submit {
  width: 100%;
  height: 45px;
  border: 2px solid #242424;
  border-radius: 12px;
  background: #242424;
  color: #fff;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.lead-form__submit:disabled {
  opacity: 0.7;
  cursor: default;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup.is-open {
  display: flex;
}

.popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.popup__dialog {
  position: relative;
  z-index: 1;
  width: min(400px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: clamp(20px, 5vw, 30px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.popup__title {
  margin: 0;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  color: #000;
}

.popup__text {
  margin: 0;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #333;
}

.popup__button {
  width: 100%;
  max-width: 340px;
  align-self: stretch;
  border: 2px solid #242424;
  border-radius: 12px;
  background: #242424;
  color: #fff;
  padding: 13px 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
  text-align: center;
}

.popup__button:disabled {
  opacity: 0.8;
  cursor: default;
}

.popup .lead-form {
  width: 100%;
  max-width: 340px;
  gap: 14px;
}

.popup .lead-field span {
  font-size: 14px;
}

.popup .lead-field input {
  height: 43.5px;
  font-size: 14px;
  padding: 12px 12px 12.5px;
}

.popup .lead-form__submit {
  height: 60px;
  font-size: 20px;
  padding: 13px 0;
}

.popup__content {
  width: 100%;
}

.popup__content[hidden] {
  display: none;
}

.popup__content--catalog {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.popup__content--message {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.popup__content--message .popup__title {
  margin: 0;
}

.popup__content--message .popup__text {
  margin: 0;
  line-height: 1.35;
}

.popup__content--message .popup__button {
  margin-top: 6px;
}

.popup__title--catalog {
  margin: 0;
}

.popup .lead-form--popup {
  max-width: 340px;
  align-self: center;
}


.footer {
  border-radius: 20px;
  padding: 20px 10px;
  background-color: rgba(255, 255, 255, 0.2);
  max-width: 1058px;
  width: 100%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer .menu{
  flex-wrap: wrap;
}
@media screen and (min-width: 786px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer{
    padding: 30px;
  }
}


.simple_page{
  width: 100%;
}
.simple_page__content{
  max-width: 1058px;
  width: 100%;
  padding: 20px;
  color: #000;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 20px;
}
