@charset "UTF-8";
:root {
  --white-color: #ffffff;
  --gray-100: #222222;
  --gray-200: #282829;
  --gray-400: #55565a;
  --gray-600: #d6d6d6;
  --gray-800: #f1f1f1;
  --blue: #b176d4;
  --bg-color: var(--gray-100);
  --text-color: var(--gray-800);
  --border-color: var(--gray-400);
  --input-border-color: var(--gray-400);
  --primary-color: var(--blue);
  --text-secondary: var(--gray-400);
  --header-bg: var(--gray-200);
  --border-radius: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  /* buttons */
  --btn-border-radius: var(--border-radius);
  --btn-font-size: 16px;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10px;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  /* header */
  --header-h: 50px;
  --header-padding: 10px;
}
@media (min-width: 992px) {
  body {
    --header-h: 70px;
  }
}

.hidden {
  overflow: hidden;
}

section:first-child {
  padding-top: calc(var(--header-h) + 50px);
}
@media (min-width: 768px) {
  section:first-child {
    padding-top: calc(var(--header-h) + 60px);
  }
}

button {
  outline: none;
  border: none;
}

ul li {
  list-style: none;
}

.list {
  margin-bottom: 20px;
}

.list li::before {
  content: "•";
  color: var(--primary-color);
  margin-right: 10px;
}

a {
  display: inline-block;
  text-decoration: none;
  color: var(--text-color);
}

.container {
  --container-padding: 20px;
  max-width: calc(1060px + 3 * var(--container-padding));
  padding: 0 var(--container-padding);
  margin: auto;
}

.section {
  --pad-top: 60px;
  padding-top: var(--pad-top);
  padding-bottom: calc(var(--pad-top) * 1.4);
}

.mw-100 {
  max-width: 100%;
}

.mw-50 {
  max-width: 49%;
}

.mw-600 {
  max-width: 600px;
}

.mw-800 {
  max-width: 800px;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-24 {
  margin-top: 24px;
}

p {
  margin-bottom: 12px;
}

.title-wrap {
  margin-bottom: calc(var(--pad-top) * 0.5);
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--text-secondary);
}

.link {
  color: var(--primary-color);
  text-decoration: underline;
}

@font-face {
  font-family: "Unbounded";
  src: local("Unbounded");
  src: url(assets/font/Unbounded/Unbounded-VariableFont_wght.ttf);
}
h1,
h2,
h3 {
  text-wrap: balance;
  font-family: "Unbounded", serif;
}

@font-face {
  font-family: "Inter";
  src: local("Inter");
  src: url(assets/font/Inter/Inter-VariableFont_opsz,wght.ttf);
}
body {
  font-family: "Inter", sans-serif;
}

h1,
.h1 {
  font-size: 30px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}

h2,
.h2 {
  font-size: 26px;
  line-height: 110%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}

h3 {
  margin-bottom: 12px;
}

.subtitle {
  font-size: 20px;
  line-height: 120%;
}
@media (min-width: 768px) {
  .subtitle {
    font-size: 26px;
  }
}

p,
a {
  font-size: 16px;
}
@media (min-width: 768px) {
  p,
  a {
    font-size: 18px;
  }
}

.fw-600 {
  font-weight: 600;
}

.gap-8-to-20 {
  --gap: 8px;
}
@media (min-width: 768px) {
  .gap-8-to-20 {
    --gap: 20px;
  }
}

.align-items-center {
  align-items: center;
}

