*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

a {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1344px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) and (max-width: 1343px) {
  .container {
    padding-inline: 40px;
  }
}
@media (min-width: 1344px) {
  .container {
    padding-inline: 0;
  }
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page__main {
  flex: 1 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.btn:focus-visible {
  outline: 2px solid #3b67db;
  outline-offset: 2px;
}
@media (hover: hover) {
  .btn:hover {
    opacity: 0.85;
  }
}
.btn.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.btn--size-l {
  padding: 24px 28px;
  border-radius: 12px;
}
.btn--size-m {
  padding: 16px 20px;
  border-radius: 8px;
}
.btn--size-m-cart {
  padding: 16px 20px 16px 16px;
  border-radius: 8px;
}
.btn--size-m-icon {
  padding: 16px;
  border-radius: 8px;
}
.btn--primary {
  background-color: #010101;
  color: #fff;
}
.btn--light {
  background-color: #f3f3f3;
  color: #000;
}
.btn--outline {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #000;
}
.btn--full {
  width: 100%;
}
.btn__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.link {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .link:hover {
    color: #000;
  }
}
.link:focus-visible {
  outline: 2px solid #3b67db;
  outline-offset: 2px;
}
.link {
  display: inline-flex;
}

.link-text {
  color: #3b67db;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.link-text:focus-visible {
  outline: 2px solid #3b67db;
  outline-offset: 2px;
}
.link-text__icon {
  width: 24px;
  height: 24px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 24px;
}
.section-header__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.44px;
}
@media (max-width: 767px) {
  .section-header__title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.84px;
  }
}
.section-header__title {
  flex: 1;
  min-width: 0;
}
.section-header__controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}
@media (max-width: 767px) {
  .section-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-bottom: 16px;
  }
  .section-header__controls {
    justify-content: flex-end;
  }
}

.label {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  background-color: #000;
  color: #fff;
}

.counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
  background-color: #f3f3f3;
  border-radius: 8px;
  flex: 1;
  min-width: 0;
}
.counter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.counter__btn:focus-visible {
  outline: 2px solid #3b67db;
  outline-offset: 2px;
}
.counter__icon {
  width: 24px;
  height: 24px;
}
.counter__value {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  min-width: 32px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumbs {
  width: 100%;
  max-width: 1344px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) and (max-width: 1343px) {
  .breadcrumbs {
    padding-inline: 40px;
  }
}
@media (min-width: 1344px) {
  .breadcrumbs {
    padding-inline: 0;
  }
}
.breadcrumbs {
  padding-block: 16px 0;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.24);
  flex-shrink: 0;
}
.breadcrumbs__link {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
}
.breadcrumbs__link:focus-visible {
  outline: 2px solid #3b67db;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .breadcrumbs__link {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
  }
}
.breadcrumbs__link--disabled {
  color: rgba(0, 0, 0, 0.24);
  pointer-events: none;
}
@media (hover: hover) {
  .breadcrumbs__link:hover {
    color: #000;
  }
}
.breadcrumbs__current {
  color: #000;
}

.page-header {
  width: 100%;
  max-width: 1344px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 768px) and (max-width: 1343px) {
  .page-header {
    padding-inline: 40px;
  }
}
@media (min-width: 1344px) {
  .page-header {
    padding-inline: 0;
  }
}
.page-header {
  padding-block: 12px 24px;
}
.page-header__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.44px;
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.84px;
  }
}
.page-header__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 767px) {
  .page-header__desc {
    font-size: 16px;
    line-height: 24px;
  }
}
.page-header__desc {
  margin-top: 16px;
  max-width: 656px;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .page-header {
    padding-block: 8px 16px;
  }
  .page-header__desc {
    margin-top: 12px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.is-open {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 496px;
  padding: 64px 48px 48px;
  border-radius: 16px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .modal__dialog {
    padding: 65px 16px 24px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }
}
.modal.is-open .modal__overlay {
  animation: modal-fade-in 0.3s ease both;
}
.modal.is-open .modal__dialog {
  animation: modal-slide-up 0.35s ease-out both;
}
@keyframes modal-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-slide-up {
  from {
    transform: translateY(64px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal.is-closing .modal__overlay {
  animation: modal-fade-out 0.25s ease both;
}
.modal.is-closing .modal__dialog {
  animation: modal-slide-down 0.3s ease-in both;
}
@keyframes modal-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modal-slide-down {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(64px);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal.is-open .modal__overlay,
  .modal.is-open .modal__dialog,
  .modal.is-closing .modal__overlay,
  .modal.is-closing .modal__dialog {
    animation: none;
  }
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
}
.modal__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -1.14px;
}
@media (max-width: 767px) {
  .modal__title {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.84px;
  }
}
.modal__title {
  text-align: center;
  margin-bottom: 4px;
}
.modal__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
}
.form-field__input, .form-field__textarea {
  width: 100%;
  padding: 24px 23px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  resize: vertical;
}
.form-field__input::placeholder, .form-field__textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.form-field__input:focus, .form-field__textarea:focus {
  outline: none;
  border-color: #000;
}
.form-field__input {
  height: 72px;
}
.form-field__textarea {
  min-height: 136px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.form-checkbox__input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #000;
}
.form-checkbox__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.4);
}
.form-checkbox__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/*# sourceMappingURL=common.css.map */
