/**COMPANY**/
.section__company {
  padding: 15px 0;
  margin-bottom: 30px;
}
.company__wrapper {
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #EFF0F4;
  border-radius: 12px;
}

/**ORDER-FORM**/
.section__orderinline {
  padding: 15px 20px;
}
.orderinline__form {
  color: var(--white);
}
.orderinline__description {
  margin-bottom: 10px;
}

/**PRODUCT SECTION**/
.product {
  padding: 30px 0 140px;
}

.product__wrapper {
  display: grid;
  grid-template-columns: 628px 1fr;
  gap: 50px;
}

.product__slider {
  margin-bottom: 16px;
}

.product__slider [data-fancybox] {
  cursor: zoom-in;
  display: flex;
  position: relative;
  min-width: 100%;
  max-height: 100%;
  transition: opacity 0.3s ease;
}

.product__slider [data-fancybox]:hover {
  opacity: 0.9;
}

.product__slider [data-fancybox] img {
  transition: transform 0.3s ease;
}

.product__slider [data-fancybox]:hover img {
  transform: scale(1.02);
}

/* Fancybox custom styles */
.fancybox__backdrop {
  background: rgba(12, 18, 29, 0.95);
}

.fancybox__thumbs {
  background: rgba(12, 18, 29, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}

.fancybox__thumb {
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.fancybox__thumb:hover {
  opacity: 1;
  border-color: rgba(240, 101, 0, 0.5);
}

.fancybox__thumb.is-nav-selected {
  opacity: 1;
  border-color: #F06500;
}

.fancybox__toolbar button {
  color: #fff;
  transition: all 0.3s ease;
}

.fancybox__toolbar button:hover {
  background: rgba(240, 101, 0, 0.2);
  color: #F06500;
}

.product__image {
  width: 100%;
  height: auto;
}

.product__info {
  flex: 1;
}
.product__info-header {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.product__info-header.d-none {
  display: none;
}
.product__title {
  font-size: 35px;
  line-height: 50px;
  font-weight: bold;
  margin-bottom: 0;
}

.product__article {
  position: relative;
  opacity: .5;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.product__article:hover {
  opacity: 1;
}

.copy-notification {
  position: absolute;
  top: -40px; /* Уведомление будет над элементом */
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background-color: #4caf50;
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.copy-notification:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #4caf50;
}

.copy-notification.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.product__description {
  line-height: 26px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product__description ul {
  padding-left: 20px;
}

.product__description ul li {
  list-style: disc;
  margin-bottom: 5px;
}

.product__description ul li:last-child {
  margin-bottom: 0;
}

.product__meta {
  margin-bottom: 20px;
}

.product__meta-item {
  padding-left: 34px;
  margin-bottom: 5px;
  height: 34px;
  background-image: url(../images/icons/icon-info.svg);
  background-repeat: no-repeat;
  background-position: left center;
  color: rgba(12, 18, 29, .5);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.product__button {
  padding: 10px 50px;
  background-color: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
  border-radius: 10px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.product__button:hover {
  background-color: #F06500;
  color: var(--white);
}

.product__slider {
  border-radius: 24px;
  overflow: hidden;
}

.product__slider img {
  user-select: none;
  max-height: 580px;
  margin: auto;
}

.product__gallery .swiper-slide {

}

.product__slider .swiper-slide {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__slider .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.product__thumbnails-wrapper {
  position: relative;
}

.product__thumbnails {
  padding: 0 24px;
}

.product__thumbnails .swiper-slide .img-box {
  border: 1px solid transparent;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  max-width: 184px;
  overflow: hidden;
} 

.product__thumbnails .swiper-slide-thumb-active .img-box {
  border: 1px solid var(--orange);
}

.product__thumbnails .img-box img {
  max-height: 120px;
  width: 100%;
} 

.product-button-next, 
.product-button-prev {
  margin: 0 !important;
  height: 100%;
  width: 24px;
  transform: translateY(-50%);
  background-color: #f8f9ff;
}

.product-button-next {
  right: 0px!important;
}
.product-button-prev {
  left: 0px!important;
}

.product-button-next:after, 
.product-button-prev:after {
  display: none;
}

/* Product Slider Pagination */
.product__slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.product__slider .swiper-pagination-bullet {
  width: 50px;
  height: 3px;
  border-radius: 19px;
  background-color: rgba(12, 18, 29, 0.20);
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.product__slider .swiper-pagination-bullet-active {
  background-color: rgba(12, 18, 29, 0.50);
}

@media screen and (max-width: 1519px) {
  .product__description {
    line-height: 25px;
    font-size: 14px;
  }
}

/* Show pagination on mobile */
@media screen and (max-width: 1279px) {
  .product__slider .swiper-pagination {
    display: none;
  }
  
  .product-button-next,
  .product-button-prev {
    display: none;
  }

  .product__slider .swiper-slide {
    height: 520px;
  }

  .product__slider .swiper-slide img {
    max-height: 520px;
    min-width: 100%;
    width: auto;
    height: auto;
  }
  .product__thumbnails {
    padding: 0 20px;
    margin: 0 -20px;
  }
  .product__thumbnails .swiper-slide {
    max-width: 160px;
    height: 110px;
    min-width: auto;
    aspect-ratio: 16/11;
  }
  .product__thumbnails .swiper-slide .img-box {
    height: 108px;
  }
  .product__thumbnails .img-box img {
    max-height: 100%;
    max-width: 100%;
  }
  .product__button {
    width: 100%;
    height: 35px;
  }
}

.product__additional {
  padding-bottom: 70px;
}

.page-template .product__additional {
  padding: 70px 0;
}

.product__additional-title {
  color: #0c121d;
  text-align: left;
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 33px;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.page-template-page-flexible .product__additional-title {
  padding: 0!important;
}

.product__additional-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.product__attribute,
.product__complect {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out,
              opacity 0.1s ease-in-out,
              padding 0.2s ease-in-out,
              margin 0.2s ease-in-out;
  max-height: fit-content;
  opacity: 1;
}

.product__additional-box .product__section-content .product__complect:not(:last-child),
.product__additional-box .product__section-content .product__attribute:not(:last-child) {
  padding-bottom: 24px;
}

.product__additional-box .product__section-content .product__attribute.product__attribute--hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-bottom-width: 0;
  transition: max-height 0.2s ease-in-out,
              opacity 0s ease-in-out,
              padding 0.2s ease-in-out,
              margin 0.2s ease-in-out;
}

.product__attribute-name,
.product__complect-name {
  font-weight: 500;
  flex: 1;
  max-width: 100%;
}

.product__attribute-value,
.product__complect-value {
  font-weight: 400;
  flex: 1;
}

.product__show-more {
  margin-top: 18px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  line-height: 25px;
  color: var(--orange);
  transition: all 0.3s ease;
  width: 100%;
}

.product__show-more:hover {
  
}

.product__show-more-icon {
  transition: transform 0.3s ease;
}

.product__show-more.is-expanded .product__show-more-icon {
  transform: rotate(180deg);
}

.product-tabs__box {
  padding: 24px 24px 36px;
  border: 2px solid #EFF0F4;
  border-radius: 24px;
}

.product__additional-files {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
/* 
.product__additional-file {
  padding: 12px 15px;
  border-radius: 24px;
  background-color: #EFF0F4;
  display: flex;
  align-items: center;
  height: 100px;
  max-width: 475px;
  flex: 1;
}

.product__additional-file-link {
  padding-left: 80px;
  color: var(--black);
  background-image: url(../images/icons/icon-file.png);
  background-repeat: no-repeat;
  background-position: left center;
  gap: 10px;
  font-size: 14px;
  line-height: 20px;
  height: 65px;
  display: flex;
  align-items: center;
} */

.product__additional-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.product__additional-files {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.product__additional-file {
  display: flex;
  align-items: center;
  flex: 1;
}

.product__additional-file-link {
  color: var(--orange);
  background-repeat: no-repeat;
  background-position: left center;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: .3s ease-in-out;
}

.product__additional-file-link:hover { 
  color: var(--orange); 
  text-decoration: underline;
}

@media screen and (max-width: 1519px) {
  
  .product__additional {
    padding-bottom: 60px;
  }
  .product__wrapper {
    grid-template-columns: 652px 1fr;
  }
  .product__additional-file {
    max-width: fit-content;
  }
  .product__additional-box {
    padding: 24px 24px 36px;
    margin-top: 36px;
  }
}

@media screen and (max-width: 1279px) {
  .product__additional {
    padding-bottom: 45px;
  }
  .product__wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .product__gallery {
    max-width: calc(100vw - 30px);
  }
  .page-template .product__additional {
    padding: 45px 0;
  }
  .page-template .product__additional-title {
    padding: 0!important;
  }
  .product__additional-file {
    height: fit-content;
  }
  .product__additional-file-name {
    font-size: 14px;
    line-height: 25px;
  }
  
  .product__info-header.d-none {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .product__info-header.m-none {
    display: none;
  }

  .product__title {
    font-size: 28px;
    line-height: 37px;
  }
} 

@media screen and (max-width: 767px) {
  .product__wrapper {
    display: block;
  }
  .product__description {
    max-width: 100%;
  }
  .product__slider img {
    width: auto;
    height: auto;
    min-width: unset;
    max-height: calc(100vw - 30px);
  }
  .product__info {
    margin-top: 0;
  }
  .product__info-header {
    margin-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .page-template .product__additional {
    padding: 35px 0;
  }

  .product__additional {
    padding-bottom: 36px;
  }

  .product__additional-title {
    padding: 0!important;
    font-size: 22px;
    line-height: 26px;
  }

  .product__additional-box {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .product__additional-box .product-tabs__box {
    display: none;
  }

  .product__attribute-name, .product__complect-name {
    font-weight: 500;
    flex: 1;
    max-width: 100%;
  }

  .product__additional-box .product__section-content .product__complect:not(:last-child) {
    padding-bottom: 0;
  }

  .product__additional-box .product__section-content .product__attribute:not(.product__attribute--hidden):not(:last-child) {
    padding-bottom: 16px;
  }

  .product__additional-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .product__additional-file {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
  }

  .product__additional-file-link {
    padding-left: 0;
    gap: 10px;
    font-size: 12px;
    line-height: 19px;
    height: fit-content;
    display: flex;
    align-items: center;
  }

  .product__additional-files {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
  }

  .product__additional-box {
    padding: 24px;
    margin-top: 24px;
  }

  .product__button {
    margin-top: 32px;
    width: 100%;
    height: 35px;
    font-size: 14px;
    line-height: 25px;
    padding: 10px 20px;
  }

  .product__title {
    padding: 30px 0 0;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
  }
  .product__gallery {
    max-width: 100%;
  }
  .product__slider .swiper-slide {
    height: 66.66666667vw;
  }
  .product__slider .swiper-slide img {
    max-height: 100%;
  }
  .product__slider {
    margin-bottom: 24px;
  }
  .product__thumbnails {
    padding: 0 14px;
    margin: 0 -14px;
  }
  .product__thumbnails .swiper-slide {
    padding: 0;
    width: auto;
    max-width: unset;
    height: 90px;
    aspect-ratio: 105/86;
  }
  .product__thumbnails .swiper-slide .img-box {
    height: 86px;
    border-radius: 16px;
  }
  .product__thumbnails .swiper-slide img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product__additional-box .product__attribute, 
  .product__additional-box .product__complect {
    padding-bottom: 16px;
    border-bottom: none;
    margin-bottom: 0;
    gap: 8px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .product__additional-file-name {
    font-size: 12px;
    line-height: 19px;
  }
  .product__show-more {
    margin-top: 0;
  }
}

@media screen and (max-width: 500px) {
  .product__additional-box .product__attribute, 
  .product__additional-box .product__complect {
    gap: 8px;
  }
}

/**PRODUCT TABS SECTION**/
.product-tabs {
  padding-bottom: 0;
  padding-top: 0;
  gap: 5px;
  border-bottom: 1px solid #EFF0F4;
}
.tabs__item.product-tab {
  padding: 8px 20px;
  border-radius: 0;
  margin-bottom: -1px;
  height: auto;
  flex: 1;
  display: flex;
  justify-content: center;
  width: fit-content;
  flex: 0 0 auto;
  background-color: transparent;
  color: var(--black);
  border-bottom: 1px solid transparent;
}
.tabs__item.product-tab.tabs__item--active,
.tabs__item.product-tab:hover {
  border-bottom: 1px solid #F06500;
  background-color: transparent;
  color: var(--black)!important;
}
.tabs__content.product-tabs__content {
  padding: 36px 0 0;
}

.product-tabs__content-item {

}
.product-additional {
  display: flex;
  gap: 20px;
}
.product-additional__text {
  min-width: 670px;
  flex: 0 0 670px;
}
.product-additional__text h2 {
  padding: 5px 0;
  margin-bottom: 5px;
}
.product-additional__text p {
  padding: 5px 0;
}

.product-additional__text table {
  border-radius: 20px;
  margin: 10px 0;
  border-collapse: collapse;
}
.product-additional__text table tr:first-child th {
  padding: 15px 10px;
  text-align: left;
  font-weight: 400;
}
.product-additional__text table tr:first-child th:first-child {
  width: 470px;
  height: 120px;
}
.product-additional__text table td {
  padding: 17px 10px 15px;
}
.product-additional__info {
  padding: 10px;
  border-radius: 12px;
  background-color: var(--white);
  flex: 1;
  height: fit-content;
}

.product-additional__info p:not(:last-child) {
  margin-bottom: 20px;
}

.product-additional__info p {
  color: rgba(12, 18, 29, .5);
}
.product-additional__info p strong {
  color: rgba(12, 18, 29, 1);
  font-weight: 400;
}


.tabs__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-bottom: 1px solid #ccc;
}

.tabs__item {
  padding: 10px 20px;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.tabs__item--active {
  background-color: var(--orange);
  color: var(--white);
}

.tabs__content {
  padding: 20px 0;
}

.tabs__pane {
  display: none;
}

.tabs__pane--active {
  display: block;
}

.tabs__title {
  font-size: 24px;
  margin-bottom: 20px;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
}

.product-table th,
.product-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}
@media screen and (max-width: 1519px) {
  .product {
    padding: 20px 0 120px;
  }
}
@media screen and (max-width: 1279px) {
  .product-table {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .product {
    padding-top: 0 ;
    padding-bottom: 70px;
  }
  .product-additional {
    display: block;
  }
  .product-additional__info {
    padding: 0;
    margin-top: 15px;
    background-color: transparent;
  }
  .product-additional__text {
    min-width: auto;
  }
  .product-additional__text table {
    max-width: 100%;
    font-size: 12px;
  }
  .product-additional__text table tr:first-child th:first-child {
    width: auto;
    height: auto;
  }
}

/**PRODUCT ACCORDION SECTION**/
.product-accordion {
  display: none;
}

.product-accordion__item {
  border-bottom: 1px solid rgba(12, 18, 29, 0.20);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.product-accordion__item:last-child {
  margin-bottom: 0;
}

.product-accordion__header {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.product-accordion__header:hover {
  background-color: #f8f9ff;
}

.product-accordion__header[aria-expanded="true"] {
  
}

.product-accordion__title {
  color: var(--black);
  flex: 1;
}

.product-accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--orange);
}

.product-accordion__header[aria-expanded="true"] .product-accordion__icon {
  transform: rotate(180deg);
}

.product-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.product-accordion__content--active {
  max-height: 1000px;
  transition: max-height 0.3s ease-in, padding 0.3s ease-in;
}

.product-accordion__wrapper {
  padding: 0 20px 20px;
}

/* Mobile styles */
@media screen and (max-width: 767px) {
  .product-tabs__box {
    display: none !important;
  }
  
  .product-accordion {
    display: block;
  }
  
  .product-accordion__header {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
  }
  
  .product-accordion__wrapper {
    padding: 16px 0;
  }

  .product-accordion__item:last-child {
    border-bottom: none;
  }
}

/**PRODUCT LINE SECTION**/
.product-line {
  padding: 40px 0;
}

.product-line__title {
  font-size: 24px;
  margin-bottom: 20px;
}

.product-line__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 20px;
}

.filter-button__mobile,
.filter-apply,
.filter-panel {
  display: none;
} 

@media screen and (max-width: 1279px) {
  /* Панель фильтров продуктов (z-index: 998 выше overlay: 997) */
  .product-filters { 
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    padding: 24px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.35);
    margin: 0;
    pointer-events: none;
    background: #f8f9ff;
    transition: top 0.5s ease;
    z-index: 998;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .product-filters.open {
    top: 69px;
    pointer-events: all;
    transition: top 0.5s ease;
  } 
  .filter-button__mobile {
    margin-top: 14px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px; 
    gap: 8px;
  }
  .product-line__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 9px;
  }
  .active-filters__list {
    flex-wrap: nowrap;
  }
  .active-filters {
    padding-top: 15px;
    overflow: auto;
    max-width: calc(100vw - 30px);
    padding-right: 15px;
    margin-right: -15px;
  }
  .active-filters::-webkit-scrollbar {
    display: none;
  }
  .filter-apply {
    padding-left: 30px;
    padding-right: 30px;
    width: 240px;
    display: flex;
    height: 40px;
  }

  .sidemenu__list {
    display: flex;
    flex-wrap: wrap;
  }
  .sidemenu__item {
    transition: .3s ease-in-out;
  }

  .filter-panel {
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .filter-button__mobile-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
  }
  .filter-button__mobile-wrapper svg {
    width: 16px; 
    height: 16px;
  }
  .catalog-view__wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .catalog-view__item svg{
    width: 24px;
    height: 24px;
  }
  .catalog-view__item--active svg path {
    fill: var(--orange);
    fill-opacity: 1;
  }
  
  /* Стили для блока переключения наличия */
  .stock-toggle {
    background: #eff1fb;
    border-radius: 12px;
    padding: 4px;
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    height: 40px;
    position: relative;
    margin-bottom: 24px;
  }
  
  .stock-toggle__item {
    border-radius: 12px;
    padding: 8px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9ff;
  }
  
  .stock-toggle__item--active {
    background: #f06500;
  }
  
  .stock-toggle__text {
    text-align: center;
    font-family: var(--font);
    font-size: 12px;
    line-height: 19px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(12, 18, 29, 0.65);
    transition: color 0.3s ease;
  }
  
  .stock-toggle__item--active .stock-toggle__text {
    color: #ffffff;
  }
}

@media screen and (max-width: 767px) {
  .filter-apply {
    width: 240px;
    height: 35px;
  }
  
  .product-filters {
    padding: 24px 14px;
  }
}

/* === BANNER === */
.banner {
  position: relative;
  padding: 70px 0;
}
.banner__frame {
  background: #0c121d;
  border-radius: 24px;
  width: 100%;
  height: 230px;
  position: relative; 
  left: 0;
  top: 0;
  overflow: hidden;
  background-size: 0!important;
}
.banner-2 .banner__frame {
  height: fit-content;
  background-size: cover!important;
  background-position: center;
  background-repeat: no-repeat;
}
.banner__content {
  padding: 27px 36px;
  width: 762px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
.banner-2 .banner__content {
  padding: 30px 10px 32px 24px;
  width: 745px; 
}
.banner__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-start;
}
.banner-2 .banner__content-wrapper {
  gap: 24px;
}
.banner__title {
  color: #fff;
  text-align: left;
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 37px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.banner-2 .banner__title {
  font-size: 22px;
  line-height: 32px;
}
.banner__text {
  color: #fff;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.banner__text ul {
  padding-left: 20px;
}
.banner__text ul li {
  list-style: disc;
}
.banner__action {
  padding: 0;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  overflow: hidden;
}
.banner__button {
  padding: 19px 50px;
  background: #f06500;
  height: 55px;
  color: #fff;
  text-align: left;
  font-family: var(--font);
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  gap: 20px;
  transition: all .3s ease-in-out;
}
.banner__button:hover {
  color: #fff;
  background-color: #e56b00;
}
.banner__button-icon {
  width: 24px;
  height: 24px;
}
.banner__img {
  width: auto;
  height: auto;
  position: absolute;
  right: 157px;
  top: 34px;
  z-index: 2;
}
.banner__ellipse {
  background: #f06500;
  border-radius: 50%;
  width: 737px;
  height: 680px;
  position: absolute;
  left: 1014px;
  top: -207px;
  filter: blur(175px);
  z-index: 1;
}

.banner__button-icon.d-none {
  display: none;
}
.banner__button-icon.m-none {
  display: block;
}

@media screen and (max-width: 1519px) {
  .banner {
    padding: 60px 0;
  }
  .banner__img {
    right: 0;
  }
  .banner__content {
    z-index: 100;
    padding: 27px 36px;
  }
}

@media screen and (max-width: 1279px) {
  .banner {
    padding: 45px 20px;
  }
  .banner__container.container {
    padding: 0;
  }
  .banner__frame {
    height: fit-content;
  }
  .banner-2 .banner__frame {
    background-image: none!important;
    background-color: #252B3B;
  }
  .banner__img {
    right: 27px;
    width: 290px;
    bottom: 0;
    top: 50px;
  }
  .page-template-page-home .banner__img,
  .page-id-1910 .banner__img {
    width: 340px;
    top: unset;
    bottom: 45px;
  }
  .banner-2 .banner__img {
    right: 26px;
    width: 146px;
    bottom: 0;
    top: 69px;
  }
  .banner__content {
    padding: 24px;
    z-index: 100;
    width: 100%;
  }
  .banner-2 .banner__content {
    padding: 32px 24px 32px 20px;
  }
  .banner__ellipse {
    width: 437px;
    height: 380px;
    left: 650px;
    top: -107px;
    filter: blur(105px);
  }
  .banner__content-wrapper {
    gap: 12px;
    max-width: 452px;
  }
  .banner-2 .banner__content-wrapper {
    max-width: 556px;
  }
  .banner__title {
    font-size: 22px;
    line-height: 32px;
  }
  .banner__text {
    font-size: 14px;
    line-height: 25px;
  }
  .banner-2 .banner__text {
    max-width: 500px;
  }
  .banner__text  br {
    display: none;
  }
  .banner__action {
    padding: 0;
  }
  .banner__button {
    padding: 12px;
    border: 1px solid var(--orange);
    background-color: transparent;
    height: 44px;
    width: 44px;
  }
  .banner__button span {
    display: none;
  }
  .section__blog .banner {
    padding: 36px 0;
  }
  .banner__action {
    display: none;
  }
  .tax-brand .banner__action {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .banner {
    padding: 35px 10px;
  }
  .tax-brand .banner {
    padding-bottom: 35px;
  }
  .page-template-page-home .banner__container.container {
    padding: 0 10px;
  }

  .section__blog .banner {
    padding: 35px 0;
  }

  .page-template-page-blog .section__blog .banner,
  .page-id-1910 .section__blog .banner {
    padding: 70px 0;
  }

  .banner__frame {
    height: auto;
    background-size: cover!important;
    background-position: center;
    background-repeat: no-repeat;
  }

  .page-template-page-home .banner__frame,
  .tax-brand .banner__frame,
  .single-product .banner__frame {
    aspect-ratio: 347 / 285;
  }
  
  .tax-brand .banner__content-wrapper,
  .page-template-page-home .banner__content-wrapper {
    bottom: 24px;
    left: 18px;
  }

  .page-template-page-home .banner__button,
  .tax-brand .banner__button {
    bottom: 30px;
  }

  .page-template-page-home .banner__title,
  .tax-brand .banner__title {
    font-size: 18px;
    line-height: 28px;
  }

  .tax-brand .banner__title a {
    color: #fff;
  }

  .banner__button-icon.d-none {
    display: block;
  }
  .banner__button-icon.m-none {
    display: none;
  }

  .home .banner {
    padding: 0 0 35px;
    display: block;
  }

  .banner__content-wrapper {
    position: absolute;
    bottom: 26px;
    left: 12px;
  }

  .banner__button {
    padding: 7px;
    height: 40px;
    width: 40px;
    background-color: transparent;
    border: 1px solid white;
    position: absolute;
    right: 23px;
    bottom: 26px;
  }  

  .banner__button span {
    display: none;
  }

  .banner__title {
    font-size: 16px;
    line-height: 22px;
    max-width: 80%;
  }

  .banner__text {
    display: none;
  }

  .banner__action {
    justify-content: flex-end;
    width: 100%;
  }

  .banner__img {
    display: none;
  }

  .banner__content {
    padding: 17px 18px;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .banner__ellipse,
  .page-id-1851 .banner {
    display: none;
  }

  .section__blog .banner .banner__container {
    padding: 0;
  }
}