html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

section{
	scroll-margin-top: 9rem;
}

* {
  padding: 0;
  margin: 0;
}

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

a:focus,
a:active {
  outline: none;
}

a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
  margin: 0;
}

address {
  font-style: normal;
}

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

button {
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

a {
  display: block;
}

img {
  object-fit: cover;
}

html {
  scrollbar-gutter: stable;
  font-size: 10px;
	height: 100%;
}
@media (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 1.3020833333vw;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  background: #000;
}
body.hidden, body.modal-open {
  overflow: hidden;
}

.wrapper {
  	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
}

.wrapper.overflow{
	overflow: visible;
}

.container {
  width: 136rem;
  margin: 0 auto;
}
@media (max-width: 1050px) {
  .container {
    padding: 0 1.2rem;
  }
}
@media (max-width: 1024px) {
  .container {
    width: 70.4rem;
  }
}
@media (max-width: 600px) {
  .container {
    width: 100%;
    padding: 0 1.6rem;
  }
}

.btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
@media (max-width: 1024px) {
  .btn {
    width: 100%;
  }
}
.btn span {
  border-radius: 2.6rem;
  padding: 1.8rem 6rem;
  width: 32.9rem;
  background: #6c62f7;
  font: 700 1.6rem/90% "Cy Grotesk Grand", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  position: relative;
}
@media (max-width: 1024px) {
  .btn span {
    width: 100%;
  }
}
.btn span::before {
  content: "";
  position: absolute;
  right: -1.2rem;
  width: 1.6rem;
  height: 2.7rem;
  background: url("../images/btn.svg");
  top: 50%;
  transform: translateY(-50%);
}
.btn .arrow {
  width: 5.1rem;
  height: 5.1rem;
  min-width: 5.1rem;
  min-height: 5.1rem;
  border-radius: 6rem;
  background: #6c62f7;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn .arrow svg {
  width: 2.5rem;
  height: 2.5rem;
}

.section-title {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 5.2rem;
}
@media (max-width: 1024px) {
  .section-title {
    margin-bottom: 3.2rem;
  }
	.btn span::before{
		display: none;
	}
	.btn .arrow{
		display: none;
	}
}
@media (max-width: 600px) {
  .section-title {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
  }
}

.header {
  position: absolute;
  left: 0;
  z-index: 99999999;
  top: 3.6rem;
  width: 100%;
  background: transparent;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .header {
    top: 3.2rem;
  }
}
@media (max-width: 600px) {
  .header {
    top: 0rem;
    padding: 1.6rem;
    border-radius: 0 0 2.4rem 2.4rem;
  }
  .header .catalog-section__wrapper {
    max-height: 0;
    overflow: hidden;
  }
  .header.menu-open {
    backdrop-filter: blur(200px);
    background: linear-gradient(180deg, #121122 0%, rgba(0, 0, 0, 0.1) 100%);
    height: calc(100dvh - 10rem);
    overflow: auto;
    z-index: 9999999999999;
  }
  .header.menu-open .container {
    background: transparent;
    backdrop-filter: none;
  }
  .header.menu-open .catalog-section__wrapper {
    max-height: 100%;
    overflow: visible;
  }
}
.header .container {
  border-radius: 2.2rem;
  padding: 1.2rem;
  backdrop-filter: blur(200px);
  background: rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .header .container {
    display: flex;
    gap: 1.6rem;
  }
}
@media (max-width: 600px) {
  .header .container {
    justify-content: space-between;
    border-radius: 2.4rem;
	  gap: 0.8rem;
  }
}
.header .actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.actions__buttons{
	justify-content: flex-end;
}

@media (max-width: 1024px) {
  .header .actions:nth-child(3) {
    margin-left: auto;
  }
}
@media (max-width: 1024px) and (max-width: 600px) {
	.header .profile span{
		display: none;
	}
	.header .header__catalog-btn, .header .tel, .header .favorites, .header .cart, .header .profile{
		padding: 0;
		width: 4rem;
		height: 4rem;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
@media (max-width: 1024px) {
  .header .actions .tel {
    display: none;
  }
  .header .actions .header__catalog-btn span {
    display: none;
  }
  .header .actions .header__catalog-btn .hamburger span {
    display: block;
  }
  .header .actions .favorites span, .header .actions .cart span {
    display: none;
  }
}
@media (max-width: 600px) {
  .header .actions {
    order: 1;
  }
	.header .actions.actions__buttons{
		display: none;
	}
}
.header .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .header .wrap {
    order: 0;
  }
}
.header .logo {
  width: 15rem;
  height: 3.2rem;
  display: block;
}
@media (max-width: 600px) {
  .header .logo {
    width: 3.1rem;
    height: 3.1rem;
  }
}
.header .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header .header__catalog-btn {
  position: relative;
  cursor: pointer;
}
.header .header__catalog-btn .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header .header__catalog-btn .hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 0.2rem;
  transition: all 0.3s;
}
.header__catalog-wrap {
  position: absolute;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, #3e3b65 0%, rgba(45, 45, 45, 1) 100%);
  border-radius: 1.2rem;
  padding: 1.2rem;
  top: 6.5rem;
  left: -1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@media (max-width: 600px) {
  .header__catalog-wrap {
    right: 0;
    left: auto;
    display: none;
  }
}
.header__catalog-wrap.visible {
  opacity: 1;
  visibility: visible;
}
.header__catalog-wrap::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: -1.4rem;
  width: 11rem;
  height: 1.4rem;
  background: url("../images/menu.svg");
  background-size: cover;
}
.header__catalog-wrap a {
  transition: all 0.3s;
  font: 400 1.6rem/120% "Inter", sans-serif;
  padding: 1rem 1.8rem;
  border-radius: 1.2rem;
  color: #fff;
  white-space: nowrap;
}
.header__catalog-wrap a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header .header__catalog-btn, .header .tel, .header .favorites, .header .cart, .header .profile {
  padding: 1.05rem 1.8rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header__catalog-btn.active {
  padding: 0;
  background: transparent;
}
.header__catalog-btn.active .hamburger span {
  width: 30px;
  height: 3px;
}
.header__catalog-btn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 0px);
}
.header__catalog-btn.active .hamburger span:nth-child(2) {
  transform: rotate(-45deg) translate(6px, -1px);
}
.header .favorites .icon, .header .cart .icon, .header .profile .icon {
  position: relative;
}
.header .favorites .icon span, .header .cart .icon span, .header .profile .icon span {
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.6rem;
  background: #ff3b30;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 600 0.8rem "Inter", sans-serif;
}

.mobile-toolbar {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 1.6rem;
  width: 100%;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2.8rem;
  z-index: 777;
  display: none;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .mobile-toolbar {
    display: flex;
  }
}
@media (max-width: 600px) {
  .mobile-toolbar.product-bar {
    flex-wrap: wrap;
  }
  .mobile-toolbar.product-bar .product__buttons {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    margin: 0;
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 600px) {
  .mobile-toolbar.cart-toolbar {
    flex-wrap: wrap;
  }
  .mobile-toolbar.cart-toolbar .wrap-btn {
    padding: 0.8rem;
    border-radius: 3.2rem;
    backdrop-filter: blur(200px);
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    width: 100%;
  }
  .mobile-toolbar.cart-toolbar .btn {
    width: 100%;
    padding: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #6c62f7;
    color: #fff;
    font: 700 1.6rem/90% "Cy Grotesk Grand", sans-serif;
    border-radius: 2.6rem;
    transition: all 0.3s;
  }
  .mobile-toolbar.cart-toolbar .btn:disabled {
    backdrop-filter: blur(200px);
    background: rgba(255, 255, 255, 0.1);
  }
  .mobile-toolbar.cart-toolbar .btn span {
    font: 600 1.6rem/120% "Inter", sans-serif;
    letter-spacing: -0.04em;
    color: #fff;
    padding: 0;
    width: auto;
  }
  .mobile-toolbar.cart-toolbar .btn span::before {
    display: none;
  }
}
.mobile-toolbar .favorites, .mobile-toolbar .cart, .mobile-toolbar .profile {
  background: rgba(255, 255, 255, 0.1);
  width: 10.9rem;
  border-radius: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: 0.5rem;
  padding: 1.1rem;
}
.mobile-toolbar .favorites span, .mobile-toolbar .cart span, .mobile-toolbar .profile span {
  font: 600 0.8rem "Inter", sans-serif;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
.mobile-toolbar .icon {
  position: relative;
}
.mobile-toolbar .icon span {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.6rem;
  background: #ff3b30;
  font: 600 0.8rem "Inter", sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu {
  display: none !important;
}
@media (max-width: 600px) {
  .mobile-menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    transition: all 0.3s;
    display: flex !important;
  }
  .mobile-menu.visible {
    opacity: 1;
    visibility: visible;
  }
}

.select {
  position: relative;
  min-width: 18rem;
  backdrop-filter: blur(10px);
  background: #2f2c4b;
  border-radius: 1.2rem;
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  padding: 1.1rem 1.8rem;
  cursor: pointer;
  z-index: 777;
}

.filter-more{
	display: flex;
	align-items: center;
	gap: 1rem;
	 backdrop-filter: blur(10px);
 	 background: #2f2c4b;
	padding: 1.1rem 1.8rem;
	 font: 400 1.6rem/120% "Inter", sans-serif;
	color: #fff;
	 border-radius: 1.2rem;
}

.filter-more svg{
	width: 2rem;
	height: 2rem;
}

.category-select{
	min-width: 26rem;
}

@media (max-width: 600px) {
  .select {
    min-width: 10rem;
  }
}
.select.active {
  border-radius: 1.2rem 1.2rem 0 0;
}
.select.active svg {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .select.active {
    border-radius: 1.2rem;
  }
}
.select.sort-select {
  min-width: 32.5rem;
  margin-left: auto;
}
@media (max-width: 600px) {
  .select.sort-select {
    min-width: 20rem;
  }
}
.select__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.select__top svg {
  transition: all 0.3s;
}
.select__content {
  max-height: 0;
  overflow: hidden;
  isolation: isolate;
  transition: all 0.3s;
  position: absolute;
  top: 4rem;
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.25);
  background: #2f2c4b;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  left: 0;
  width: 100%;
  padding: 0 1.8rem;
  border-radius: 0 0 1.2rem 1.2rem;
  z-index: 7777;
}
.select .select__item input {
  display: none;
}
.select .select__item:first-child {
  margin-top: 1.8rem;
}
.select .select__item:last-child {
  margin-bottom: 1.8rem;
}
.select .select__item label {
  padding: 1.05rem 1.8rem;
  border-radius: 1.2rem;
  display: inline-block;
}
.select input:checked + label {
  background: rgba(255, 255, 255, 0.1);
}

.select a{
	padding: 1.05rem 1.8rem;
  border-radius: 1.2rem;
  display: inline-block;
	color: #fff;
}

.category-select .select__item{
	padding: 0 !important;
	margin: 0 !important;
}

.select a.active{
	 background: rgba(255, 255, 255, 0.1);
}

.category-select .select__item:first-child {
  margin-top: 1.8rem !important;
}
.category-select .select__item:last-child {
  margin-bottom: 1.8rem !important;
}

.footer {
  padding-bottom: 5rem;
  position: relative;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.3rem;
}
@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 9.4rem;
    margin-bottom: 6.7rem;
  }
}
@media (max-width: 600px) {
  .footer__top {
    gap: 3rem;
    margin-bottom: 2.4rem;
  }
}
.footer__info {
  width: 27rem;
}
@media (max-width: 600px) {
  .footer__info {
    width: 100%;
  }
}
.footer__info p {
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.6rem;
}
.footer__info a {
  display: flex;
  align-items: center;
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  gap: 0.8rem;
}
.footer__info a img {
  width: 2.4rem;
  height: 2.4rem;
}
.footer__name {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.6rem;
}
@media (max-width: 600px) {
  .footer__name br {
    display: none;
  }
}
.footer__nav {
  width: 67.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 0;
}
@media (max-width: 600px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
  }
}
.footer__nav a {
  width: 50%;
  color: #fff;
}
@media (max-width: 600px) {
  .footer__nav a:nth-child(1) {
    order: 0;
  }
  .footer__nav a:nth-child(3) {
    order: 1;
  }
  .footer__nav a:nth-child(5) {
    order: 2;
  }
  .footer__nav a:nth-child(7) {
    order: 3;
    margin-bottom: 7.5rem;
  }
  .footer__nav a:nth-child(2) {
    order: 4;
  }
  .footer__nav a:nth-child(4) {
    order: 5;
  }
  .footer__nav a:nth-child(6) {
    order: 7;
  }
  .footer__nav a:nth-child(8) {
    order: 8;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
}
.footer__bottom p {
  color: #fff;
}
@media (max-width: 1024px) {
  .footer__bottom .rights {
   
  }
	.footer__nav a:nth-child(7){
		margin-bottom: 1rem;
	}
	.footer__bottom{
		flex-direction: column;
		gap: 1.6rem;
	}
}
@media (max-width: 600px) {
  .footer__bottom .rights {
    top: 16rem;
  }
}
.footer .links {
  width: 67.2rem;
  display: flex;
	gap: 1.6rem;
}
@media (max-width: 600px) {
  .footer .links {
    width: 100%;
  }
}
.footer .links a {
  color: #fff;
	white-space: nowrap;
}
@media (max-width: 600px) {
  .footer .links a {
   
    width: 90%;
  }
}
.footer .links p {
  color: rgba(255, 255, 255, 0.5);
	white-space: nowrap;
}
.footer .links .year {
  margin-left: auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}
@media (max-width: 1024px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  font-size: 1.4rem;
  color: #fff;
	position: relative;
}

.breadcrumbs span{
	display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  font-size: 1.4rem;
  color: #fff;
	position: relative;
}

.woocommerce-breadcrumb{
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: #fff;
}


.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: all 0.3s;
}
@media (max-width: 600px) {
  .modal {
    overflow: auto;
    align-items: flex-start;
    padding: 1.6rem 0;
  }
}
.modal.visible {
  opacity: 1;
  visibility: visible;
}
.modal .modal-content {
  border-radius: 2.4rem;
  padding: 1.6rem;
  width: 50.5rem;
  position: relative;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 600px) {
  .modal .modal-content {
    width: 95%;
  }
}
.modal .modal-close {
  position: absolute;
  top: 0;
  right: -5.2rem;
  cursor: pointer;
}
@media (max-width: 600px) {
  .modal .modal-close {
    position: static;
    display: block;
    width: 2.6rem;
    height: 2.8rem;
    margin-left: auto;
    margin-bottom: 2.5rem;
  }
}
.modal .modal-close svg {
  width: 2.6rem;
  height: 2.8rem;
}
.modal__logo {
  display: none;
}
.modal__logo img {
  width: 100%;
}
@media (max-width: 600px) {
  .modal__logo {
    display: block;
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
.modal__title {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.6rem;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.modal__form .styled-checkbox {
  position: absolute;
  opacity: 0;
  display: none;
}
.modal__form .styled-checkbox + label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .modal__form .styled-checkbox + label {
    font-size: 1.6rem;
  }
}
.modal__form .styled-checkbox + label:before {
  content: "";
  border: 1.7px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
}
@media (max-width: 1024px) {
  .modal__form .styled-checkbox + label:before {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 1rem;
  }
}
.modal__form .styled-checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
  background: url("../images/arr.svg");
  background-size: cover;
}
@media (max-width: 1024px) {
  .modal__form .styled-checkbox:checked + label::after {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 1rem;
  }
}
.modal__form input {
  padding: 1.55rem 1.6rem;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
}
.modal .policy {
  margin: 1.2rem 0;
	position: relative;
}
.modal button {
  border-radius: 2.6rem;
  padding: 1.85rem;
  width: 100%;
  background: #6c62f7;
  color: #fff;
  font: 700 1.6rem/90% "Cy Grotesk Grand", sans-serif;
}
.modal button.opt {
  margin-top: 0.8rem;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
}

@font-face {
  font-family: "Cy Grotesk Grand";
  src: url("../fonts/cy-grotesk-grand.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.hero {
  position: relative;
  padding-top: 20rem;
  margin-bottom: 12rem;
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 13.6rem;
    margin-bottom: 6rem;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-top: 11.2rem;
  }
}
.hero .blur {
  position: absolute;
  width: 136.8rem;
  height: 59.3rem;
  filter: blur(1000px);
  background: #6c62f7;
  top: 10rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .hero .blur {
    display: none;
  }
}
.blur-mobile {
  display: none;
}
@media (max-width: 600px) {
  .blur-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__img {
  width: 98.8rem;
  height: 32.7rem;
  margin: 0 auto;
  margin-bottom: 10rem;
}
@media (max-width: 1024px) {
  .hero__img {
    width: 59.5rem;
    height: 19.7rem;
    margin-bottom: 6rem;
  }
}
@media (max-width: 600px) {
  .hero__img {
    width: 100%;
    height: auto;
  }
}
.hero__img img {
  width: 100%;
  height: 100%;
}
.hero__info {
  width: 38.8rem;
}
@media (max-width: 1024px) {
  .hero__info {
    width: 100%;
  }
}
.hero__info p {
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .hero__info p {
    width: 57.4rem;
  }
}
@media (max-width: 600px) {
  .hero__info p {
    width: 100%;
  }
}
.hero__title {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.2rem;
}
@media (max-width: 1024px) {
  .hero__title {
    border-radius: 1.2rem;
  }
}

.catalog-section {
  margin-bottom: 12rem;
}
@media (max-width: 1024px) {
  .catalog-section {
    margin-bottom: 6rem;
	  position: relative;
	  z-index: 7;
  }
}
.catalog-section__title {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 5.2rem;
}
@media (max-width: 1024px) {
  .catalog-section__title {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__title {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.catalog-section__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3rem 0;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1024px) {
  .catalog-section__wrapper {
    gap: 1rem;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .catalog-section__wrapper {
    gap: 0.3rem;
  }
}
.catalog-section__item {
  display: flex;
  flex-direction: column;
  border-radius: 3rem;
  padding: 3rem;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
  height: 59.2rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .catalog-section__item {
    height: 30.5rem;
    padding: 1.6rem;
    border-radius: 2.1rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item {
    height: 15rem;
  }
}
.catalog-section__item img {
  position: absolute;
  right: 0;
  top: 0;
}
.catalog-section__item:nth-child(1) {
  width: 84.6rem;
}
.catalog-section__item:nth-child(1) img {
  width: 68.6rem;
  height: 37.4rem;
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(1) img {
    width: 35.3rem;
    height: 19.3rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(1) img {
    width: 17.3rem;
    height: 9.4rem;
  }
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(1) {
    width: 41rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(1) {
    width: 21.3rem;
    order: 0;
  }
}
.catalog-section__item:nth-child(2) {
  width: 49.8rem;
}
.catalog-section__item:nth-child(2) img {
  width: 41.8rem;
  height: 51.2rem;
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(2) img {
    width: 21.5rem;
    height: 26.3rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(2) img {
    width: 7.5rem;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(2) {
    width: 25.6rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(2) {
    width: 12.7rem;
    order: 1;
  }
}
.catalog-section__item:nth-child(3) {
  width: 32.4rem;
}
.catalog-section__item:nth-child(3) img {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 21.9rem;
  height: 42rem;
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(3) img {
    width: 11.3rem;
    height: 21.6rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(3) img {
    width: 11.3rem;
    height: auto;
    top: -12rem;
  }
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(3) {
    width: 16.7rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(3) {
    width: 17rem;
    order: 6;
  }
}
.catalog-section__item:nth-child(4) {
  width: 32.4rem;
}
.catalog-section__item:nth-child(4) img {
  width: 28.8rem;
  height: 35.9rem;
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(4) img {
    width: 14.8rem;
    height: 18.5rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(4) img {
    width: 12.4rem;
    height: auto;
    top: -7rem;
  }
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(4) {
    width: 16.7rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(4) {
    width: 17rem;
    order: 7;
  }
}
.catalog-section__item:nth-child(5) {
  width: 32.4rem;
  height: 32rem;
}
.catalog-section__item:nth-child(5) img {
  right: auto;
  left: 50%;
  top: 3rem;
  transform: translateX(-50%);
  width: 19.8rem;
  height: 19.8rem;
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(5) img {
    width: 10.2rem;
    height: 10.2rem;
    transform: none;
    top: 0.8rem;
    right: 0.8rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(5) img {
    width: 10.2rem;
    height: auto;
    top: 1rem;
    right: 1rem;
  }
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(5) {
    width: 15.8rem;
    height: 16.5rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(5) {
    width: 17rem;
    height: 16.5rem;
    order: 3;
  }
}
.catalog-section__item:nth-child(6) {
  width: 32.4rem;
  height: 32rem;
}
.catalog-section__item:nth-child(6) img {
  width: 27.4rem;
  height: 22.3rem;
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(6) img {
    width: 14.1rem;
    height: 10.2rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(6) img {
    width: 11.4rem;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(6) {
    width: 15.8rem;
    height: 16.5rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(6) {
    width: 17rem;
    height: 16.5rem;
    order: 4;
  }
}
.catalog-section__item:nth-child(7) {
  width: 67.2rem;
  height: 25rem;
  position: absolute;
  right: 0;
  bottom: 0;
}
.catalog-section__item:nth-child(7) img {
  width: 60.4rem;
  height: 25rem;
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(7) img {
    width: 35.3rem;
    height: 12.9rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(7) img {
    width: 30.9rem;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .catalog-section__item:nth-child(7) {
    width: 32.6rem;
    height: 12.9rem;
  }
}
@media (max-width: 600px) {
  .catalog-section__item:nth-child(7) {
    position: static;
    width: 100%;
    order: 5;
  }
}
.catalog-section__item-name {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .catalog-section__item-name {
    font-size: 1.6rem;
  }
}

.about {
  position: relative;
  margin-bottom: 9rem;
}
@media (max-width: 1024px) {
  .about {
    margin-bottom: 6rem;
  }
}
.about .blur {
  width: 69.9rem;
  height: 58.7rem;
  filter: blur(1000px);
  background: #6c62f7;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 16.7rem;
}
.about .container {
  position: relative;
  z-index: 1;
}
.about__title {
  margin-bottom: 3.6rem;
}
@media (max-width: 1024px) {
  .about__title {
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 600px) {
  .about__title {
    margin-bottom: 1.6rem;
  }
}
.about__title:nth-child(3) {
  margin-bottom: 8rem;
}
@media (max-width: 1024px) {
  .about__title:nth-child(3) {
    margin-bottom: 6rem;
  }
}
@media (max-width: 600px) {
  .about__title:nth-child(3) {
    margin-bottom: 2.4rem;
  }
}
.about__title .num {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.6rem;
}
@media (max-width: 1024px) {
  .about__title .num {
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 600px) {
  .about__title .num {
    font: 600 0.8rem "Inter", sans-serif;
    margin-bottom: 0.4rem;
  }
}
.about__title .title {
  font: 400 9.5rem/90% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
}
@media (max-width: 1024px) {
  .about__title .title {
    font-size: 4.75rem;
  }
}
@media (max-width: 600px) {
  .about__title .title {
    font-size: 2.4rem;
  }
}
.about__wrapper {
  display: flex;
}
@media (max-width: 1024px) {
  .about__wrapper {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.about__circle {
  width: 53.6rem;
  height: 53.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 400 3.6rem/90% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 1024px) {
  .about__circle {
    font-size: 2.3rem;
    width: 50%;
    height: 34.8rem;
  }
}
@media (max-width: 600px) {
  .about__circle {
    height: 17rem;
    font-size: 1.6rem;
  }
  .about__circle span {
    max-width: 13rem;
  }
  .about__circle span br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .about__circle:nth-child(1) {
    order: 3;
    margin-top: -4.7rem;
  }
}
@media (max-width: 600px) {
  .about__circle:nth-child(1) {
    margin-top: -2.3rem;
  }
}
.about__circle:nth-child(2) {
  margin-left: -10rem;
}
@media (max-width: 1024px) {
  .about__circle:nth-child(2) {
    order: 1;
    margin-left: 0;
  }
}
.about__circle:nth-child(3) {
  margin-left: -10rem;
  background: #6c62f7;
  border: none;
}
@media (max-width: 1024px) {
  .about__circle:nth-child(3) {
    order: 0;
    margin-left: 0;
  }
}

.projects {
  position: relative;
  margin-bottom: 9rem;
}
@media (max-width: 1024px) {
  .projects {
    margin-bottom: 6rem;
  }
}
.projects .overflow {
  overflow: hidden;
}
.projects .blur {
  position: absolute;
  width: 136.6rem;
  height: 23.6rem;
  filter: blur(1000px);
  background: #6c62f7;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
@media (max-width: 600px) {
  .projects .blur {
    display: none;
  }
}
.projects .blur-mobile {
  display: none;
}
@media (max-width: 600px) {
  .projects .blur-mobile {
    display: block;
    position: absolute;
    top: -100rem;
    left: 0;
    width: 100%;
    height: 200rem;
  }
}
.projects__title {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 5.2rem;
}
@media (max-width: 1024px) {
  .projects__title {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 1024px) {
  .projects__title {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.projects .swiper-slide {
  border-radius: 3rem;
  width: 49.8rem;
  height: 49.8rem;
}
@media (max-width: 1024px) {
  .projects .swiper-slide {
    width: 22.7rem;
    height: 22.7rem;
  }
}
.projects .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 3rem;
}
@media (max-width: 1024px) {
  .projects .swiper-slide img {
    border-radius: 1.6rem;
  }
}

.partners {
  position: relative;
  margin-bottom: 9rem;
}
@media (max-width: 1024px) {
  .partners {
    margin-bottom: 6rem;
  }
}
.partners__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 0;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .partners__wrapper {
    gap: 1.2rem 0;
  }
}
@media (max-width: 1024px) {
  .partners__wrapper {
    gap: 0.4rem 0;
  }
}
.partners__item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3rem;
  padding: 0 3rem;
  width: 44rem;
  height: 17.5rem;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .partners__item {
    width: 22rem;
    height: 9rem;
    border-radius: 1.6rem;
  }
}
@media (max-width: 600px) {
  .partners__item {
    width: 17rem;
    height: 4.4rem;
    border-radius: 1.2rem;
  }
}
.partners__item img {
  width: 100%;
  height: auto;
}
@media (max-width: 600px) {
  .partners__item:nth-child(3) {
    width: 11.2rem;
    height: 4.4rem;
  }
}
.partners__item:nth-child(4) {
  width: 32.4rem;
}
@media (max-width: 1024px) {
  .partners__item:nth-child(4) {
    width: 16.7rem;
    border-radius: 1.6rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 600px) {
  .partners__item:nth-child(4) {
    width: 11.2rem;
    height: 4.4rem;
  }
}
.partners__item:nth-child(5) {
  width: 32.4rem;
}
@media (max-width: 1024px) {
  .partners__item:nth-child(5) {
    width: 16.7rem;
    border-radius: 1.6rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 600px) {
  .partners__item:nth-child(5) {
    width: 11.2rem;
    height: 4.4rem;
  }
}
.partners__item:nth-child(6) {
  width: 32.4rem;
}
@media (max-width: 1024px) {
  .partners__item:nth-child(6) {
    width: 16.7rem;
    border-radius: 1.6rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 600px) {
  .partners__item:nth-child(6) {
    width: 17rem;
    height: 4.4rem;
  }
}
.partners__item:nth-child(7) {
  width: 32.4rem;
}
@media (max-width: 1024px) {
  .partners__item:nth-child(7) {
    width: 14.7rem;
    border-radius: 1.6rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 600px) {
  .partners__item:nth-child(7) {
    width: 17rem;
    height: 4.4rem;
  }
}

.contact-form {
  position: relative;
  margin-bottom: 9rem;
}
@media (max-width: 600px) {
  .contact-form {
    margin-bottom: 6rem;
  }
}
@media (max-width: 1024px) {
  .contact-form .blur {
    display: none;
  }
}
.contact-form .blur:nth-child(1) {
  position: absolute;
  width: auto;
  height: auto;
  right: 0rem;
  top: -112rem;
}
.contact-form .blur:nth-child(2) {
  position: absolute;
  width: auto;
  height: auto;
  right: 0rem;
  top: -112rem;
}
.contact-form .container {
  position: relative;
  z-index: 1;
}
.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  color: #fff;
  width: 79.4rem;
}
@media (max-width: 1024px) {
  .contact-form__form {
    width: 100%;
  }
}
.contact-form__form input {
  width: 100%;
  border-radius: 2rem;
  padding: 3rem 3.2rem;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  font-size: 2.4rem;
}
@media (max-width: 600px) {
  .contact-form__form input {
    font-size: 1.6rem;
    padding: 1.55rem 1.6rem;
    border-radius: 1.2rem;
  }
}
.contact-form__form .policy {
  margin-top: 1.6rem;
}
.contact-form__form button {
  width: 100%;
  border-radius: 4.4rem;
  padding: 3.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 700 2.7rem/90% "Cy Grotesk Grand", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  background: #6c62f7;
}
@media (max-width: 600px) {
  .contact-form__form button {
    padding: 1.8rem;
    font-size: 1.6rem;
  }
}
.contact-form__form .opt {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #fff;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .contact-form__form .opt {
    padding: 1.8rem;
    font: 700 1.6rem/90% "Cy Grotesk Grand", sans-serif;
    width: 100%;
    backdrop-filter: blur(200px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2.6rem;
    border: none;
    text-align: center;
  }
}
.contact-form .styled-checkbox {
  position: absolute;
  opacity: 0;
  display: none;
}
.contact-form .styled-checkbox + label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font: 400 2.4rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  cursor: pointer;
	position: relative;
}
@media (max-width: 1024px) {
  .contact-form .styled-checkbox + label {
    font-size: 1.6rem;
  }
}
.contact-form .styled-checkbox + label:before {
  content: "";
  border: 1.7px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.7rem;
  width: 5.1rem;
  height: 5.1rem;
  min-width: 5.1rem;
  min-height: 5.1rem;
}
@media (max-width: 1024px) {
  .contact-form .styled-checkbox + label:before {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 1rem;
  }
}
.contact-form .styled-checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5.1rem;
  height: 5.1rem;
  min-width: 5.1rem;
  min-height: 5.1rem;
  background: url("../images/arr.svg");
  background-size: cover;
}
@media (max-width: 1024px) {
  .contact-form .styled-checkbox:checked + label::after {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 1rem;
  }
}
.contact-form__img {
  position: absolute;
  right: 0;
  top: -10.2rem;
  width: 41.4rem;
  height: 81.1rem;
}
@media (max-width: 1024px) {
  .contact-form__img {
    display: none;
  }
}
.contact-form__img img {
  width: 100%;
  height: 100%;
}

.map {
  position: relative;
  margin-bottom: 9rem;
}
@media (max-width: 1024px) {
  .map {
    margin-bottom: 6rem;
  }
}
.map .blur {
  position: absolute;
  width: 92.8rem;
  height: 25.4rem;
  filter: blur(1000px);
  background: #6c62f7;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1rem;
}
.map__wrapper {
  width: 100%;
  height: 60.8rem;
  border-radius: 4rem;
  overflow: hidden;
  filter: grayscale(100%);
}
@media (max-width: 1024px) {
  .map__wrapper {
    height: 58.8rem;
  }
}
@media (max-width: 600px) {
  .map__wrapper {
    height: 25.5rem;
  }
}
.map__wrapper iframe {
  width: 100%;
  height: 100%;
}

.catalog {
  padding: 18rem 0 10rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .catalog {
    padding: 15.6rem 0 10rem;
  }
}
@media (max-width: 600px) {
  .catalog {
    padding: 11rem 0 7rem;
  }
}
.catalog__title {
  font: 400 4.8rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 5.2rem;
}
@media (max-width: 1024px) {
  .catalog__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  .catalog__title {
    font-size: 1.6rem;
    margin-bottom: 3.2rem;
  }
}
.catalog .blur {
  position: absolute;
  top: 51.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 136.8rem;
  height: 76.5rem;
  filter: blur(1000px);
  background: #6c62f7;
}
.catalog .container {
  position: relative;
}
.catalog__filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4.7rem;
}
@media (max-width: 1024px) {
  .catalog__filters {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .catalog__filters {
    gap: 1.2rem;
  }
}
.catalog__selects {
  display: flex;
  width: 100%;
  margin-right: 1.6rem;
}
@media (max-width: 1024px) {
  .catalog__selects {
    width: calc(100% + 6rem);
  }
  .catalog__selects::-webkit-scrollbar {
    display: none;
  }
}
.catalog__selects .wrap-selects {
  display: flex;
  gap: 1.2rem;
  max-width: 56.4rem;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .catalog__selects .wrap-selects {
    max-width: 100%;
    flex-wrap: nowrap;
    order: 1;
  }
}
@media (max-width: 1024px) {
  .catalog__selects .sort-select {
    order: 0;
    margin-right: 1.2rem;
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  .catalog__selects {
    flex-wrap: nowrap;
  }
}
.catalog__actions {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 1024px) {
  .catalog__actions {
    width: 100%;
    gap: 0;
  }
}
.catalog__action {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (max-width: 1024px) {
  .catalog__action {
    width: 100%;
  }
}
.catalog__action input {
  padding: 1.05rem 1.8rem;
  background: #2f2c4b;
  border-radius: 1.2rem;
  border: none;
  color: #fff;
}
@media (max-width: 1024px) {
  .catalog__action input {
    width: 100%;
  }
}
.catalog__action button {
  width: 4.2rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2f2c4b;
  border-radius: 1.2rem;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .catalog__action button {
    width: 9rem;
  }
}
@media (max-width: 600px) {
  .catalog__action button {
    width: 4.3rem;
    min-width: 4.3rem;
  }
}
.catalog__action button:hover {
  background: #6c62f7;
}
.catalog__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media (max-width: 1024px) {
  .catalog__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0.8rem;
  }
}
.catalog__item {
  width: 32.4rem;
  position: relative;
  z-index: 1;
	display: flex;
	flex-direction: column;
}
@media (max-width: 1024px) {
  .catalog__item {
    width: 100%;
  }
}
.catalog__item img {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}
.catalog__item-price{
	margin-top: auto;
}
.catalog__item .price {
  font: 600 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
}
@media (max-width: 600px) {
  .catalog__item .price {
    font-size: 1.6rem;
  }
}
.catalog__item .add-favorite {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 7;
}
.catalog__item .add-favorite.active svg path {
  fill: #fff;
}
.catalog__item .add-favorite svg {
  transition: all 0.3s;
}
.catalog__item .add-cart {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 5.1rem;
  height: 5.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6c62f7;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .catalog__item .add-cart {
    width: 3.2rem;
    height: 3.2rem;
  }
  .catalog__item .add-cart img {
    width: 1.7rem !important;
    height: 1.7rem !important;
  }
}
.catalog__item .add-cart span {
  display: none;
}
.catalog__item .add-cart.active img {
  display: none;
}
.catalog__item .add-cart.active span {
  display: block;
  font: 600 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
}
@media (max-width: 600px) {
  .catalog__item .add-cart.active span {
    font-size: 1.6rem;
  }
}
.catalog__item .add-cart img {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0;
}
.catalog__item-img {
  margin-bottom: 1.6rem;
}
.catalog__item-name {
  color: #fff;
  margin-bottom: 0.8rem;
	width: 90%;
}
.catalog__item-article {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}
@media (max-width: 600px) {
  .catalog__item-article {
    font-size: 0.8rem;
  }
}
.catalog__categories {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.3rem;
  overflow: auto;
}
.catalog__categories::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .catalog__categories {
    width: calc(100% + 4.5rem);
    padding-right: 3rem;
  }
}
.catalog__category {
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 3.4rem;
  background: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}
.catalog__category .close {
  display: none;
}
.catalog__category.active {
  padding: 0.4rem 0.4rem 0.4rem 1.6rem;
}
.catalog__category.active .close {
  display: flex;
}
.catalog__category .close {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  justify-content: center;
  align-items: center;
}
.catalog__category .close svg {
  width: 1.7rem;
  height: 1.7rem;
}

.error {
  position: relative;
  height: 100vh;
}
.error .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 46.8rem;
  height: auto;
}
@media (max-width: 1024px) {
  .error .logo {
    width: 31.6rem;
    transform: translate(-50%, -65%);
  }
}
@media (max-width: 600px) {
  .error .logo {
    width: 15.5rem;
    transform: translate(-50%, -78%);
  }
}
.error__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.error__wrap .error-text {
  font: 400 53rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
}
@media (max-width: 1024px) {
  .error__wrap .error-text {
    font-size: 38.5rem;
  }
}
@media (max-width: 600px) {
  .error__wrap .error-text {
    font-size: 18.8rem;
  }
}
.error__wrap p {
  font: 400 4.8rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -8rem;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .error__wrap p {
    font-size: 2.4rem;
    margin-top: 0rem;
  }
}
@media (max-width: 600px) {
  .error__wrap p {
    font-size: 1.6rem;
  }
}
.error__wrap button {
  border-radius: 2.6rem;
  padding: 1.85rem 6rem;
  width: 24.1rem;
  font: 700 1.6rem/90% "Cy Grotesk Grand", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  border-radius: 2.6rem;
  background: #6c62f7;
  display: block;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .error__wrap button {
    width: 100%;
  }
}

.product {
  padding-top: 15.2rem;
  margin-bottom: 5.4rem;
}
@media (max-width: 600px) {
  .product {
    padding-top: 11rem;
  }
}
.product__img {
  border-radius: 2rem;
  width: 65.2rem;
}
@media (max-width: 1024px) {
  .product__img {
    width: 100%;
  }
}
.product__img .main-swiper {
  width: 100%;
  height: auto;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.main-swiper .swiper-slide{
	height: auto;
}

@media (max-width: 1024px) {
  .product__img .main-swiper {
    height: 35.9rem;
  }
}
@media (max-width: 600px) {
  .product__img .main-swiper {
    height: 17.5rem;
  }
}
.product__img .main-swiper img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .product__img .main-swiper img {
    border-radius: 1.2rem;
  }
}
.product__img .thumbs-swiper {
  height: 11.1rem;
}
@media (max-width: 1024px) {
  .product__img .thumbs-swiper {
    height: 11.7rem;
  }
}
@media (max-width: 600px) {
  .product__img .thumbs-swiper {
    height: 5.7rem;
  }
}
.product__img .thumbs-swiper img {
  width: 100%;
  height: 100%;
}
.product__img .thumbs-swiper .swiper-slide {
  cursor: pointer;
}
.product__img .thumbs-swiper .swiper-slide img {
  border: 1px solid rgba(255, 255, 255, 0);
  transition: all 0.3s;
  border-radius: 2rem;
}
@media (max-width: 600px) {
  .product__img .thumbs-swiper .swiper-slide img {
    border-radius: 1.2rem;
  }
}
.product__img .thumbs-swiper .swiper-slide.swiper-slide-thumb-active img {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.product__wrapper {
  display: flex;
  gap: 2.4rem;
}
@media (max-width: 1024px) {
  .product__wrapper {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.product__info {
  width: 68.4rem;
}
@media (max-width: 1024px) {
  .product__info {
    width: 100%;
  }
}
.product__name {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.2rem;
}
@media (max-width: 600px) {
  .product__name {
    font-size: 1.6rem;
  }
}
.product__article {
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}
.product__price {
  font: 600 4.8rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 2.4rem;
}
@media (max-width: 600px) {
  .product__price {
    font-size: 2.4rem;
  }
}
.product__chars {
  margin-bottom: 1.6rem;
}
.product__chars:last-child {
  margin-bottom: 2.4rem;
}
.product__chars-title {
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}
.product__chars-wrap {
  display: flex;
  gap: 0.8rem;
}
.product__chars-wrap input {
  display: none;
}
.product__chars-wrap input:checked + label {
  background: #fff;
  color: #000;
  opacity: 1;
}
.product__chars-wrap label {
  display: block;
  padding: 1.05rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  transition: all 0.3s;
  color: #fff;
}
.product__descr p {
  color: #fff;
  font: 400 1.6rem/120% "Inter", sans-serif;
}

.product__descr ul{
	margin: 1.6rem 0;
	gap: 1rem;
}

.product__descr li{
	color: #fff;
  	font: 400 1.6rem/120% "Inter", sans-serif;
	list-style-type: disc;
	margin-left: 3rem;
}

.product__buttons {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.product__variation-items{
	margin-bottom: 2.4rem;
}
.product__variation-title{
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 1.2rem;
}

.variation-item{
	border-radius: 1.2rem;
	padding: 0.9rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	transition: all 0.3s;
}

.variation-item input{
	display: none;
}

.variation-item span{
	font-size: 1.6rem;
	letter-spacing: -0.04em;
	color: #fff;
	transition: all 0.3s;
}

.product__variation-items{
	display: flex;
	gap: 0.8rem;
}

.variation-item:has(input:checked){
	background: #fff;
}

.variation-item:has(input:checked) span {
    color: #000;
}

@media (max-width: 1024px) {
  .product__buttons {
    position: fixed;
    z-index: 77;
    left: 0;
    width: 100%;
    bottom: 0;
    border-radius: 2rem 2rem 0 0;
    backdrop-filter: blur(200px);
    background: rgba(255, 255, 255, 0.1);
    padding: 1.8rem 0.8rem 1rem;
  }
}
@media (max-width: 600px) {
  .product__buttons {
    display: none;
  }
}
.product__buttons .btn {
  font: 700 1.6rem/90% "Cy Grotesk Grand", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  border-radius: 2.6rem;
  padding: 1.8rem 6rem;
  width: 22.6rem;
  background: #6c62f7;
}
@media (max-width: 1024px) {
  .product__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
.product__buttons .add-favorite {
  width: 5.1rem;
  height: 5.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .product__buttons .add-favorite {
    min-width: 5.1rem;
  }
}
.product__buttons .add-favorite.active svg path {
  fill: #fff;
}
.product__buttons .add-favorite svg {
  width: 2rem;
  height: 1.8rem;
}

.recommendations {
  margin-bottom: 10rem;
}
@media (max-width: 1024px) {
  .recommendations .catalog__item {
    display: none;
  }
  .recommendations .catalog__item:nth-child(1), .recommendations .catalog__item:nth-child(2) {
    display: block;
  }
}

.cart {
  padding: 18rem 0 10rem;
}
@media (max-width: 1024px) {
  .cart {
    padding: 14rem 0 10rem;
  }
}
@media (max-width: 600px) {
  .cart {
    padding: 11rem 0 10rem;
  }
}
.cart__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
}
@media (max-width: 1024px) {
  .cart__wrapper {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.cart__products {
  width: 84.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 1024px) {
  .cart__products {
    width: 100%;
  }
}
.cart__product {
  width: 100%;
  padding: 2.4rem;
  position: relative;
  display: flex;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4.4rem;
}
@media (max-width: 600px) {
  .cart__product {
    flex-wrap: wrap;
    padding: 2.4rem 1.6rem;
    border-radius: 2rem;
  }
}
.cart__product-img {
  border-radius: 2rem;
  width: 22rem;
  height: auto;
  margin-right: 2.4rem;
}
@media (max-width: 600px) {
  .cart__product-img {
    min-width: 10.2rem;
    width: 10.2rem;
    height: 14.2rem;
	  margin-right: 2rem;
  }
}
.cart__product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cart__product-info {
  margin-right: 6.9rem;
	width: 25rem;
}
@media (max-width: 1024px) {
  .cart__product-info {
    max-width: 18.4rem;
  }
}
@media (max-width: 600px) {
  .cart__product-info {
    margin-right: 0;
    max-width: 18.7rem;
  }
}
.cart__product-name {
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.6rem;
}
.cart__product-chars {
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (max-width: 600px) {
  .cart__product-price {
    margin-left: auto;
    margin-top: -3rem;
  }
}
.cart__product-price .price {
  font: 400 2.4rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.6rem;
}
@media (max-width: 600px) {
  .cart__product-price .price {
    margin-left: -4rem;
  }
}
.cart .del {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
	cursor: pointer;
	
}
@media (max-width: 600px) {
  .cart .del {
    top: auto;
    right: auto;
    bottom: 2.4rem;
    left: 1.6rem;
  }
}
.cart .del svg {
  width: 1.7rem;
  height: 1.7rem;
}
@media (max-width: 600px) {
  .cart .del svg {
    width: 2.3rem;
    height: 2.4rem;
  }
}
.cart .add-favorite {
  display: none;
}
.cart .add-favorite.active svg path {
  fill: #fff;
}
@media (max-width: 600px) {
  .cart .add-favorite {
    position: absolute;
    bottom: 2.4rem;
    left: 9.6rem;
    display: block;
  }
  .cart .add-favorite svg {
    width: 3.2rem;
    height: 2.8rem;
  }
}
.cart__product-col {
  border-radius: 1.2rem;
  padding: 0.9rem;
  width: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 600px) {
  .cart__product-col {
    width: 14.2rem;
  }
}
.cart__product-col button {
  width: 3rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
}
.cart__product-col button:disabled {
  color: rgba(255, 255, 255, 0.1);
}
.cart__product-col input {
  width: 4rem;
  color: #fff;
  border: none;
  text-align: center;
}
.cart__results {
  position: sticky;
  top: 3rem;
  width: 47.8rem;
  padding: 2.4rem;
  border-radius: 4.6rem;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  .cart__results {
    width: 100%;
	  border-radius: 2.4rem;
  }
}
.cart__results-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}
.cart__results-wrap span {
  color: #fff;
}
.cart .result-price {
  font: 600 2.4rem/100% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5);
  margin: 1.2rem 0 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .cart .result-price {
    font-size: 1.6rem;
  }
}
.cart .result-price span {
  font: 600 4.8rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
}
@media (max-width: 600px) {
  .cart .result-price span {
    font-size: 2.4rem;
  }
}
.cart .payment-check {
  margin-bottom: 1.6rem;
}
@media (max-width: 600px) {
  .cart .payment-check {
    margin-bottom: 1.2rem;
  }
}
.cart .payment-check .styled-checkbox {
  position: absolute;
  opacity: 0;
  display: none;
}
.cart .payment-check .styled-checkbox + label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #fff;
  position: relative;
  font-size: 1.6rem;
}
@media (max-width: 600px) {
  .cart .payment-check .styled-checkbox + label {
    font-size: 1.4rem;
  }
}
.cart .payment-check .styled-checkbox + label::after {
  content: "";
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  min-width: 3.2rem;
  min-height: 3.2rem;
  background: #fff;
}
.cart .payment-check .styled-checkbox:checked + label::before {
  content: "";
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: #6c62f7;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
}
@media (max-width: 1024px) {
  .cart .payment-check .styled-checkbox:checked + label::before {
    right: 0.6rem;
  }
}
.cart .btn {
  border-radius: 2.6rem;
  backdrop-filter: blur(200px);
  width: 100%;
  padding: 1.85rem;
  font: 700 1.6rem/90% "Cy Grotesk Grand", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  background: #6c62f7;
  justify-content: center;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .cart .btn {
    
  }
}
.cart .btn:disabled {
  background: rgba(255, 255, 255, 0.1);
}

.profile-section {
  padding: 14.5rem 0 10rem;
  min-height: 70vh;
}
@media (max-width: 1024px) {
  .profile-section {
    min-height: unset;
  }
}
@media (max-width: 1024px) {
  .profile-section {
    padding-top: 11rem;
  }
}
.profile-section__title {
  font: 400 4.8rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 3.6rem;
}
.profile-section__wrapper {
  width: 49.4rem;
}
@media (max-width: 1024px) {
  .profile-section__wrapper {
    width: 100%;
  }
}
.profile-section__tabs {
  display: flex;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem;
  margin-bottom: 2.6rem;
  border-radius: 1.2rem;
}
.profile-section__tabs a {
  width: 50%;
  padding: 1.35rem;
  border-radius: 1.2rem;
  color: #fff;
  text-align: center;
}
.profile-section__tabs a.active {
  background: #fff;
  color: #000;
}
.profile-section__form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.profile-section__form input {
  color: #fff;
  padding: 1.55rem 1.6rem;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  border: none;
}
.profile-section__form .policy {
  margin: 0.8rem 0;
}
.profile-section__form .policy .styled-checkbox {
  display: none;
}
.profile-section__form .policy .styled-checkbox + label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  cursor: pointer;
	position: relative;
}
@media (max-width: 1024px) {
  .profile-section__form .policy .styled-checkbox + label {
    font-size: 1.6rem;
  }
}
.profile-section__form .policy .styled-checkbox + label:before {
  content: "";
  border: 1.7px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
}
@media (max-width: 1024px) {
  .profile-section__form .policy .styled-checkbox + label:before {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 1rem;
  }
}
.profile-section__form .policy .styled-checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  background: url("../images/arr.svg");
  background-size: cover;
}
@media (max-width: 1024px) {
  .profile-section__form .policy .styled-checkbox:checked + label::after {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    border-radius: 1rem;
  }
}
.profile-section__form button {
  width: 100%;
  padding: 1.85rem;
  background: #6c62f7;
  border-radius: 2.6rem;
  font: 700 1.6rem/90% "Cy Grotesk Grand", sans-serif;
  color: #fff;
}
.profile-section__wrapper .btn{
	width: 100%;
  	padding: 1.85rem;
  	border-radius: 2.6rem;
  	font: 700 1.6rem/90% "Cy Grotesk Grand", sans-serif;
  	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	text-align: center;
	margin-top: 1.6rem;
	display: block;
}
.profile-section__form .error-notify {
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #ff3b30;
}
.profile-section__data {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 0.8rem;
}
.profile-section__data .data {
  font-size: 2.4rem;
  color: #fff;
}
.profile-section__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-section__item span {
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
}

.profile-login {
  padding-bottom: 6rem;
  min-height: unset;
}

.history-orders {
  padding-bottom: 10rem;
}
.history-orders__title {
  font: 400 4.8rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 3.6rem;
}
.history-orders__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.history-orders__order {
  width: 100%;
  padding: 2rem;
  border-radius: 4.4rem;
  backdrop-filter: blur(200px);
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
.history-orders__name {
  font: 400 1.6rem/120% "Inter", sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 2.4rem;
}
.history-orders__price {
  font: 600 4.8rem/110% "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
}
@media (max-width: 1024px) {
  .history-orders__price {
    font-size: 1.6rem;
    position: static;
    margin-bottom: 2.4rem;
  }
}
.history-orders__status {
  font: 600 2.4rem/110% "Inter", sans-serif;
  color: #fff;
  margin-bottom: 2rem;
}
.history-orders__items {
  display: flex;
  gap: 1.6rem;
}
.history-orders__item {
  width: 11.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
}
.history-orders__item-img {
  width: 100%;
}
@media (max-width: 1024px) {
  .history-orders__item-img {
    order: 0;
  }
}
.history-orders__item-img img {
  width: 100%;
  height: auto;
  border-radius: 1.1rem;
}
@media (max-width: 1024px) {
  .history-orders__item-article {
    order: 1;
  }
}
@media (max-width: 1024px) {
  .history-orders__item-color {
    order: 2;
  }
}
@media (max-width: 1024px) {
  .history-orders__item-size {
    order: 3;
  }
}

@media (max-width: 600px) {
  .blur {
    filter: unset !important;
    display: none !important;
  }
}

.add-cart.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.add-cart.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.product__buttons .cart{
	padding: 0;
}

.variations_form{
	padding: 0;
}

.woocommerce-result-count{
	display: none !important;
}

.woocommerce-ordering{
	display: none;
}

.variations_form .add-favorite{
	display: flex;
}

.input-text{
	display: none;
}

.woocommerce-message{
	display: none;
}

.product__buttons .btn{
	width: 23rem;
}

.products{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 2.4rem;
}

.product .cart{
	padding: 0;
} 

.product__buttons .add-favorite{
	display: flex !important;
}

.page-numbers{
	display: flex;
    gap: 1.6rem;
    justify-content: center;
    padding-top: 9rem;
	align-items: flex-end;
}
.page-numbers a{
	color: #fff;
	font-size: 2rem;
	padding: 0;
	width: 6rem;
	height: 6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
}


.prev{
	margin-right: 2rem;
}

.next{
	margin-left: 2rem;
}

.page-numbers span.current{
	color: #6c62f7;
	font-size: 2rem;
	padding: 0 !important;
	width: 6rem;
	height: 6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 1rem;
}

.page-numbers .dots{
	color: #fff;
	font-size: 2rem;
	padding: 0 !important;
	padding-bottom: 1rem !important;
}

.sort-select{
	display: none;
}

.catalog__filters .sort-select{
	display: block;
}

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

.out-of-stock-label{
	font-size: 1.8rem;
	color: #d93030;
}

.product__out-of-stock{
	margin-top: 2.4rem;
}

.out-of-stock-message{
	font-size: 2.4rem;
	color: #d93030;
}

.catalog__action {
            position: relative;
        }
        .ajax-search-form {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .ajax-search-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 20px;
            font-size: 14px;
            outline: none;
        }
        .ajax-search-input:focus {
            border-color: #007cba;
        }
        .ajax-search-results {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #2f2c4b;
            border-radius: 10px;
            margin-top: 5px;
            max-height: 400px;
            overflow-y: auto;
            display: none;
            z-index: 9999;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .search-result-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: background 0.2s;
        }
        .search-result-item:hover {
            background: #2f2c4b;
        }
        .search-result-item:last-child {
            border-bottom: none;
        }
        .search-result-image {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            flex-shrink: 0;
        }
        .search-result-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }
        .search-result-info {
            flex: 1;
        }
        .search-result-title {
            font-weight: 500;
            margin-bottom: 5px;
            color: #fff;
        }
        .search-result-price {
            color: #fff;
            font-weight: bold;
        }
        .search-loading,
        .search-no-results,
        .search-error {
            padding: 1.5rem;
            text-align: center;
            color: #666;
        }
        .search-error {
            color: #dc3545;
        }

.woocommerce-no-products-found{
	    height: 50vh;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.woocommerce-no-products-found .woocommerce-info{
	padding: 0;
	letter-spacing: -0.03em;
	color: rgba(255, 255, 255, 0.5);
	font-size: 3.8rem;
	background: transparent;
	border: none;
}

.woocommerce-no-products-found .woocommerce-info::before{
	display: none
}

.woocommerce-no-products-found .woocommerce-info::after{
	display: none
}

.main .woocommerce-info{
	padding: 0;
	letter-spacing: -0.03em;
	color: rgba(255, 255, 255, 0.5);
	font-size: 3.8rem;
	background: transparent;
	border: none;
	margin-bottom: 0;
}

.main .woocommerce-info::before{
	display: none !important;
}

.main .woocommerce-info::after{
	display: none !important;
}

.main{
	flex: 1;
	display: flex;
	flex-direction: column;
}

.main .woocommerce{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2.4rem;
}

.wc-backward {
    border-radius: 2.6rem;
    padding: 1.8rem 6rem;
    width: auto;
    background: #6c62f7;
    font: 700 1.6rem / 90% "Cy Grotesk Grand", sans-serif;
    letter-spacing: -0.04em;
    color: #fff;
    position: relative;
}

.add-cart.active .cart-count {
    display: flex;
}

.add-cart.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Стили для уведомлений */
.ajax-notice {
    position: fixed;
    top: 3rem;
    right: 4rem;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 99999999999999999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.ajax-notice.show {
    opacity: 1;
    transform: translateX(0);
}

.ajax-notice.success {
    background-color: #4CAF50;
}

.ajax-notice.error {
    background-color: #f44336;
}

/* Анимация для счетчика */
.cart-counter.pulse {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.yith-wcwl-add-to-wishlist-button__label{
	display: none;
}

.yith-add-to-wishlist-button-block{
	position: absolute !important;
	top: 1.5rem;
	right: 1.5rem;
	margin: 0 !important;
}

.product__buttons .yith-add-to-wishlist-button-block{
	position: static !important;
}

.yith-wcwl-feedback-messages-container{
	display: none !important;
}

.wishlist-empty p{
	color: rgba(255, 255, 255, 0.5);
	font-size: 3.8rem;
	background: transparent;
	border: none;
	margin-bottom: 0;
}

.wishlist-empty a{
	border-radius: 2.6rem;
    padding: 1.8rem 6rem;
    width: auto;
    background: #6c62f7;
    font: 700 1.6rem / 90% "Cy Grotesk Grand", sans-serif;
    letter-spacing: -0.04em;
    color: #fff;
    position: relative;
}

.wishlist-empty{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 2.4rem;
	height: 30vh;
}

@media (max-width: 962px){
	.products{
		 grid-template-columns: repeat(2, 1fr);
	}
	.product__img .main-swiper{
		height: 33.5rem;
	}
	.product__img .thumbs-swiper{
		height: 10.5rem;
	}
	.product .product__buttons{
		display: flex !important;
		bottom: 8.7rem;
		background: #424147;
	}
	.product-bar{
		border-radius: 0 0 1.8rem 1.8rem;
		background: #424147;
	}
	.product__buttons .btn{
		width: 100%;
	}
	.main .woocommerce{
		min-height: 50vh;
	}
	.main .woocommerce-info{
		text-align: center;
		font-size: 2rem;
	}
	.wishlist-empty p{
		font-size: 2rem;
	}
	.page-numbers a{
		width: 4rem;
		height: 4rem;
		font-size: 1.8rem;
	}
	.page-numbers span.current{
		width: 4rem;
		height: 4rem;
		font-size: 1.8rem;
	}
	.page-numbers{
		padding-top: 5rem;
	}
}

.thankyou{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.thankyou__title{
	font-size: 4.8rem;
	text-align: center;
	color: #fff;
	margin-bottom: 2.5rem;
}

.thankyou__actions .btn{
	padding: 1.85rem 6rem;
	background: #6c62f7;
	border-radius: 2.6rem;
	width: 24.1rem;
	display: block;
	background: #6c62f7; 
	margin: 0 auto;
	font: 700 1.6rem / 90%  "Cy Grotesk Grand", sans-serif;
	letter-spacing: -0.04em;
	color: #fff;
}

@media (max-width: 1024px){
	.thankyou__title{
		font-size: 2.4rem;
	}
	.thankyou{
		height: 65vh
	}
}

input.company{
	display: none;
}

.contact-form__form.company input.company{
	display: block;
}

.filters{
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 50rem;
	padding: 7rem 2.4rem 3rem;
	backdrop-filter: blur(100px);
    background: rgba(67, 63, 115, 0.5);
	z-index: 999999999;
	display: flex;
	flex-direction: column;
	border-radius: 2.4rem 0 0 2.4rem;
	transform: translatex(100%);
	transition: all 0.3s;
	opacity: 0;
}

.filter-more{
	cursor: pointer;
}

.close{
	cursor: pointer;
}

.filters.active{
	transform: translatex(0%);
	opacity: 1;
}

.filters__title{
	font: 400 3rem / 110% "Inter", sans-serif;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 3rem;
}

.filters__wrapper{
	flex: 1;
	overflow: auto;
}

.filters .close{
	position: absolute;
	top: 3rem;
	right: 2rem;
}

.bapf_head h3{
	color: #fff;
	margin-bottom: 1rem;
}

.irs--flat .irs-bar{
	background-color: #6c62f7 !important;
}
.irs--flat .irs-handle>i{
	background-color: #6c62f7 !important;
}

.irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single{
	background-color: #6c62f7 !important;
}

.irs--flat .irs-from:before, .irs--flat .irs-to:before, .irs--flat .irs-single:before{
	border-top-color: #6c62f7 !important;
}

.filters__wrapper::-webkit-scrollbar {
 	display: none;
}

.filters__wrapper::-webkit-scrollbar-track {
  background: transparent; /* цвет дорожки */
  border-radius: 10px;
}

.filters__wrapper::-webkit-scrollbar-thumb {
  background: #6c62f7; /* цвет ползунка */
  border-radius: 10px;
}

.filters__wrapper{
	padding-right: 1rem;
}


.bapf_body{
	color: #fff;
}

.bapf_body{
	width: 100%;
}

.filters__actions{
	padding-top: 1.6rem;
}

.bapf_update{
	border-radius: 2.6rem;
    padding: 1.85rem;
    width: 100%;
    background: #6c62f7;
    color: #fff;
    font: 700 1.6rem / 90% "Cy Grotesk Grand", sans-serif;
}

.bapf_reset{
	border-radius: 2.6rem;
    padding: 1.85rem;
    width: 100%;
    background: #000;
    color: #fff;
    font: 700 1.6rem / 90% "Cy Grotesk Grand", sans-serif;
}

.bapf_sfilter.btn{
	margin-bottom: 1rem;
}

.bapf_body li input{
	display: none;
}

.bapf_body li label{
	position: relative;
	display: flex !important;
	align-items: center;
	gap: 1rem;
}

.bapf_body li label::before{
	content: '';
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	min-width: 1.6rem;
	min-height: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 0.55rem;
}

.bapf_body li label::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
   	width: 1.6rem;
	height: 1.6rem;
	min-width: 1.6rem;
	min-height: 1.6rem;
    background: url(../images/arr.svg);
    background-size: cover;
	transition: all 0.3s;
	opacity: 0;
	border-radius: 0.3rem;
}

.bapf_body li input:checked + label::after{
	opacity: 1;
}

.form-notification {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для отключенной кнопки */
.contact-form__form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tg svg{
	width: 3.5rem;
	height: 3.5rem;
}

.footer .wrap{
	display: flex;
	gap: 1rem;
}

.inf-descr{
	color: rgba(255, 255, 255, 0.5);
	margin-top: 1.5rem;
	font-size: 1.2rem !important;
}

.modal .policy a{
	color: #fff;
	text-decoration: underline;
}

.policy{
	color: #fff;
	padding: 18rem 0 10rem;
}

.policy h1 {
            font-size: 2.1rem;
            font-weight: 600;
            color: #fff;
            border-bottom: 2px solid #6c62f7;
            padding-bottom: 15px;
            margin-bottom: 30px;
            letter-spacing: -0.3px;
        }
       .policy  h2 {
            font-size: 1.5rem;
            font-weight: 500;
            color: #fff;
            margin-top: 35px;
            margin-bottom: 15px;
            padding-left: 0px;
            border-left: 5px solid #6c62f7;
            padding-left: 15px;
        }
       .policy  h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-top: 25px;
            margin-bottom: 10px;
        }
.policy a{
	display: inline;
	color: #fff;
	text-decoration: underline;
}
        .policy p, .policy li {
            color: #fff;
            margin-bottom: 12px;
        }
        .policy ul,  .policy ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        .policy li {
            margin-bottom: 6px;
        }
        .policy .legal-highlight {
            background-color: #f0f7ff;
            padding: 18px 22px;
            border-radius: 10px;
            border-left: 6px solid #fff;
            margin: 25px 0;
            font-size: 0.98rem;
        }
        .policy table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 0.95rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            border-radius: 10px;
            overflow: hidden;
        }
        .policy th {
            background-color: rgba(255,255,255,0.5);
            color: #fff;
            font-weight: 500;
            padding: 14px 12px;
            text-align: left;
            border: 1px solid #fff;
        }
        .policy th:last-child {
            border-right: none;
        }
        .policy td {
             background-color: rgba(255,255,255,0.5);
            padding: 14px 12px;
            border: 1px solid #fff;
            vertical-align: top;
			color: #ffff;
        }
        .policy tr:last-child td {
            border-bottom: none;
        }
        .policy .contact-block {
            background: rgba(255,255,255, 0.5);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0 15px;
            border: 1px solid #cbd6e3;
        }
        .policy .contact-block p {
            margin-bottom: 10px;
        }
        .policy .badge {
            background-color: #1e4a76;
            color: #000;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 30px;
            display: inline-block;
            letter-spacing: 0.3px;
        }
        .policy .footer-note {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed #b0c4d9;
            font-size: 0.9rem;
            color: #5e6f82;
            text-align: center;
        }
        .policy .version {
            font-family: monospace;
            background: #ecf1f7;
            padding: 3px 9px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        @media (max-width: 700px) {
            .policy .document-wrapper {
                padding: 25px 18px;
            }
            .policy h1 {
                font-size: 1.7rem;
            }
            .policy table, thead, tbody, th, td, tr {
                display: block;
            }
            .policy th {
                display: none;
            }
            .policy td {
                border: 1px solid #d5dee8;
                margin-bottom: 8px;
                border-radius: 8px;
                padding: 12px;
            }
            .policy td:before {
                content: attr(data-label);
                font-weight: 700;
                color: #fff;
                display: inline-block;
                width: 100%;
                margin-bottom: 5px;
                font-size: 0.9rem;
            }
        }

	.contact-form .policy{
		padding: 0;
	}
	.modal .policy{
		padding: 0;
	}
	.profile-section__form .policy{
		padding: 0 !important;
	}


@media (max-width: 962px){
	.policy{
		padding-top: 10rem;
	}
	.filters{
		width: 100%;
	}
	.category-select{
		display: none;
	}
	.footer .links{
		flex-direction: column;
	}
	.footer{
		padding-bottom: 11rem;
	}
	.filters{
		border-radius: 0;
	}
	.footer__bottom p{
		font-size: 1.4rem !important;
		color: rgba(255, 255, 255, 0.5) !important;
	}
	.footer__bottom a{
		font-size: 1.4rem !important;
		color: rgba(255, 255, 255, 0.5) !important;
	}
	.contact-form .styled-checkbox + label{
		align-items: flex-start;
	}
	.modal__form .styled-checkbox + label{
		align-items: flex-start;
	}
}

.modal .policy p{
	margin-bottom: 0 !important;
}

.contact-block h2{
	margin-top: 0;
}
