:root {
  --font-family: "Manrope", sans-serif;
  --accent-color: #b12626;
}

body {
  font-family: var(--font-family);
}

.header {
  background-color: var(--accent-color);
  padding: 1rem 0;
}

.header__container {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  font: 400 12px var(--font-family);
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.header__logo {
  height: 16px;
  z-index: 999999;
}

.header__logo-img {
  height: 16px;
  width: auto;
}

.header__actions {
  display: flex;
  gap: 21px;
  width: 302px;
  justify-content: flex-end;
  align-items: center;
}

.header__action-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.header__action-btn {
  height: 16px;
}

.header__burger {
  display: none;
  background: none;
  border: none;
  z-index: 99999;
  cursor: pointer;
  padding: 5px;
}

.header__burger-line {
  width: 20px;
  height: 2px;
  background-color: #fff;
  margin: 4px 0;
  transition: 0.3s;
  position: relative;
}

.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--accent-color);
  z-index: 1000;
  padding: 120px 20px 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__item {
  margin-bottom: 30px;
}

.mobile-nav__link {
  font: 400 24px var(--font-family);
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.catalog-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1001;
  padding: 40px 20px 20px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

@media (min-width: 769px) {
  .catalog-menu {
    top: 0;
    height: auto;
    max-height: 80vh;
    width: 100%;

    transform: translateX(-50%) translateY(-100%);
    padding: 30px;
  }
  
  .catalog-menu.active {
    transform: translateX(-50%) translateY(0);
    top: 50px;
  }
  
  .catalog-menu__header {
    margin-bottom: 30px;
  }
  
  .catalog-menu__title {
    font-size: 24px;
    margin: 15px 0 20px;
  }
  
  .catalog-menu__content {
    gap: 30px;
  }
  
  .catalog-menu__link {
    font-size: 14px;
    padding: 8px 0;
  }
}

.catalog-menu.active {
  transform: translateX(0);
}

.catalog-menu__header {
  position: relative;
  margin-bottom: 40px;
}

.catalog-menu__close {
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  padding: 5px;
}

.catalog-menu__title {
  font: 700 32px var(--font-family);
  color: #000;
  margin: 20px 0 30px;
  text-transform: uppercase;
  margin-left: 50px;
}

.catalog-menu__search {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 0 15px;
  margin-bottom: 20px;
}

.catalog-menu__search-input {
  flex: 1;
  border: none;
  background: none;
  padding: 15px 0;
  font: 400 16px var(--font-family);
  color: #000;
}

.catalog-menu__search-input::placeholder {
  color: #999;
}

.catalog-menu__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  padding: 10px;
}

.catalog-menu__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 750px;
  flex: 1;
}

.catalog-menu__column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.catalog-menu__link {
  font: 400 16px var(--font-family);
  color: #000;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.catalog-menu__link:hover {
  color: var(--accent-color);
}

.catalog-menu__link--new {
  font-weight: 400;
  color: var(--accent-color);
}



.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  z-index: 999;
  padding: 10px 0;
}

.bottom-nav__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bottom-nav__item {
  text-align: center;
}

.bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #151515;
  font-size: 10px;
  gap: 5px;
}

