@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
}
body.image-zoom-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

.center {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
}

.top {
  background-size: cover;
  height: 195px;
  background-color: #000000;
  display: flex;
  justify-content: center;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.menu-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 2500;
  width: 34px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.menu-toggle--light .menu-toggle__line {
  background-color: #fff;
}
.menu-toggle--active .menu-toggle__line {
  background-color: #000 !important;
}
.menu-toggle--active .menu-toggle__line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.menu-toggle--active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}
.menu-toggle--active .menu-toggle__line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.full-menu--open {
  opacity: 1;
  visibility: visible;
}
.full-menu__list {
  list-style: none;
  text-align: center;
}
.full-menu__link {
  display: block;
  font-size: 48px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  margin: 20px 0;
  text-transform: uppercase;
  transition: transform 0.3s ease, color 0.3s ease;
}
.full-menu__link:hover {
  transform: scale(1.1);
  color: #555;
}

body.menu-open {
  overflow: hidden;
}

.product-box {
  padding-top: 64px;
  padding-bottom: 64px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.product-box__title {
  font-weight: 600;
  font-size: 48px;
  line-height: 59px;
  color: #000000;
  margin-bottom: 32px;
}

.product-content {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.product {
  width: 378px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product__img:hover {
  transform: scale(1.03);
}
.product__img-wrapper {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about-brand {
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.about-brand__text {
  max-width: 800px;
}
.about-brand__title {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 16px;
}
.about-brand__description {
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
}
.about-brand__slider {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.about-brand__slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.about-brand__slider-img {
  width: 100%;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
}

.shipping {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #fcfcfc;
}
.shipping__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 40px;
  text-align: center;
}
.shipping__content {
  display: flex;
  justify-content: space-around;
  gap: 32px;
}
.shipping__item {
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.shipping__subtitle {
  font-weight: 600;
  font-size: 20px;
}
.shipping__text {
  font-size: 16px;
  line-height: 1.5;
  color: #444444;
}
.shipping__icon {
  width: 48px;
  height: 48px;
}

.footer {
  background: #f7f7f7;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer__left, .footer__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.footer__left {
  align-items: flex-start;
}
.footer__right {
  align-items: flex-end;
  text-align: right;
  gap: 40px;
}
.footer__center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}
.footer__logo {
  width: 120px;
  height: auto;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0;
  color: #000000;
  line-height: 1.2;
}
.footer__icons img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}
.footer__icons img:hover {
  transform: scale(1.1);
}

/* --- Анимированное модальное окно --- */
.image-zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.image-zoom-modal--visible {
  opacity: 1;
  visibility: visible;
}
.image-zoom-modal--visible .image-zoom-modal__dialog {
  transform: scale(1) translateY(0);
}
.image-zoom-modal__product-price {
  font-weight: 700;
  font-size: 24px;
  color: #000;
  margin-top: -10px;
}
.image-zoom-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: zoom-out;
}
.image-zoom-modal__dialog {
  position: relative;
  background: #ffffff;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.image-zoom-modal__media {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 500px;
  background-color: #ffffff;
}
.image-zoom-modal__img {
  max-width: 100%;
  max-height: 75vh;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.3s ease;
}
.image-zoom-modal__img.switching {
  opacity: 0;
}
.image-zoom-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.image-zoom-modal__nav:hover {
  background: #fff;
}
.image-zoom-modal__nav--prev {
  left: 20px;
}
.image-zoom-modal__nav--next {
  right: 20px;
}
.image-zoom-modal__panel {
  padding: 40px;
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.image-zoom-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

.center {
  padding-left: calc(50% - 600px);
  padding-right: calc(50% - 600px);
  transition: padding 0.3s ease;
}

@media (max-width: 1024px) {
  .center {
    padding-left: 32px;
    padding-right: 32px;
  }
  .product-box__container {
    gap: 40px;
  }
  .product-box__sidebar {
    min-width: 180px;
  }
  .product-content {
    justify-content: space-between;
    gap: 20px;
  }
  .product {
    width: calc(50% - 10px);
  }
  .about-brand__slider-img {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .center {
    padding-left: 8px;
    padding-right: 8px;
  }
  .menu-toggle {
    top: 15px;
    right: 15px;
    width: 26px;
    height: 18px;
  }
  .menu-toggle--active .menu-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle--active .menu-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .full-menu__link {
    font-size: 24px;
    margin: 10px 0;
  }
  .top {
    height: 120px;
  }
  .top_img {
    width: 150px;
  }
  .product-box {
    padding-top: 24px;
    padding-bottom: 32px;
    -moz-user-select: none;
         user-select: none;
    -webkit-user-select: none;
  }
  .product-box__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .product-box__container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
  }
  .product-box__sidebar {
    min-width: 65px;
    max-width: 65px;
  }
  .category-nav__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 60px;
  }
  .category-nav__link {
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: block;
    word-wrap: break-word;
    padding-left: 4px;
    color: #000;
    text-decoration: none;
  }
  .category-nav__link.active {
    font-weight: 700;
    border-left: 2px solid #000;
  }
  .product-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 8px;
    justify-content: center;
  }
  .product {
    width: calc(50% - 4px);
    gap: 6px;
  }
  .product__subtitle {
    font-size: 11px;
    line-height: 1.2;
  }
  .product__price {
    font-size: 11px;
  }
  .product__price-old {
    font-size: 10px;
  }
  .special {
    margin-bottom: 100px;
  }
  .about-brand {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .about-brand__title {
    font-size: 25px;
    margin-bottom: 24px;
  }
  .about-brand__description {
    font-size: 16px;
    line-height: 1.4;
  }
  .about-brand__slider-img {
    height: 220px;
  }
  .image-zoom-modal__dialog {
    width: 98%;
  }
  .image-zoom-modal__img {
    max-height: 55vh;
  }
  .image-zoom-modal__panel {
    padding: 10px;
  }
  .image-zoom-modal__product-title {
    font-size: 15px;
  }
  .image-zoom-modal__product-description {
    font-size: 11px;
  }
  .image-zoom-modal__nav {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .shipping__title {
    font-size: 24px;
  }
  .footer {
    padding-top: 32px;
    padding-bottom: 32px;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer__left, .footer__right {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer__left {
    order: 1;
  }
  .footer__center {
    order: 2;
  }
  .footer__right {
    order: 3;
    gap: 69px;
  }
  .footer__logo {
    width: 80px;
  }
  .footer__title {
    font-size: 16px;
  }
  .footer__icons img {
    width: 24px;
  }
  .image-zoom-modal__dialog {
    width: 95%;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
  }
  .image-zoom-modal__media {
    min-width: 100%;
    width: 100%;
  }
  .image-zoom-modal__img {
    max-height: 45vh;
  }
  .image-zoom-modal__panel {
    padding: 20px 15px;
    width: 100%;
    box-sizing: border-box;
    gap: 12px;
  }
  .image-zoom-modal__product-title {
    font-size: 16px;
  }
  .image-zoom-modal__product-description {
    font-size: 13px;
  }
  .image-zoom-modal__nav {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .image-zoom-modal__product-price {
    font-size: 18px;
    margin-top: -5px;
  }
}/*# sourceMappingURL=style.css.map */