@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
select,
textarea {
  all: unset;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --primary-color: #000;
  --secondary-color: #fff;
  --accent-color: #f5f5f5;
  --text-muted: rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

body,
html {
  font-family: "Inter", sans-serif;
  font-size: 62.5%;
  font-size: 62.5%;
  font-size: 62.5%;
}
@media (max-width: 1860px) {
  body,
  html {
    font-size: 60.7%;
  }
}
@media (max-width: 1800px) {
  body,
  html {
    font-size: 58.9%;
  }
}
@media (max-width: 1740px) {
  body,
  html {
    font-size: 57.1%;
  }
}
@media (max-width: 1680px) {
  body,
  html {
    font-size: 55.3%;
  }
}
@media (max-width: 1620px) {
  body,
  html {
    font-size: 53.5%;
  }
}
@media (max-width: 1560px) {
  body,
  html {
    font-size: 51.7%;
  }
}
@media (max-width: 1500px) {
  body,
  html {
    font-size: 49.9%;
  }
}
@media (max-width: 1440px) {
  body,
  html {
    font-size: 48.1%;
  }
}
@media (max-width: 1340px) {
  body,
  html {
    font-size: 59.5%;
  }
}
@media (max-width: 1280px) {
  body,
  html {
    font-size: 56.5%;
  }
}
@media (max-width: 1220px) {
  body,
  html {
    font-size: 53.5%;
  }
}
@media (max-width: 1160px) {
  body,
  html {
    font-size: 50.5%;
  }
}
@media (max-width: 1100px) {
  body,
  html {
    font-size: 47.5%;
  }
}
@media (max-width: 1040px) {
  body,
  html {
    font-size: 44.5%;
  }
}
@media (max-width: 780px) {
  body,
  html {
    font-size: 36%;
  }
}
@media (max-width: 768px) {
  body,
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 748px) {
  body,
  html {
    font-size: 61%;
  }
}
@media (max-width: 728px) {
  body,
  html {
    font-size: 59.5%;
  }
}
@media (max-width: 708px) {
  body,
  html {
    font-size: 58%;
  }
}
@media (max-width: 688px) {
  body,
  html {
    font-size: 56.5%;
  }
}
@media (max-width: 668px) {
  body,
  html {
    font-size: 55%;
  }
}
@media (max-width: 648px) {
  body,
  html {
    font-size: 53.5%;
  }
}
@media (max-width: 628px) {
  body,
  html {
    font-size: 52%;
  }
}
@media (max-width: 608px) {
  body,
  html {
    font-size: 50.5%;
  }
}
@media (max-width: 588px) {
  body,
  html {
    font-size: 49%;
  }
}
@media (max-width: 568px) {
  body,
  html {
    font-size: 47.5%;
  }
}
@media (max-width: 548px) {
  body,
  html {
    font-size: 46%;
  }
}
@media (max-width: 528px) {
  body,
  html {
    font-size: 44.5%;
  }
}
@media (max-width: 520px) {
  body,
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 425px) {
  body,
  html {
    font-size: 58%;
  }
}
@media (max-width: 375px) {
  body,
  html {
    font-size: 55%;
  }
}
@media (max-width: 360px) {
  body,
  html {
    font-size: 52.5%;
  }
}
@media (max-width: 320px) {
  body,
  html {
    font-size: 50%;
  }
}

.container {
  max-width: 186rem;
  margin: 0 auto;
  padding: 0 3rem;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
h2,
h1,
h3 {
  font-size: 4rem;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
a {
  position: relative;
  transition: var(--transition);
}
a svg {
  width: 1.6rem;
  transition: var(--transition);
}

a.white.underline-hover::before {
  background-color: #ffffff;
}

a.underline-hover:hover::before,
a.underline-hover-active::before {
  transform: scaleX(1);
}

a.underline-hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: #000;
  bottom: -0.4rem;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn:hover {
  gap: 2rem;
}

.btn:hover svg {
  transform: translateX(3px);
}

.header {
  padding: 2rem 0;
  position: relative;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0);
  animation: slideDown 0.5s ease;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.header.white {
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header.hidden {
  transform: translateY(-100%);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header__icons {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.header a {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  cursor: pointer;
}
.header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
  transition: var(--transition);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.hero__video {
  width: 100%;
  height: 65rem;
  overflow: hidden;
}
.hero__video video,
.hero__video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category {
  margin: 12rem 0 0;
}
.category a {
  font-size: 1.8rem;
  display: flex;
  gap: 1.6rem;
  text-transform: uppercase;
}
@media(max-width:768px){
	.category a{
		font-size:1.4rem;
	}
}
.category__title {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.category .swiper {
  position: relative;
  padding: 2rem 0;
}
.category .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.category .swiper-slide:nth-child(2n) img {
  width: 100%;
  height: 30rem;
}
.category__list-item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 45rem;
  width: 100%;
  font-size: 1.8rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}
.category__list-item img {
  width: 100%;
  height: 30rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}
.category__list-item-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category__list-item-text p {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.category__list-item-text p:first-child {
  opacity: 0.5;
}
.category .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}
.category .swiper-button-prev,
.category .swiper-button-next {
  color: var(--primary-color);
  width: 4rem;
  height: 4rem;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.category .swiper-button-prev:after,
.category .swiper-button-next:after {
  font-size: 1.6rem;
}

.collections {
  color: #ffffff;
  margin: 10rem 0 0;
}
.collections__list {
  display: flex;
  gap: 1rem;
}
.collections__list-item {
  max-width: 61.3rem;
  height: 75rem;
  position: relative;
  padding: 4rem 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}
.collections__list-item div {
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
  align-items: center;
  margin-top: auto;
  z-index: 2;
}
.collections__list-item p {
  color: #ffffff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
}
.collections__list-item p:first-child {
  font-size: 4rem;
}
.collections__list-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  transition: var(--transition);
}
.collections__list-item:hover img {
  transform: scale(1.05);
}
.collections__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}
.collections__list:last-child {
  margin-top: 1rem;
}
.collections__list:last-child .collections__list-item {
  width: 100%;
  max-width: 100%;
}

.products {
  margin: 12rem 0 0;
}
.products__title {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.products a {
  font-size: 1.8rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  text-transform: uppercase;
}
.products .swiper {
  position: relative;
  padding: 2rem 0;
}
.products .swiper-slide {
  height: auto;
}
.products__list-item {
  max-width: 45rem;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}
.products__list-item img {
  width: 100%;
  height: 58rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}
.products__list-item:hover img {
  transform: scale(1.02);
}
.products__list-item-text {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-transform: uppercase;
}
.products__list-item-text-category {
  font-size: 1.4rem;
  opacity: 0.5;
}
.products__list-item-text-name {
  font-size: 1.8rem;
}
.products__list-item-text-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
}
.products .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}
.products .swiper-button-prev,
.products .swiper-button-next {
  color: var(--primary-color);
  width: 4rem;
  height: 4rem;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.products .swiper-button-prev:after,
.products .swiper-button-next:after {
  font-size: 1.6rem;
}

.text-section {
  margin-top: 15.5rem;
}
.text-section .container {
  max-width: 127rem;
  padding: 0;
}
.text-section h2 {
  margin-left: 23.8rem;
  line-height: 5.5rem;
  margin-bottom: 2.5rem;
}
.text-section h2 span {
  margin-left: 15rem;
}
.text-section-text {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  margin-left: 70.5rem;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
  max-width: 41rem;
}
.text-section__img {
  display: flex;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 1s ease 0.6s forwards;
}
.text-section__img-add {
  max-width: 45rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.text-section__img-add p {
  max-width: 38.7rem;
}
.text-section__img-add img {
  width: 100%;
  height: 40.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
}
.text-section__img-add a {
  margin-top: auto;
  margin-left: auto;
}
.text-section__img > img {
  width: 68.5rem;
  height: 58rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.text-section p {
  font-size: 1.6rem;
  opacity: 0.5;
}
.text-section a {
  font-size: 1.8rem;
  gap: 1.6rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.blog {
  margin: 21.5rem 0 0;
}
.blog__title {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.blog a {
  font-size: 1.8rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  text-transform: uppercase;
}
.blog .swiper {
  position: relative;
  padding: 2rem 0;
}
.blog .swiper-slide {
  height: auto;
}
.blog__list-item {
  max-width: 45rem;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}
.blog__list-item img {
  width: 100%;
  height: 58rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition);
}
.blog__list-item:hover img {
  transform: scale(1.02);
}
.blog__list-item-text {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog__list-item-text-date {
  font-size: 1.4rem;
  opacity: 0.5;
  text-transform: uppercase;
}
.blog__list-item-text-name {
  font-size: 1.8rem;
  text-transform: uppercase;
}
.blog__list-item-text-more {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  opacity: 0.5;
}
.blog .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}
.blog .swiper-button-prev,
.blog .swiper-button-next {
  color: var(--primary-color);
  width: 4rem;
  height: 4rem;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.blog .swiper-button-prev:after,
.blog .swiper-button-next:after {
  font-size: 1.6rem;
}

.footer {
  margin: 15rem 0 4rem;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}
.footer__logo img {
  width: 21.4rem;
}
.footer__menu p {
  font-size: 1.8rem;
  margin-bottom: 2.1rem;
  text-transform: uppercase;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__menu li,
.footer__menu a {
  font-size: 1.6rem;
}
.footer__menu a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__menu a svg {
  width: 1rem;
}

.breadcrumbs {
  margin: 3.5rem 0 4rem;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.breadcrumbs a {
  color: rgba(0, 0, 0, 0.3137254902);
  transition: 0.3s ease;
}
.breadcrumbs a:hover {
  color: #000000;
}
.breadcrumbs .container,
.breadcrumbs .woocommerce-breadcrumb {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.8rem;
}
.catalog-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.catalog-pagination .page-numbers a {
  display: block;
  font-weight: 400;
  padding: 0;
  transition: 0.3s ease;
  color: #000000;
}
.catalog-pagination .page-numbers a:hover {
  font-weight: 600;
}
.catalog-pagination .page-numbers.current {
  font-weight: 600;
}

@media (max-width: 1300px) {
  .category__list-item img {
    height: 30rem;
  }
  .category__list-item:nth-child(2n) img {
    height: 30rem;
  }
  .collections__list-item {
    height: 52rem;
  }
  .products__list-item img,
  .blog__list-item img {
    height: 42rem;
  }
}
@media (max-width: 1100px) {
  .category__list-item img {
    height: 45rem;
  }
  .category__list-item:nth-child(2n) img {
    height: 40rem;
  }
  .collections__list-item {
    height: 52rem;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 1.5rem 0;
  }
  .header__menu {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .header__icons {
    gap: 1.5rem;
  }
  .hero__video {
    height: 60rem;
  }
  .category {
    margin: 8rem 0 0;
  }
  .category__title {
    gap: 2rem;
  }
  .category .swiper-button-prev,
  .category .swiper-button-next {
    display: none;
  }
  .category__list-item img {
    height: 40rem;
  }
  .category__list-item:nth-child(2n) img {
    height: 40rem;
  }
  .collections {
    margin: 8rem 0 0;
  }
  .collections__list {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .collections__list:last-child {
    margin-top: 0.6rem;
  }
  .collections__list-item {
    max-width: 100%;
    width: 100%;
    height: 40rem;
    padding: 4rem;
  }
  .collections__list-item:nth-child(2), .collections__list-item:nth-child(3) {
    width: calc(50% - 0.3rem);
  }
  .collections__list-item div {
    gap: 2rem;
  }
  .collections__list-item p:first-child {
    font-size: 3rem;
  }
  .products {
    margin: 8rem 0 0;
  }
  .products .swiper-button-prev,
  .products .swiper-button-next {
    display: none;
  }
  .products__list-item img {
    height: 40rem;
  }
  .text-section {
    margin-top: 8rem;
  }
  .text-section .container {
    padding: 0 2rem;
  }
  .text-section h2 {
    margin-left: 0;
    font-size: 3rem;
    line-height: 4rem;
  }
  .text-section h2 span {
    margin-left: 0;
    display: block;
  }
  .text-section-text {
    margin-left: 0;
  }
  .text-section__img {
    flex-direction: column;
  }
  .text-section__img > img {
    width: 100%;
    height: 40rem;
  }
  .blog {
    margin: 8rem 0 0;
  }
  .blog__title {
    margin-bottom: 1rem;
  }
  .blog .swiper-button-prev,
  .blog .swiper-button-next {
    display: none;
  }
  .blog__list-item img {
    height: 40rem;
  }
  .footer {
    margin: 8rem 0 4rem;
  }
  .footer .container {
    flex-direction: column;
    gap: 3rem;
  }
  .footer__menu {
    width: 100%;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 3rem;
  }
  .hero__video {
    height: 45rem;
  }
  .category {
    margin: 6rem 0 0;
  }
  .category__list-item img {
    height: 35rem;
  }
  .category__list-item:nth-child(2n) img {
    height: 35rem;
  }
  .collections__list-item {
    height: 35rem;
    padding: 2rem;
  }
  .collections__list-item p:first-child {
    font-size: 2.5rem;
  }
  .products__list-item img,
  .blog__list-item img {
    height: 35rem;
  }
  .text-section__img-add {
    max-width: 100%;
  }
  .text-section__img-add img {
    height: 30rem;
  }
  .text-section__img > img {
    height: 35rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .text-section .container {
    padding: 0 1rem;
  }
  .header__icons {
    gap: 1rem;
  }
  .header__icons img {
    width: 20px;
    height: 20px;
  }
  .header__burger {
    width: 20px;
    height: 16px;
  }
  .hero__video {
    height: 50rem;
  }
  .category {
    margin: 4rem 0 0;
  }
  .category__list-item {
    gap: 1rem;
  }
  .category__list-item img {
    height: 50rem;
  }
  .category__list-item-text {
    align-items: flex-start;
    gap: 0.5rem;
  }
  .category__list-item:nth-child(2n) img {
    height: 30rem;
  }
  .collections {
    margin: 4rem 0 0;
  }
  .collections__list-item {
    height: 30rem;
    padding: 2rem;
  }
  .collections__list-item p:first-child {
    font-size: 2rem;
  }
  .collections__list-item p {
    font-size: 1.2rem;
  }
  .products,
  .blog {
    margin: 5rem 0 0;
  }
  .products__list-item img,
  .blog__list-item img {
    height: 50rem;
  }
  .products__title,
  .blog__title {
    margin-bottom: 1rem;
  }
  .category__title {
    margin-bottom: 1rem;
  }
  .text-section {
    margin-top: 4rem;
  }
  .text-section h2 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  .text-section__img > img {
    height: 50rem;
  }
  .text-section__img-add img {
    height: 45rem;
  }
  .footer {
    margin: 4rem 0 2rem;
  }
  .footer__logo img {
    width: 25rem;
  }
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  opacity: 0.2;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

.catalog__title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}
.catalog .sorting-container {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
}
.catalog .sort-select {
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: auto;
}
.catalog .sort-select:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.2);
}
.catalog label {
  font-weight: 500;
  color: #333;
}
.catalog__content {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
.catalog__filter {
  width: 27.5rem;
  padding-right: 2rem;
  border-right: 0.1rem solid #dddddd;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 10rem;
}
.catalog__filter > p {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 4rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog__filter > p svg {
  width: 1.4rem;
}
.catalog__filter-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.catalog__filter-item {
  padding: 1.4rem 0;
  border-bottom: 0.1rem solid #dddddd;
  transition: 0.3s ease;
}
.catalog__filter-item:hover {
  border-bottom: 0.1rem solid #000000;
}
.catalog__filter-item:last-child {
  border-bottom: 0;
}
.catalog__filter-item p {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.catalog__filter-item p svg {
  width: 1rem;
}
.catalog__filter-item ul {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: #29292b;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.catalog__filter-item ul li {
  display: flex;
  position: relative;
  align-items: center;
}
.catalog__filter-item ul li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  border: 0.1rem solid #767676;
  border-radius: 0.25rem;
}
.catalog__filter-item ul li:after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  border: 0.1rem solid #767676;
  border-radius: 0.25rem;
  transition: 0.3s ease;
}
.catalog__filter-item ul li.active:after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  border: 0.1rem solid #767676;
  border-radius: 0.25rem;
  background-color: #000;
}
.catalog__filter-item ul label {
  cursor: pointer;
  display: block;
  padding-left: 2rem;
}
.catalog__filter-item .price-filter {
  margin-top: 2rem;
  flex-direction: column;
}
.catalog__filter-item .price-range {
  position: relative;
  height: 4rem;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
}
.catalog__filter-item .price-range__track {
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background: #e0e0e0;
  border-radius: 0.2rem;
}
.catalog__filter-item .price-range__progress {
  position: absolute;
  height: 0.2rem;
  background: #000;
  border-radius: 0.2rem;
  left: 0%;
  right: 0%;
}
.catalog__filter-item .price-range__slider {
  position: absolute;
  width: 100%;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  z-index: 2;
}
.catalog__filter-item .price-range__slider::-webkit-slider-thumb {
  pointer-events: all;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000;
  border: 0 solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.catalog__filter-item .price-range__slider::-moz-range-thumb {
  pointer-events: all;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.catalog__filter-item .price-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.catalog__filter-item .price-inputs__wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.catalog__filter-item .price-input {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.catalog__filter-item .price-input__label {
  position: absolute;
  left: 1rem;
  font-size: 1.2rem;
  color: #666;
  pointer-events: none;
  z-index: 1;
}
.catalog__filter-item .price-input__field {
  width: 100%;
  padding: 1rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  text-align: center;
  transition: border-color 0.2s;
}
.catalog__filter-item .price-input__field:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}
.catalog__filter-item .price-input__currency {
  position: absolute;
  right: 12px;
  font-size: 14px;
  color: #666;
}
.catalog__filter-item .price-inputs__separator {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  padding: 0 5px;
}
.catalog__filter-item .price-filter__apply {
  padding: 10px 20px;
  background: #000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.catalog__filter-item .price-filter__apply:hover {
  background: #000000;
}
.catalog__filter-item .price-filter__apply:active {
  transform: translateY(1px);
}
@media (max-width: 768px) {
  .catalog__filter-item .price-inputs {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
  .catalog__filter-item .price-inputs__wrapper {
    flex: 1;
    min-width: 200px;
  }
  .catalog__filter-item .price-filter__apply {
    margin-top: 0;
  }
}
.catalog__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.catalog__list .no-products {
  font-size: 2rem;
  margin-top: 2rem;
}
.catalog__list-item {
  max-width: 34rem;
  width: 100%;
}
.catalog__list-item:nth-child(9), .catalog__list-item:nth-child(10) {
  max-width: 55rem;
}
.catalog .catalog-pagination {
  margin-top: 9rem;
}
@media (max-width: 480px) {
  .catalog .catalog-pagination {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

/* ==================== АДАПТИВЫ ==================== */
.mobile-controls {
  display: none;
}

/* Планшеты (768px - 1023px) */
@media (max-width: 1023px) {
  .catalog__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .catalog .sorting-container {
    align-self: flex-end;
  }
  .catalog__content {
    flex-direction: column;
    gap: 2rem;
  }
  .catalog__filter {
    display: none; /* Скрываем фильтр на планшетах */
  }
  .catalog__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .catalog__list-item {
    max-width: 49%;
  }
  .catalog__list-item:nth-child(9n), .catalog__list-item:nth-child(10n) {
    max-width: 49%;
    grid-column: span 1;
  }
  /* Мобильные кнопки */
  .mobile-controls {
    display: flex;
    width: 100%;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .mobile-controls button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .mobile-controls button:hover {
    border-color: #000;
    background: #f5f5f5;
  }
  .mobile-controls button svg {
    width: 16px;
    height: 16px;
  }
}
/* Мобильные (576px - 767px) */
@media (max-width: 768px) {
  .catalog__list {
    gap: 1.5rem;
  }
  .catalog__list-item {
    max-width: 48%;
  }
  .catalog .mobile-controls button {
    width: -moz-fit-content;
    width: fit-content;
  }
  .catalog__title {
    margin-bottom: 2rem;
  }
  .catalog__title h1 {
    font-size: 2.4rem;
  }
}
/* Маленькие мобильные (до 575px) */
@media (max-width: 575px) {
  .catalog__list {
    gap: 1.5rem;
  }
  .catalog__list-item:nth-child(10n) {
    max-width: 48%;
  }
  .catalog__list-item:nth-child(9n) {
    max-width: 100%;
  }
  .catalog .products__list-item-text-category {
    font-size: 1.1rem;
  }
  .catalog .products__list-item-text-name {
    font-size: 1.3rem;
  }
  .catalog .products__list-item-text-price p {
    font-size: 1.4rem;
  }
}
/* ==================== МОБИЛЬНЫЙ ФИЛЬТР ==================== */
.mobile-filter-overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: -100%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-filter-overlay.active {
  visibility: visible;
  opacity: 1;
  right: 0;
}

.mobile-filter-container {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: white;
  z-index: 1000;
  padding: 2rem;
  overflow-y: auto;
  transition: right 0.3s ease;
}
.mobile-filter-container.active {
  right: 0;
  visibility: visible;
}
.mobile-filter-container.active .catalog__filter {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
}
.mobile-filter-container .mobile-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.mobile-filter-container .mobile-filter-header h3 {
  margin: 0;
  font-size: 2rem;
}
.mobile-filter-container .mobile-filter-header button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-filter-container .mobile-filter-header button svg {
  width: 24px;
  height: 24px;
}
.mobile-filter-container .catalog__filter-item {
  border-bottom: 1px solid #ddd;
}

/* ==================== МОБИЛЬНАЯ СОРТИРОВКА ==================== */
.mobile-sort-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-sort-modal.active {
  display: block;
  opacity: 1;
}

.mobile-sort-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.active .mobile-sort-content {
  transform: translateY(0);
}
.mobile-sort-content .mobile-sort-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #ddd;
}
.mobile-sort-content .mobile-sort-header h3 {
  margin: 0;
  font-size: 1.8rem;
}
.mobile-sort-content .mobile-sort-header button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-sort-content .mobile-sort-header button svg {
  width: 24px;
  height: 24px;
}
.mobile-sort-content .mobile-sort-options {
  padding: 1rem 0;
}
.mobile-sort-content .sort-option {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.mobile-sort-content .sort-option:hover {
  background: #f5f5f5;
}
.mobile-sort-content .sort-option.active {
  color: #000;
  font-weight: 600;
  background: #f0f0f0;
}

/* Десктопная сортировка скрывается на планшетах */
@media (max-width: 1023px) {
  .catalog .sorting-container {
    display: none;
  }
  .mobile-controls {
    display: flex;
  }
}
/* ==================== ТОВАРЫ КАК ССЫЛКИ ==================== */
.catalog__list-container {
  max-width: calc(100% - 30.5rem);
  width: 100%;
}
@media (max-width: 1024px) {
  .catalog__list-container {
    max-width: 100%;
  }
}

.catalog__list-item {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}
.catalog__list-item:nth-child(9) img, .catalog__list-item:nth-child(10) img {
  max-height: 75rem;
}
@media (max-width: 480px) {
  .catalog__list-item:nth-child(9) img, .catalog__list-item:nth-child(10) img {
    width: 100%;
    max-height: 58rem;
  }
}
@media (max-width: 480px) {
  .catalog__list-item:nth-child(10) img {
    max-height: 32rem;
  }
}
.catalog__list-item img {
  width: 100%;
  max-height: 47rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .catalog__list-item img {
    max-height: 32rem;
  }
}

/* Обертка для кликабельной области */
.catalog__list-item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.products__list-item-text {
  position: relative;
  z-index: 2;
  background: white;
  padding: 0.5rem 0;
}

/* Catalog AJAX */
.catalog__list-container.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.catalog__list-container.loading:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Active states */
.catalog__filter-item ul li.active:after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  border: 0.1rem solid #000;
  background-color: #000;
}

.catalog__filter-item ul li.active:before {
  border-color: #000;
}

/* Category links */
.catalog__filter-item ul li a.category-link {
  display: block;
  padding-left: 2rem;
  color: inherit;
}

.catalog__filter-item ul li.active a {
  color: #000;
  font-weight: 600;
}

/* Mobile filter fix */
.mobile-filter-container .catalog__filter {
  display: block !important;
  width: 100%;
  border: none;
  padding: 0;
}

.mobile-filter-container .catalog__filter-list {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.mobile-filter-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 1023px) {
  .catalog__filter {
    display: none;
  }
  .mobile-controls {
    display: flex;
  }
}
/* Single Product Styles */
.single-product {
  padding: 4rem 0;
}
@media (max-width: 560px) {
  .single-product {
    padding: 0rem;
  }
}

.product-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .product-content {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .product-content {
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .product-content {
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
  }
  .product-gallery-mobile {
    display: none;
  }
}
.product-gallery-desktop {
  display: flex;
  flex-direction: column;
}

.product-gallery-mobile {
  overflow: hidden;
}

@media (max-width: 991px) {
  .product-gallery-desktop {
    display: none;
  }
}
.tab-content {
  font-size: 1.4rem;
}

.product-info {
  max-width: 57rem;
}

.gallery-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-grid .gallery-item {
  width: calc(50% - 1rem);
  height: 70rem;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.view-more-photos {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 1.5rem;
  background: none;
  border: 0.05rem solid #000;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-more-photos:hover {
  background: #000;
  color: #fff;
}

/* Модальное окно галереи */
.full-gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.full-gallery-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  background: #fff;
  max-width: 1200px;
  max-height: 90vh;
  margin: 5vh auto;
  padding: 2rem;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.05rem solid #000;
}

.close-modal {
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.modal-gallery-item img {
  width: 100%;
  height: auto;
}

/* Информация о товаре */
.product-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.product-price .regular-price {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  opacity: 0.5;
  text-decoration: line-through;
}

.product-price .sale-price,
.product-price .current-price {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
}

.product-excerpt {
  margin-bottom: 3rem;
  font-size: 1.6rem;
  line-height: 1.6;
}

/* Атрибуты */
.attribute-group {
  margin-bottom: 2.5rem;
}

.attribute-label {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1.4rem;
  font-weight: 400;
}

.attribute-values {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.attribute-value {
  padding: 1.4rem;
  border: 0.05rem solid #000;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.attribute-value:hover,
.attribute-value.active {
  background: #000;
  color: #fff;
}

.attribute-value.not-available {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Особый стиль для размера */
.size-value {
  min-width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Кнопки действий */
.product-actions {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.add-to-cart-btn {
  flex: 1;
  padding: 1.5rem;
  background: #000;
  color: #fff;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  opacity: 0.8;
}

.add-to-wishlist-btn {
  width: 5.6rem;
  background: none;
  border: 0.05rem solid #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.add-to-wishlist-btn:hover {
  background: #000;
  color: #fff;
}

.add-to-wishlist-btn:hover svg path {
  stroke: #fff;
}

/* Табы */
.product-tabs {
  padding: 4rem 0;
  border-top: 0.05rem solid rgba(0, 0, 0, 0.1);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}

.tab-button {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.tab-button.active {
  color: #000;
  font-weight: 600;
}

.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -1.1rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: #000;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tab-pane h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.tab-pane p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Слайдеры */
.related-products,
.complete-look {
  padding: 4rem 0;
}

.related-products {
  margin-top: 10rem;
}
@media (max-width: 1024px) {
  .related-products {
    margin-top: 2rem;
  }
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.relatedProductsSwiper,
.completeLookSwiper {
  position: relative;
  padding: 0;
}

.productsSwiper,
.categorySwiper {
  padding: 0 3rem !important;
}
@media (max-width: 480px) {
  .productsSwiper,
  .categorySwiper {
    padding: 0 1.5rem !important;
  }
}

.relatedProductsSwiper .swiper-slide,
.completeLookSwiper .swiper-slide {
  height: auto;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 60rem;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.product-card .price {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: auto;
}

/* Свайпер кнопки */
.swiper-button-prev,
.swiper-button-next {
  width: 4rem;
  height: 4rem;
  background: #fff;
  border: 0.05rem solid #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.2rem;
  color: #000;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

/* Адаптив */
@media (max-width: 768px) {
  .product-title {
    font-size: 2rem;
  }
  .product-price .regular-price,
  .product-price .sale-price,
  .product-price .current-price {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .tab-buttons {
    flex-direction: column;
  }
  .tab-button {
    text-align: left;
    padding: 1rem 0;
    border-bottom: 0.05rem solid rgba(0, 0, 0, 0.1);
  }
  .tab-button.active::after {
    display: none;
  }
  .relatedProductsSwiper,
  .completeLookSwiper {
    padding: 0 1rem;
  }
  .product-actions {
    flex-direction: column;
  }
  .add-to-wishlist-btn {
    width: 100%;
    height: 5.6rem;
  }
}
/* Мобильный свайпер */
.product-gallery-mobile .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-gallery-mobile .swiper-pagination {
  bottom: 1rem;
}

.product-gallery-mobile .swiper-button-prev,
.product-gallery-mobile .swiper-button-next {
  display: none;
}

@media (min-width: 768px) {
  .product-gallery-mobile .swiper-slide img {
    height: 60rem;
  }
}
.product-info {
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 10rem;
}
@media (max-width: 1024px) {
  .product-info {
    position: static;
  }
}

.button {
  background-color: #000000;
  color: #ffffff;
  padding: 2.4rem 2.6rem;
  text-transform: uppercase;
  font-size: 1.8rem;
}

.additional-attributes h4 {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.additional-attributes {
  margin-top: 2rem;
}

.additional-attributes ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Аккордеон */
.product-accordion {
  margin-top: 5rem;
  width: 100%;
}

.accordion-item {
  border-top: 0.05rem solid rgba(0, 0, 0, 0.5);
  padding: 2rem 0;
}

.accordion-item:last-child {
  border-bottom: 0.05rem solid rgba(0, 0, 0, 0.5);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.accordion-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  margin-top: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

strong {
  font-weight: 600;
}

.accordion-content h5 {
  font-size: 1.6rem;
  color: #000000;
}

.accordion-content p,
.accordion-content ul,
.accordion-content a {
  color: rgba(0, 0, 0, 0.3764705882);
}

.accordion-item.active .accordion-content {
  margin-top: 2.5rem;
}

/* Атрибуты - активный элемент */
.attribute-value.active {
  background: #000 !important;
  color: #fff !important;
}

/* Исправляем стили для размера */
.size-value {
  min-width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Улучшаем стили для кнопок */
.add-to-cart-btn {
  flex: 1;
  padding: 1.5rem;
  background: #000;
  color: #fff;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.add-to-cart-btn:hover {
  opacity: 0.9;
}

.add-to-wishlist-btn {
  width: 5.6rem;
  background: none;
  border: 0.05rem solid #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.add-to-wishlist-btn:hover {
  background: #000;
  color: #fff;
}

.add-to-wishlist-btn:hover svg path {
  stroke: #fff;
}

/* Адаптив для аккордеона */
@media (max-width: 768px) {
  .accordion-title {
    font-size: 1.3rem;
  }
  .accordion-content {
    font-size: 1.3rem;
  }
  .gallery-grid .gallery-item {
    height: 50rem;
  }
}
/* Исправляем адаптив для sticky позиции */
@media (max-width: 1024px) {
  .product-info {
    position: static !important;
    margin-top: 0;
  }
}
form {
  font-size: 1.4rem;
}

.product-info .variations {
  display: none !important;
}

.product-info .woocommerce-variation-availability {
  font-size: 1.6rem;
  margin: 3rem 0;
}

.product-info .quantity {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.product-info .quantity .screen-reader-text {
  display: block;
  clip-path: border-box;
  clip: auto;
  position: relative !important;
  width: auto;
  height: auto;
}
.product-info .quantity input {
  font-size: 1.4rem;
  padding: 1rem 2rem;
  border: 0.05rem solid rgba(0, 0, 0, 0.3137254902);
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 480px) {
  .woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: column;
  }
  .woocommerce-variation-add-to-cart .button {
    display: flex;
    margin: 0 auto;
  }
}
.swiper-wrapper{
	align-items: flex-start;
}
@media (min-width: 769px) {
  .mobile-fullscreen-slider {
    display: none;
  }
}
@media(max-width:789px){
	.category .swiper-slide:nth-child(2n) img, .category .swiper-slide img{
		height:auto;
	}
}
/*# sourceMappingURL=style.css.map */