.bottom-nav__icon {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.hero {
  height: calc(100vh - 54px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__btn {
  font: 400 15px var(--font-family);
  text-align: center;
  color: #fff;
  width: 321px;
  height: 72px;
  display: flex;
  margin-bottom: 150px;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 4px;
	transition:0.2s;
}

.hero__btn:hover {
  background-color: transparent;
	border:1px solid #fff;
}

.products {
  padding: 80px 0 60px;
}

.products__container {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 2rem;
}

.products__title {
  font: 400 50px var(--font-family);
  color: #151515;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 21px;
}

.products__title::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.products__slider {
  width: 100%;
  overflow: visible !important;
}

.products {
  overflow: hidden;
}

.product-card {
  text-align: center;
  padding: 48px 15px;
  margin-right: -1px;
  position: relative;
  border: 1px solid #dbdbdb;
}

.product-card__new {
  position: absolute;
  top: 20px;
  font: 400 16px var(--font-family);
  text-transform: uppercase;
  text-align: center;
  color: #151515;
  left: 20px;
}

.product-card__image {
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  height: 448px;
}

.product-card__img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.product-card__title a{
  font: 400 17px var(--font-family);
  text-transform: uppercase;
  text-align: center;
  color: #151515;
  margin-bottom: 5px;
}

.product-card__price {
  font: 400 17px var(--font-family);
  text-align: center;
  color: #151515;
}

.swiper-pagination-progressbar {
  background-color: #e5e5e5 !important;

  margin-top: 20px;
  bottom: -20px;
  width: 300px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: auto !important;
}

.swiper-pagination-progressbar-fill {
  background-color: var(--accent-color) !important;
}

.product-card__img--front,
.product-card__img--back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.product-card__img--front {
  opacity: 1;
}

.product-card__img--back {
  opacity: 0;
}

.product-card:hover .product-card__img--front {
  opacity: 0;
}

.product-card:hover .product-card__img--back {
  opacity: 1;
}

.categories {
  padding: 80px 0 60px;
}

.categories__container {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 2rem;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.category-card {
  position: relative;
  overflow: hidden;
}

.category-card__image {
  width: 100%;
  height: 660px;
  overflow: hidden;
}

.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card__img {
  transform: scale(1.05);
}

.category-card__title {
  position: absolute;
  top: 30px;
  left: 15px;
  font: 400 30px var(--font-family);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.category-card__btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font: 400 16px var(--font-family);
  text-align: center;
  color: #151515;
  width: 273px;
height: 74px;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;

	transition:0.2s;
}

.catalog-product__price, .price ins, .price span > bdi{
	text-decoration:none;
}

.category-card__btn:hover{
	    background-color: transparent;
    border: 1px solid #fff;
	color:#fff;
}

.about {
  background-image: url('/assets/images/back_offer.png');
  background-size: cover;
  background-position: center;
  max-width: 1708px;
  margin: 0 auto 60px;
	    width: 96%;
  background-repeat: no-repeat;
  padding: 120px 0 60px;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.about__container {
    max-width: 1740px;
margin-left: auto


;
margin-right: 100px;
padding: 0 2rem;
    position: relative;
    max-width: 640px;
    z-index: 1;
    text-align: left;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}

.about__logo {
  margin-bottom: 30px;
}

.about__logo-img {
  height: 113px;
  width: auto;
  background-size: cover;
}



.about__text {
    font: 400 18px / 150% var(--font-family);
    color: #fff;
  margin-bottom: 30px;
}

.about__btn {
    font: 400 17px var(--font-family);
    text-align: center;
    color: #fff;
    width: 332px;
height: 76px;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--accent-color);
border-radius: 4px;
	transition:0.2s;
}

.about__btn:hover {
    background-color: transparent;
    border: 1px solid #fff;
}

.footer {
  background-color: #151515;
  color: #fff;
  padding: 150px 0;
}

.footer__container {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 130px 130px 209px;
  gap: 120px;
}

.footer__newsletter{
    margin-right: auto;
}
.footer__newsletter{
    max-width: 420px;
}

.footer__logo{
    height: 80px;
    margin-bottom: 30px;
}

.footer__brand {
  font: 700 48px var(--font-family);
  color: #fff;
  margin-bottom: 20px;
}

.footer__subtitle {
    font: 400 16px var(--font-family);
    color: #fff;
  margin-bottom: 30px;
}

.footer__form {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.footer__input {
  flex: 1;
  padding: 15px;
  border: none;
  background-color: #fff;
  color: #151515;
  height: 59px;
  font-family: var(--font-family);
  font-size: 14px;
}

.footer__submit {
  width: 42px;
  height: 59px;
  background-color: #fff;
  border: none;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.footer__checkbox-input {
  margin-top: 2px;
}

.footer__checkbox-text {
    font: 400 9px var(--font-family);
    color: #e7e7e7;
}

.footer__title {
    font: 400 14px var(--font-family);
    text-transform: uppercase;
    color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer__nav-list,
.footer__legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-link,
.footer__legal-link {
    font: 400 14px var(--font-family);
    color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer__nav-link:hover,
.footer__legal-link:hover {
  color: var(--accent-color);
}

.footer__contact {
  font: 400 14px var(--font-family);
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .footer {
    padding: 80px 0;
  }
	
	
.about {
  background-image: url(http://qayna.devdenis.ru/wp-content/uploads/2025/08/back_mod.png) !important;
  background-size: cover;
  background-position: center;
  max-width: 1708px;
  margin: 0 auto 60px;
	    background-position: left;
	    width: 96%;
	height:70vh;
  background-repeat: no-repeat;
  padding: 0 0 60px;
  position: relative;
}
	
	.about__text{
		font-size:16px;
		        text-wrap: balance !important;
	}
	
	.about__container {
    max-width: 1740px;
    margin-left: auto;
    margin-right: 0;
    padding: 0 1rem;
    position: relative;
    max-width: 640px;
    z-index: 1;
    height: 100%;
    text-align: left;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

	
	.catalog-menu{
		top: 30px;
		    padding: 40px 20px 120px;
		        overflow: scroll;
	}
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 20px;
  }
  
  .footer__newsletter {
    max-width: 100%;
    margin-right: 0;
  }
  
  .footer__logo {
    height: 60px;
    margin-bottom: 20px;
  }
  
  .footer__subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .footer__form {
    flex-direction: row;
    gap: 10px;
  }
  
  .footer__input {
    height: 50px;
    font-size: 16px;
  }
  
  .footer__submit {
        width: max-content;
        height: 50px;
        padding: 0 15px;
  }
  
  .footer__checkbox-text {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .footer__title {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .footer__nav-link,
  .footer__legal-link {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .footer__contact {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  
  .header__actions {
    display: none;
  }
  
  .header__burger {
    display: block;
  }
  
  .header__container {
    padding: 0 20px;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .bottom-nav {
    display: block;
  }
  
  .hero {
    height: calc(100vh - 54px - 60px);
  }
  
  .hero__btn {
    width: 280px;
    height: 60px;
    font-size: 14px;
    margin-bottom: 100px;
  }
  
  .categories {
    padding: 40px 0 40px;
  }
  
  .categories__container {
    padding: 0 20px;
  }
  
  .categories__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .category-card__image {
    height: 300px;
  }
  
  .category-card__title {
    font-size: 20px;
    top: 20px;
    left: 10px;
  }
  
  .category-card__btn {
    width: 50%;
    height: 50px;
    font-size: 14px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
  
  .catalog-menu {
    display: block;
  }
  
  .catalog-menu__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .catalog-menu__title {
    font-size: 24px;
    margin: 15px 50px 20px;
  }
  
  .catalog-menu__search {
    margin-bottom: 15px;
  }
  
  .catalog-menu__search-input {
    font-size: 14px;
    padding: 12px 0;
  }
  
  .catalog-menu__link {
    font-size: 14px;
    padding: 8px 0;
  }
}

.product-page {
  padding: 40px 0 60px;
}

.product-page__container {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumbs__link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs__link:hover {
  color: #000;
}

.breadcrumbs__separator {
  color: #666;
}

.breadcrumbs__current {
  color: #000;
  font-weight: 400;
}

.product-page__title {
  font: 400 32px / 136% var(--font-family);
  text-transform: uppercase;
  color: #151515;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.product-page__content {
  display: grid;
  grid-template-columns: 592px 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.product-gallery {
  display: flex;
  gap: 20px;
}

.product-gallery__thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-gallery__thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
  background: none;
  padding: 0;
}

.product-gallery__thumbnail--active {
  border-color: #000;
}

.product-gallery__thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__main {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.product-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  display: flex;
  flex-direction: column;
}

.product-details__price {
  font: 400 25px / 136% var(--font-family);
  text-transform: uppercase;
  color: #151515;
  margin-bottom: 16px;
}

.product-details__size {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-details__size-title {
  font: 400 18px var(--font-family);
  color: #151515;
}

.product-details__size-options {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.product-details__size-btn {
  width: 46px;
  height: 46px;
  border: 1px solid #151515;
  background: #fff;
  color: #000;
  font: 400 14px var(--font-family);
  cursor: pointer;
  transition: all 0.3s;
}

.product-details__size-btn--active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.product-details__size-btn:hover {
  border-color: #000;
}

.product-details__quantity {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #151515;
  padding: 10px 20px;
  width: fit-content;
}

.product-details__quantity-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  font: 400 18px var(--font-family);
  cursor: pointer;
  color: #000;
}

.product-details__quantity-value {
  font: 400 16px var(--font-family);
  color: #000;
  min-width: 30px;
  text-align: center;
}

.product-details__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.product-details__btn {
  height: 50px;
  border: 1px solid #000;
  font: 400 14px var(--font-family);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}

.product-details__btn--cart {
  background: #000;
  width: 100%;
  max-width: 192px;
  color: #fff;
}

.product-details__btn--cart:hover {
  background: #333;
}

.product-details__btn--favorite {
  background: #fff;
  color: #000;
  width: 100%;
  max-width: 192px; 
}

.product-details__btn--favorite:hover {
  background: #f5f5f5;
}

.product-details__btn--consultation {
  background: #fff;
  color: #000;
  width: fit-content;
  font: 400 18px var(--font-family);
text-transform: uppercase;
color: #a59b9b;
border:none;
padding: 0;
text-decoration: underline;
}

.product-details__description {
  padding-top: 30px;
}

.product-details__description-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  cursor: pointer;
}

.product-details__description-title {
  font: 400 18px var(--font-family);
  color: #151515;
}

.product-details__description-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.product-details__description-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.product-details__description.active .product-details__description-content {
  max-height: 200px;
}

.product-details__description.active .product-details__description-toggle {
  transform: rotate(0deg);
}

.product-details__description-text {
  font: 400 17px / 136% var(--font-family);
  color: #151515;
  margin-bottom: 20px;
}

.product-details__consultation {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-details__consultation-title {
  font: 400 18px var(--font-family);
  color: #151515;
}

.product-details__consultation-text {
  font: 400 17px / 136% var(--font-family);
  color: #151515;
}

.related-products {
  padding: 60px 0;
}

.related-products__container {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.related-products__title {
  font: 400 32px var(--font-family);
  text-transform: uppercase;
  color: #151515;
}

.related-products__nav-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.related-products__nav-btn:hover {
  background: #000;
  color: #fff;
}

.related-products__slider {
  overflow: visible;
}

.related-products__slider .swiper-slide {
  width: 250px;
}

@media (max-width: 768px) {
  .product-page {
    padding: 20px 0 40px;
  }
  
  .product-page__container {
    padding: 0 ;
  }
  
  .product-page__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .product-page__content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .product-gallery {
    flex-direction: column;
    gap: 15px;
  }
  
  .product-gallery__thumbnails {
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
  }
  
  .product-gallery__thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  
  .product-gallery__main-img {
    height: 400px;
  }
  

  
  .product-details__price {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .product-details__size-title {
    font-size: 16px;
  }
  
  .product-details__size-options {
    gap: 4px;
    margin-bottom: 16px;
  }
  
  .product-details__size-btn {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  
  .product-details__actions {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
    .product-details__quantity {
        align-self: flex-start;
        width: 100%;
        justify-content: center;
    }
	
	
	.product-details__btn {
    max-width: 100% !important;
    height: 52px !important;
}
	
  .product-details__btn {
    width: 100%;
    max-width: none;
    height: 45px;
    font-size: 12px;
  }
  
  .product-details__description {
    padding-top: 20px;
  }
  
  .product-details__description-title {
    font-size: 16px;
  }
  
  .product-details__description-text {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .product-details__consultation-title {
    font-size: 16px;
  }
  
  .product-details__consultation-text {
    font-size: 14px;
  }
  
  .product-details__btn--consultation {
    font-size: 14px;
  }
  
  .related-products {
    padding: 40px 0;
  }
  
  .related-products__title {
    font-size: 20px;
  }
  
  .related-products__slider .swiper-slide {
    width: 180px;
  }
  
  .breadcrumbs {
    font-size: 12px;
    margin-bottom: 16px;
	  gap:3px;
	          flex-wrap: wrap;
  }
	
	.product-details form {
    display: flex
;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
}
}

.catalog-page {
  padding: 60px 0;
}

.catalog-page__container {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 20px;
}

.catalog-page__header {
  margin-bottom: 30px;
}

.catalog-page__title {
  font: 400 32px var(--font-family);
  color: #151515;
  text-transform: uppercase;
}

.catalog-page__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.catalog-page__filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  font: 400 14px var(--font-family);
  color: #151515;
  cursor: pointer;
  transition: all 0.3s ease;
}

.catalog-page__filter-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: var(--accent-color);
  color: #fff;
}

.catalog-page__filter-btn img {
  width: 16px;
  height: 16px;
}

.catalog-page__sort-dropdown {
  position: relative;
}

.catalog-page__sort-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  font: 400 14px var(--font-family);
  color: #151515;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.catalog-page__sort-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: var(--accent-color);
  color: #fff;
}

.catalog-page__sort-btn img {
  width: 16px;
  height: 16px;
}

.sort-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.catalog-page__sort-dropdown.active .sort-arrow {
  transform: rotate(180deg);
}

.catalog-page__sort-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.catalog-page__sort-dropdown.active .catalog-page__sort-options {
  display: block;
}

.catalog-page__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.catalog-filters {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  height: fit-content;
}

.catalog-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.catalog-filters__title {
  font: 400 16px var(--font-family);
  color: #151515;
  margin: 0;
}

.catalog-filters__clear {
  background: none;
  border: none;
  font: 400 14px var(--font-family);
  color: #666;
  cursor: pointer;
  text-decoration: underline;
}

.catalog-filters__clear:hover {
  color: var(--accent-color);
}

.catalog-page__sort-options .sort-option {
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #f5f5f5;
}

.catalog-page__sort-options .sort-option:last-child {
  border-bottom: none;
}

.catalog-page__sort-options .sort-option:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.catalog-page__sort-options .sort-option span {
  font: 400 14px var(--font-family);
  color: #151515;
}

.filter-sidebar {
  position: fixed;
  top: 0;
  left: -400px;
  width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  transition: left 0.3s ease;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
}

.filter-sidebar.active {
  left: 0;
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.filter-sidebar.active + .filter-overlay,
.filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

.filter-sidebar__content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 10001;
}

.filter-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.filter-sidebar__title {
  font: 400 18px var(--font-family);
  color: #151515;
  margin: 0;
}

.filter-sidebar__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.filter-sidebar__body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.filter-sidebar__footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.filter-sidebar__btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font: 400 14px var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-sidebar__btn--clear {
  background-color: #f5f5f5;
  color: #151515;
}

.filter-sidebar__btn--apply {
  background-color: var(--accent-color);
  color: #fff;
}

.filter-sidebar__btn:hover {
  opacity: 0.8;
}

.filter-section {
  margin-bottom: 25px;
}

.filter-section__title {
  font: 400 14px var(--font-family);
  color: #151515;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.filter-section__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-range {
  position: relative;
  padding: 20px 0;
}

.price-range__input {
  width: 100%;
  margin: 10px 0;
}

.price-range__values {
  display: flex;
  justify-content: space-between;
  font: 400 14px var(--font-family);
  color: #666;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.filter-checkbox__input {
  width: 18px;
  height: 18px;
}

.filter-checkbox__text {
  font: 400 14px var(--font-family);
  color: #151515;
}

.catalog-page__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.catalog-product {
  display: flex;
  flex-direction: column;
}

.catalog-product__image {
  width: 100%;
  height: 450px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.catalog-product__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.catalog-product__img--back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.catalog-product:hover .catalog-product__img--front {
  opacity: 0;
}

.catalog-product:hover .catalog-product__img--back {
  opacity: 1;
}

.catalog-product__sizes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(13.43756103515625px);
  background: rgba(255, 255, 255, 0.59);
  padding: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.catalog-product:hover .catalog-product__sizes {
  opacity: 1;
  transform: translateY(0);
}

.catalog-product__size {
  background: none;

  font: 400 14px var(--font-family);
  text-transform: uppercase;
  color: #151515;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 35px;
  text-align: center;
}



.catalog-product__size.disabled {
  color: #ccc;
  text-decoration: line-through;
  cursor: not-allowed;
}

.catalog-product__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.catalog-product__title , .woocommerce-loop-product__title {
  font: 400 17px var(--font-family);
	display:flex;
  text-transform: uppercase;
  color: #151515;
	  margin-bottom: 10px;
  flex: 1;
  margin-right: 10px;
}

.catalog-product__price , .price ins , .price span > bdi{
  font: 400 17px var(--font-family);
  color: #151515;
  margin-bottom: 10px;
}

.added_to_cart.wc-forward{
    background: #B12626;
    bottom: 0;
    position: absolute;
	    border-radius: 4px;

    left: 0;
    color: #fff;
    width: 100%;
    height: 45px;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.catalog-product{
	position:relative;
}


.catalog-product__price , .price del > span > bdi  {
    font: 400 17px var(--font-family);
    text-decoration: line-through;
    color: #929292;
}

.catalog-product__btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: 1px solid #151515;
    font: 400 14px var(--font-family);
    color: #151515;
    border-radius: 4px;
    text-transform: uppercase;
    display: flex
;
    margin-top: 12px;
    cursor: pointer;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
}

.catalog-product__btn:hover {
  background: #151515;
  color: #fff;
}

.catalog-product__favorite {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.catalog-product__favorite svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s;
}

.catalog-product__favorite svg path {
  transition: fill 0.3s;
}

.yith-wcwl-add-to-wishlist-button:is(button){
padding:0;}

.catalog-product__favorite.active svg path {
  fill: #ff4444;
}

.catalog-product__favorite.active svg {
  color: #ff4444;
}

.catalog-product__discount {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #000;
  font:  14px var(--font-family);
  border-radius: 4px;
  z-index: 3;
}

.catalog-product__price-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-product__price--old {
  font: 400 17px var(--font-family);
  text-decoration: line-through;
  color: #929292;
}

.catalog-product__price--new {
  font: 400 17px var(--font-family);
  color: #151515;
}

.catalog-product__favorite:hover {
  transform: scale(1.1);
}

.catalog-product__favorite:hover svg {
  color: #ff4444;
}

.catalog-product:hover .catalog-product__favorite {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .catalog-page {
    padding: 40px 0;
  }
  
  .catalog-page__header {
    margin-bottom: 20px;
  }
  
  .catalog-page__title {
    font-size: 24px;
  }
  
  .catalog-page__controls {
    margin-bottom: 30px;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .catalog-page__filter-btn,
  .catalog-page__sort-btn {
    justify-content: center;
  }
  
  .catalog-page__sort-dropdown {
    width: 100%;
  }
  
  .catalog-page__sort-btn {
    width: 100%;
  }
  
  .catalog-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .catalog-product__image {
    height: 300px;
  }
  
  .catalog-product__title {
    font-size: 14px;
	  margin:0;
  }
  
  .catalog-product__price {
    font-size: 16px;
  }
  
  .catalog-product__btn {
    height: 45px;
    font-size: 12px;
  }
  
  .catalog-product__header {
    margin-bottom: 0;
  }
  
  .catalog-product__title {
    font-size: 14px;
    margin-right: 8px;
  }
  
  .catalog-product__favorite {
    width: 25px;
    height: 25px;
  }
  
  .catalog-product__favorite svg {
    width: 16px;
    height: 16px;
  }
  
  .filter-sidebar {
    width: 100%;
    left: -100%;
  }
}



.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font: 400 18px var(--font-family);
  color: #666;
}

/* Стили для личного кабинета */
.woocommerce-MyAccount-navigation {
    background: white;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation li:last-child {
    margin-bottom: 0;
}

.woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
}

.woocommerce-MyAccount-navigation .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.woocommerce-MyAccount-navigation .nav-text {
    flex: 1;
}

.woocommerce-MyAccount-navigation a:hover {
    background: #f8f9fa;
    color: var(--accent-color);
}

.woocommerce-MyAccount-navigation li.is-active a {
    background: var(--accent-color);
    color: white;
}

.woocommerce-MyAccount-content {
    background: white;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.woocommerce-MyAccount-content h2 {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.woocommerce-MyAccount-content h3 {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.woocommerce-MyAccount-content p {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.woocommerce-MyAccount-content .woocommerce-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    font-family: var(--font-family);
    font-size: 14px;
}

.woocommerce-MyAccount-content .woocommerce-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    font-family: var(--font-family);
    font-size: 14px;
}

.woocommerce-MyAccount-content .woocommerce-info {
    background: #d1ecf1;
    color: #0c5460;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #bee5eb;
    font-family: var(--font-family);
    font-size: 14px;
}

/* Стили для форм в личном кабинете */
.woocommerce-MyAccount-content .form-row {
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    color: #555;
}

.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content textarea,
.woocommerce-MyAccount-content select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.woocommerce-MyAccount-content input[type="text"]:focus,
.woocommerce-MyAccount-content input[type="email"]:focus,
.woocommerce-MyAccount-content input[type="tel"]:focus,
.woocommerce-MyAccount-content input[type="password"]:focus,
.woocommerce-MyAccount-content textarea:focus,
.woocommerce-MyAccount-content select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(177, 38, 38, 0.1);
}

.woocommerce-MyAccount-content .button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.woocommerce-MyAccount-content .button:hover {
    background: #8f1f1f;
}

/* Стили для таблиц */
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-size: 14px;
}

.woocommerce-MyAccount-content table th,
.woocommerce-MyAccount-content table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.woocommerce-MyAccount-content table th {
    background: #f8f9fa;
    font-weight: 400;
    color: #333;
}

.woocommerce-MyAccount-content table tr:hover {
    background: #f8f9fa;
}

/* Стили для статусов заказов */
.woocommerce-MyAccount-content .woocommerce-orders-table__row--status-processing {
    color: #856404;
    background: #fff3cd;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__row--status-completed {
    color: #155724;
    background: #d4edda;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__row--status-cancelled {
    color: #721c24;
    background: #f8d7da;
}

/* Адаптивность для личного кабинета */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        margin-bottom: 20px;
        padding: 15px;
    }
	
	.product-details form {
    display: flex
;
    gap: 20px;
    align-items: flex-start !important;
}
    
    .woocommerce-MyAccount-navigation a {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .woocommerce-MyAccount-content {
        padding: 20px;
    }
    
    .woocommerce-MyAccount-content h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .woocommerce-MyAccount-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .woocommerce-MyAccount-content table {
        font-size: 12px;
    }
    
    .woocommerce-MyAccount-content table th,
    .woocommerce-MyAccount-content table td {
        padding: 8px;
    }
}

/* Стили для сайдбара с фильтрами */
#secondary {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 10000;
    transition: left 0.3s ease;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    padding: 20px;
}

#secondary.active {
    left: 0;
}

.berocket_ajax_group_filter_title {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.berocket_single_filter_widget {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.berocket_single_filter_widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.bapf_head h3 {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bapf_body {
    padding: 0;
}

/* Стили для слайдера цены */
.bapf_slidr_all {
    padding: 10px 0;
}

.bapf_from,
.bapf_to {
    display: inline-block;
    font-family: var(--font-family);
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.bapf_from {
    float: left;
}

.bapf_to {
    float: right;
}

.bapf_tbprice {
    font-weight: 400;
    color: var(--accent-color);
}

.bapf_val {
    font-weight: 400;
    color: #333;
}

.bapf_slidr_main {
    clear: both;
    margin-top: 15px;
    height: 6px;
    background: #e1e5e9;
    border-radius: 3px;
    position: relative;
    border: none;
}

.ui-slider-range {
    background: var(--accent-color);
    border-radius: 3px;
    height: 100%;
}

.ui-slider-handle {
    width: 18px;
    height: 18px;
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    top: -6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ui-slider-handle:hover,
.ui-slider-handle:focus {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(177, 38, 38, 0.3);
}

.ui-slider-handle.ui-state-active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Стили для чекбоксов фильтров */
.bapf_sfilter input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--accent-color);
}

.bapf_sfilter label {
    font-family: var(--font-family);
    font-size: 14px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.bapf_sfilter label:hover {
    color: var(--accent-color);
}

.bapf_sfilter input[type="checkbox"]:checked + label {
    color: var(--accent-color);
    font-weight: 400;
}

/* Стили для селектов */
.bapf_sfilter select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bapf_sfilter select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(177, 38, 38, 0.1);
}

/* Стили для кнопок фильтров */
.bapf_sfilter .bapf_button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.bapf_sfilter .bapf_button:hover {
    background: #8f1f1f;
}

/* Стили для счетчиков */
.bapf_sfilter .bapf_count {
    background: #f8f9fa;
    color: #666;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 8px;
}

/* Стили для активных фильтров */
.bapf_sfilter .bapf_active {
    background: var(--accent-color);
    color: white;
}

.bapf_sfilter .bapf_active .bapf_count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Стили для оверлея фильтров */
.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Кнопка закрытия фильтров */
.filter-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: color 0.3s ease;
}

.filter-close:hover {
    color: var(--accent-color);
}

.filter-close svg {
    width: 24px;
    height: 24px;
}

/* Адаптивность для сайдбара */
@media (max-width: 768px) {
    #secondary {
        width: 100%;
        left: -100%;
        padding: 15px;
    }
    
    .berocket_ajax_group_filter_title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .berocket_single_filter_widget {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .bapf_head h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .bapf_sfilter label {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .bapf_sfilter select {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .bapf_sfilter .bapf_button {
        padding: 8px 16px;
        font-size: 13px;
    }
}