.grid {
  display: grid;
  grid-gap: var(--gap, 20px);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-2-4 {
  --gap: 8px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .grid-2-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 576px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media (min-width: 576px) {
  .img-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .img-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.img-fill {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.br {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.br-md {
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.br-lg {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.button {
  cursor: pointer;
  line-height: 1;
  font-size: var(--btn-font-size);
  border-radius: var(--btn-border-radius);
  font-weight: 600;
  color: white;
  padding: 16px 42px;
  margin: 6px 0;
  text-align: center;
  max-width: 100%;
}
.button:hover {
  opacity: 0.9;
  transition: opacity 0.3s;
}
.button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .button {
    width: 100%;
  }
}

.button-primary {
  background-color: var(--primary-color);
}

.button-secondary {
  background-color: var(--text-secondary);
}

.header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: var(--header-padding) 0;
  background: var(--header-bg);
  transition: transform 0.3s ease-in-out;
}
.header.header--hide {
  transform: translateY(-100%);
}
.header.header--show {
  transform: translateY(0);
}

.logo {
  height: calc(var(--header-h) - 2 * var(--header-padding));
}
@media (min-width: 769px) {
  .logo {
    width: 60px;
    height: auto;
  }
}

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

.nav-menu {
  --padding-link: 5px;
  display: flex;
  gap: calc(30px - 2 * var(--padding-link));
}

.nav-menu__link {
  color: orange;
  padding: var(--padding-link);
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}
.nav-menu__link:hover {
  color: var(--primary-color);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.form__input {
  padding: 12px 16px;
  font-family: "Inter";
  border-radius: var(--border-radius);
  border-width: 1px;
}

.footer {
  padding: 60px 0;
  background: var(--header-bg);
}
.footer__contacts-wrap {
  margin-bottom: 32px;
}
.footer__contacts-wrap h3 {
  color: orange;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .footer-link {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.footer .footer-link:hover {
  color: var(--primary-color);
}

.burger {
  --burger-color: var(--primary-color);
  cursor: pointer;
  transform: translateY(-2px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

@media (min-width: 769px) {
  .burger {
    display: none;
  }
}
.burger::before,
.burger::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--burger-color);
  display: block;
  margin: 5px 0;
  transition: all 0.2s;
}

.burger.burger-rotate .burger-span {
  opacity: 0;
}

.burger.burger-rotate::before {
  transform: translateY(9px) rotate(45deg);
}

.burger.burger-rotate::after {
  transform: translateY(-9px) rotate(-45deg);
}

.burger-span {
  width: 24px;
  height: 2px;
  background: var(--burger-color);
}

@media (max-width: 768px) {
  .header__nav-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    padding: var(--container-padding);
    overflow: auto;
    position: fixed;
    top: calc(var(--header-h) - 2px);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h) + 4px);
    background: var(--header-bg);
    z-index: 40;
    flex-direction: column;
    align-items: center;
  }
  .header__nav-menu.nav-hidden {
    opacity: 1;
    visibility: visible;
  }
}
.fade {
  animation: fade 0.5s ease-out;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero .hero-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero .hero-text p {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.hero .hero-text .button.button-primary {
  margin: 1.5rem 0;
}
.hero .hero-image {
  flex: 1 1 300px;
  min-width: 250px;
  display: flex;
  justify-content: center;
}
.hero .hero-image img {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.review-card {
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  padding: min(2rem, 5vw);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 576px) {
  .review-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.review-card .review-photo-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #444;
  background: #181a20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card .review-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.review-card .review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.review-card .reviewer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffe082;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.02em;
}
.review-card .review-text {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.6;
}

@property --a {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.glow, .review-card {
  overflow: hidden;
  position: relative;
}

.glow::before, .review-card::before {
  position: absolute;
  z-index: -1;
  inset: -1em;
  border: solid 0.8em;
  -o-border-image: conic-gradient(from var(--a), #669900, #99cc33, #ccee66, #006699, #3399cc, #990066, #cc3399, #ff6600, #ff9900, #ffcc00, #669900) 1;
     border-image: conic-gradient(from var(--a), #669900, #99cc33, #ccee66, #006699, #3399cc, #990066, #cc3399, #ff6600, #ff9900, #ffcc00, #669900) 1;
  filter: blur(0.75em);
  animation: a 4s linear infinite;
  content: "";
}

@keyframes a {
  to {
    --a: 1turn;
  }
}
.pad-md {
  padding: 3rem min(1.5rem, 3vw);
  border-radius: 1rem;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: min(2rem, 3vw) min(1.5rem, 3vw);
  text-align: center;
  transition: box-shadow 0.2s;
}
.advantage-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.advantage-card .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  display: block;
}
.advantage-card h3 {
  color: #2d2d2d;
}

.promo-card h3 {
  color: var(--primary-color);
}

.small-img {
  height: 100px;
  width: auto;
  max-width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 8px;
}

.item {
  margin-bottom: 24px;
}

.card {
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 1rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.card .labels {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
}
.card .labels .label {
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
}
.card .labels .label.new {
  background-color: #8bc34a;
}
.card .labels .label.hit {
  background-color: #f44336;
}
.card .product-image {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.card .product-info h3 {
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
}
.card .product-info .price {
  margin-bottom: 0.5rem;
}
.card .product-info .price .current-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.card .product-info .price .old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
}
.card .product-info h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card .product-info .buy-button {
  width: 100%;
  background-color: #f26522;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.card .product-info .buy-button:hover {
  background-color: #d35400;
}

.section-terms {
  counter-reset: num;
}
.section-terms__title {
  margin-bottom: 6px;
  margin-top: 16px;
}
.section-terms__title:before {
  counter-increment: num;
  content: counter(num) ". ";
}

.section-thanks {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */