.item-card-product {
  display: flex;
  flex-direction: column;
  background: #fff;
  background: #f3f6f2;
  border: 1px solid rgba(80, 110, 74, 0.1);
  border-radius: 1.2rem;
  overflow: hidden;
  text-decoration: none;
  color: #252826;
  position: relative;
  box-shadow: 0 2px 8px rgba(37, 40, 38, 0.05);
  transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.item-card-product__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.item-card-product:hover {
  box-shadow: 0 8px 32px rgba(37, 40, 38, 0.1);
  transform: translateY(-3px);
  border-color: rgba(80, 110, 74, 0.2);
}
.item-card-product:hover .body-card-product__title {
  color: #506e4a;
}

.item-card-product__image-ibg {
  width: 100%;
  flex-shrink: 0;
  height: 30rem;
  overflow: hidden;
  background: #f3f6f2;
}
.item-card-product__image-ibg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.item-card-product:hover .item-card-product__image-ibg img {
  transform: scale(1.04);
}

.header-card-product {
  padding: 1.4rem 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: #fff;
}
.header-card-product__block {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}
.header-card-product__label {
  font-size: 1.2rem;
  color: rgba(37, 40, 38, 0.4);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-card-product__code {
  font-size: 1.2rem;
  color: rgba(37, 40, 38, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-card-product__code span {
  font-weight: 500;
  color: #506e4a;
}
.header-card-product__modification {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252826;
}

.characteristic-card-product {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f3f6f2;
  border-top: 1px solid rgba(80, 110, 74, 0.2);
  border-bottom: 1px solid rgba(80, 110, 74, 0.2);
  padding: 1.2rem 0;
}
.characteristic-card-product__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 0.8rem;
}
.characteristic-card-product__item + .characteristic-card-product__item {
  border-left: 1px solid rgba(80, 110, 74, 0.1);
}
.characteristic-card-product__value {
  font-size: 1.5rem;
  font-weight: 500;
  color: #252826;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.02em;
}
.characteristic-card-product__label {
  font-size: 1.1rem;
  color: rgba(37, 40, 38, 0.4);
  line-height: 1.3;
  text-align: center;
}

.body-card-product {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.2rem 1.6rem 1.6rem;
  margin-top: auto;
  background: #f3f6f2;
}
.body-card-product__title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #252826;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.body-card-product__price {
  font-size: 1.8rem;
  font-weight: 500;
  color: #252826;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.body-card-product__price .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
}
.body-card-product__status {
  font-size: 1.25rem;
  color: rgba(37, 40, 38, 0.45);
}
.body-card-product__status span {
  font-weight: 500;
  color: #506e4a;
}
.body-card-product .bundle-card__btn {
  margin-top: 0.6rem;
  justify-content: center;
  background: #ffd600;
  color: #252826;
  border: none;
  border-radius: 10rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
  transition: background 0.28s ease, color 0.28s ease;
}
.body-card-product .bundle-card__btn:hover {
  background: #506e4a;
  color: #fff;
}
.body-card-product .bundle-card__btn--notify {
  background: transparent;
  color: rgba(37, 40, 38, 0.4);
  border: 1px solid rgba(37, 40, 38, 0.15);
}
.body-card-product .bundle-card__btn--notify:hover {
  background: rgba(80, 110, 74, 0.06);
  color: #506e4a;
  border-color: rgba(80, 110, 74, 0.3);
}

@media only screen and (min-width: 992px) {
  .archive .banner {
    min-height: 50rem;
  }
}
@media only screen and (min-width: 1600px) {
  .archive .banner {
    min-height: 57rem;
  }
}
@media only screen and (min-width: 1900px) {
  .archive .banner {
    min-height: 67rem;
  }
}
@media only screen and (min-width: 992px) {
  .archive .banner__slide {
    min-height: 50rem;
  }
}
@media only screen and (min-width: 1600px) {
  .archive .banner__slide {
    min-height: 57rem;
  }
}
@media only screen and (min-width: 1900px) {
  .archive .banner__slide {
    min-height: 67rem;
  }
}
.archive .banner__slide-content {
  padding: 8.9rem 0 19.5rem;
  gap: 4.9rem;
}
@media only screen and (min-width: 992px) {
  .archive .banner__slide-content {
    padding: 7.4rem 0 7.3rem;
    max-width: 104rem;
  }
}
@media only screen and (min-width: 1600px) {
  .archive .banner__slide-content {
    padding: 7.4rem 0 7.3rem;
    max-width: 123rem;
  }
}
@media only screen and (min-width: 1900px) {
  .archive .banner__slide-content {
    min-height: 67rem;
    max-width: 144rem;
  }
}
.archive .banner__slide-text {
  max-width: 100%;
}
@media only screen and (min-width: 992px) {
  .archive .banner__slide-text {
    max-width: 59rem;
  }
}
@media only screen and (min-width: 1600px) {
  .archive .banner__slide-text {
    max-width: 70rem;
  }
}
.archive .banner__slide-title {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 2.4rem;
}
@media only screen and (min-width: 768px) {
  .archive .banner__slide-title {
    font-size: 5.2rem;
  }
}
@media only screen and (min-width: 1600px) {
  .archive .banner__slide-title {
    font-size: 6.2rem;
  }
}
.archive .banner__slide-description p {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
@media only screen and (min-width: 992px) {
  .archive .banner__slide-description p {
    margin-bottom: 1.8rem;
  }
}
@media only screen and (min-width: 1600px) {
  .archive .banner__slide-description p {
    font-size: 2rem;
  }
}

.shop {
  padding: 0;
}
.shop__header {
  background: #252826;
  padding: 3.2rem 0;
}
@media only screen and (min-width: 992px) {
  .shop__header {
    padding: 4.8rem 0;
  }
}
.shop__header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.shop__header-icon {
  width: 5.6rem;
  flex-shrink: 0;
  opacity: 0.75;
  filter: brightness(0) invert(1);
}
@media only screen and (min-width: 992px) {
  .shop__header-icon {
    width: 7.2rem;
  }
}
.shop__header-icon img {
  max-width: 100%;
  display: block;
}
.shop__title {
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}
.shop__pagination {
  margin-top: 4rem;
}
@media only screen and (min-width: 992px) {
  .shop__pagination {
    margin-top: 5.6rem;
  }
}
.shop__pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop__pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop__pagination-item--dots {
  pointer-events: none;
}
.shop__pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 4rem;
  padding: 0 0.8rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(37, 40, 38, 0.55);
  border: 1px solid transparent;
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}
.shop__pagination-btn svg {
  display: block;
  flex-shrink: 0;
}
.shop__pagination-btn:hover {
  background: rgba(80, 110, 74, 0.1);
  color: #506e4a;
}
.shop__pagination-btn.is-current {
  background: #506e4a;
  color: #fff;
  border-color: #506e4a;
  pointer-events: none;
}
.shop__pagination-btn.is-dots {
  pointer-events: none;
  color: rgba(37, 40, 38, 0.3);
  min-width: auto;
  padding: 0 0.4rem;
}
.shop__pagination-btn.is-dots:hover {
  background: transparent;
}
.shop__pagination-btn--arrow {
  border-color: rgba(37, 40, 38, 0.18);
  color: rgba(37, 40, 38, 0.45);
  min-width: 4rem;
  padding: 0;
}
.shop__pagination-btn--arrow:hover {
  background: rgba(80, 110, 74, 0.1);
  border-color: rgba(80, 110, 74, 0.2);
  color: #506e4a;
  transform: none;
}
.shop__pagination-btn--arrow.is-disabled {
  opacity: 0.28;
  pointer-events: none;
}

.content-area {
  margin-top: 5.6rem;
  margin-bottom: 9rem;
}
@media only screen and (min-width: 992px) {
  .content-area {
    margin-top: 8rem;
    margin-bottom: 12rem;
  }
}

.shop__container {
  display: grid;
  grid-template-columns: 29rem 1fr;
  gap: 3.6rem;
  align-items: start;
}
@media only screen and (max-width: 992px) {
  .shop__container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.shop__sidebar {
  position: sticky;
  top: 9.6rem;
}
@media only screen and (max-width: 992px) {
  .shop__sidebar {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .shop__sidebar.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
  .shop__sidebar.is-open .shop__sidebar-content {
    transform: translateX(0);
  }
}
.shop__sidebar-overlay {
  display: none;
}
@media only screen and (max-width: 992px) {
  .shop__sidebar-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(37, 40, 38, 0.55);
    backdrop-filter: blur(2px);
  }
}
.shop__sidebar-content {
  border-radius: 1.4rem;
  background: #f3f6f2;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .shop__sidebar-content {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 992px) {
  .shop__sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 34rem;
    max-width: 88vw;
    border-radius: 0;
    background: #fff;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.6rem;
  }
}

.shop__sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1.4rem;
}
@media only screen and (max-width: 992px) {
  .shop__sidebar-header {
    padding: 0 0 1.4rem;
    border-bottom: 1px solid rgba(80, 110, 74, 0.12);
    margin-bottom: 0.4rem;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
  }
}
.shop__sidebar-header h4 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #252826;
  margin: 0;
}

.shop__sidebar-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  color: rgba(37, 40, 38, 0.45);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (max-width: 992px) {
  .shop__sidebar-close {
    display: flex;
  }
}
.shop__sidebar-close:hover {
  color: #506e4a;
  background: rgba(80, 110, 74, 0.1);
}

.shop__sidebar-body {
  padding: 0 2rem;
}
@media only screen and (max-width: 992px) {
  .shop__sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    overscroll-behavior: contain;
  }
  .shop__sidebar-body::-webkit-scrollbar {
    width: 0.3rem;
  }
  .shop__sidebar-body::-webkit-scrollbar-track {
    background: transparent;
  }
  .shop__sidebar-body::-webkit-scrollbar-thumb {
    background: rgba(80, 110, 74, 0.2);
    border-radius: 100px;
  }
}

.shop__sidebar-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 2rem 2rem;
  border-top: 1px solid rgba(80, 110, 74, 0.12);
}
@media only screen and (max-width: 992px) {
  .shop__sidebar-footer {
    padding: 1.2rem 0 0;
    position: sticky;
    bottom: 0;
    background: #fff;
  }
}

.shop__apply-filters {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.6rem;
  padding: 0 2.4rem;
  background: #ffd600;
  color: #252826;
  border: none;
  border-radius: 10rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop__apply-filters:hover {
  background: #506e4a;
  color: #fff;
  transform: translateY(-1px);
}
.shop__apply-filters:active {
  transform: translateY(0);
}

.shop__reset-filters {
  display: inline-flex;
  align-items: center;
  height: 4.6rem;
  padding: 0 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.4rem;
  color: rgba(37, 40, 38, 0.4);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}
.shop__reset-filters:hover {
  color: #506e4a;
}
.shop__reset-filters.is-hidden {
  display: none;
}

.shop__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 2rem 1.4rem;
}
@media only screen and (max-width: 992px) {
  .shop__chips {
    padding: 0.6rem 0 1.2rem;
  }
}
.shop__chips.is-hidden {
  display: none;
}

.shop__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  background: rgba(80, 110, 74, 0.1);
  border-radius: 10rem;
  font-size: 1.25rem;
  line-height: 1;
  color: #252826;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop__chip:hover {
  background: rgba(80, 110, 74, 0.15);
}
.shop__chip-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.shop__chip-label {
  font-weight: 400;
  color: #7a8579;
}
.shop__chip-value {
  font-weight: 500;
  color: #506e4a;
  max-width: 11rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop__chip-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
  border: none;
  background: rgba(80, 110, 74, 0.15);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  color: #506e4a;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop__chip-remove:hover {
  background: #506e4a;
  color: #fff;
}
.shop__chip-remove svg {
  display: block;
}

.shop__filters-form {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 0 0;
}

.shop__filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(80, 110, 74, 0.12);
}
.shop__filter-field:first-child {
  padding-top: 0.4rem;
}
.shop__filter-field:last-child {
  border-bottom: none;
}

.shop__filter-label {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a8579;
}

.shop__filter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.shop__filter-input {
  width: 100%;
  height: 4.8rem;
  padding: 0 4rem 0 1.4rem;
  border: 1.5px solid rgba(80, 110, 74, 0.16);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  font-weight: 400;
  color: #252826;
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  appearance: none;
}
.shop__filter-input::placeholder {
  color: rgba(37, 40, 38, 0.35);
}
.shop__filter-input:focus {
  border-color: #506e4a;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(80, 110, 74, 0.1);
}
.shop__filter-input:not(:placeholder-shown) {
  border-color: rgba(80, 110, 74, 0.35);
  background: #fff;
}

.shop__filter-clear {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  color: rgba(37, 40, 38, 0.35);
  transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop__filter-clear:hover {
  color: #506e4a;
  background: rgba(80, 110, 74, 0.1);
}
.shop__filter-clear svg {
  display: block;
}
.shop__filter-clear.is-hidden {
  display: none;
}

.shop__cat-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  max-height: 26rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(80, 110, 74, 0.2) transparent;
}

.shop__cat-item.is-hidden {
  display: none;
}

.shop__cat-link {
  appearance: none;
  border: none;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.55rem 0.8rem;
  border-radius: 0.6rem;
  color: #252826;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.35;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop__cat-link::before {
  content: "";
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border: 1.5px solid rgba(80, 110, 74, 0.28);
  border-radius: 0.4rem;
  background: #fff;
  transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop__cat-link:hover {
  background: rgba(80, 110, 74, 0.1);
  color: #506e4a;
}
.shop__cat-link:hover::before {
  border-color: rgba(80, 110, 74, 0.5);
}
.shop__cat-link:focus-visible {
  outline: 2px solid #506e4a;
  outline-offset: 1px;
}
.shop__cat-link.is-empty {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.shop__cat-link.is-active {
  color: #506e4a;
  font-weight: 500;
}
.shop__cat-link.is-active::before {
  border-color: #506e4a;
  background: #506e4a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.shop__cat-link span:first-of-type {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__cat-count {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: #7a8579;
  opacity: 0.65;
}

.shop__main {
  min-width: 0;
  padding-top: 0;
}

.shop__topbar {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 992px) {
  .shop__topbar {
    margin-bottom: 2.4rem;
  }
}

.shop__mobile-controls {
  display: none;
}
@media only screen and (max-width: 992px) {
  .shop__mobile-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
}

.shop__filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1.6rem;
  height: 4.2rem;
  background: transparent;
  border: 1.5px solid rgba(80, 110, 74, 0.2);
  border-radius: 10rem;
  font-weight: 500;
  font-size: 1.4rem;
  color: #506e4a;
  cursor: pointer;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.shop__filters-btn svg {
  flex-shrink: 0;
}
.shop__filters-btn:hover {
  background: rgba(80, 110, 74, 0.1);
  border-color: rgba(80, 110, 74, 0.2);
}

.shop__filter-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  min-width: 1.8rem;
  height: 1.8rem;
  padding: 0 0.4rem;
  background: #506e4a;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop__filter-badge.is-hidden {
  display: none;
}

.shop__desktop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(80, 110, 74, 0.12);
  margin-bottom: 2rem;
}
@media only screen and (max-width: 992px) {
  .shop__desktop-controls {
    display: none;
  }
}

.shop__results-count {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(37, 40, 38, 0.5);
}
.shop__results-count .woocommerce-result-count {
  margin: 0;
}

.shop__sort-desktop-btn, .shop__sort-mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: none;
  font-weight: 500;
  font-size: 1.4rem;
  color: #252826;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop__sort-desktop-btn:hover, .shop__sort-mobile-btn:hover {
  opacity: 0.7;
}
.shop__sort-desktop-btn strong, .shop__sort-mobile-btn strong {
  color: #506e4a;
  font-weight: 500;
}

.shop__sort-desktop-dropdown, .shop__sort-mobile-dropdown {
  position: absolute;
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  background: #252826;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(37, 40, 38, 0.2), 0 2px 8px rgba(37, 40, 38, 0.12);
  min-width: 20rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.is-open .shop__sort-desktop-dropdown, .is-open .shop__sort-mobile-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.shop__sort-desktop-item, .shop__sort-mobile-item {
  display: block;
  padding: 0.85rem 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.3;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.shop__sort-desktop-item:hover, .shop__sort-mobile-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.is-active.shop__sort-desktop-item, .is-active.shop__sort-mobile-item {
  background: rgba(255, 214, 0, 0.15);
  color: #ffd600;
  font-weight: 500;
}

.shop__sort-desktop-icon, .shop__sort-mobile-icon {
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.is-open .shop__sort-desktop-icon, .is-open .shop__sort-mobile-icon {
  transform: rotate(180deg);
}

.shop__sort-mobile {
  position: relative;
}
.shop__sort-mobile-btn {
  border: 1.5px solid rgba(80, 110, 74, 0.2);
  border-radius: 10rem;
  padding: 0 1.4rem;
  height: 4.2rem;
  font-size: 1.4rem;
}
.shop__sort-mobile-btn:hover {
  opacity: 1;
  background: rgba(80, 110, 74, 0.1);
  border-color: rgba(80, 110, 74, 0.2);
}
.shop__sort-mobile-dropdown {
  top: calc(100% + 0.6rem);
  right: auto;
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.97);
}
.is-open .shop__sort-mobile-dropdown {
  transform: translateX(-50%) translateY(0) scale(1);
}
.shop__sort-desktop {
  position: relative;
}
.shop__sort-desktop-btn {
  padding: 0.4rem;
}
.shop__sort-desktop-dropdown {
  top: calc(100% + 0.8rem);
}
.shop__products-grid {
  position: relative;
}
.shop__products-grid .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media only screen and (max-width: 1400px) {
  .shop__products-grid .products {
    gap: 1.4rem;
  }
}
@media only screen and (max-width: 992px) {
  .shop__products-grid .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media only screen and (max-width: 576px) {
  .shop__products-grid .products {
    grid-template-columns: 1fr;
  }
}

.shop__no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 7rem 2rem;
}
@media only screen and (max-width: 768px) {
  .shop__no-results {
    padding: 4rem 1.6rem;
  }
}

.shop__no-results-icon {
  width: 7.2rem;
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(80, 110, 74, 0.1);
  border-radius: 50%;
  color: #506e4a;
  margin-bottom: 2.4rem;
}
.shop__no-results-icon svg {
  width: 3.2rem;
  height: 3.2rem;
}

.shop__no-results-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #252826;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 768px) {
  .shop__no-results-title {
    font-size: 1.8rem;
  }
}

.shop__no-results-text {
  font-size: 1.5rem;
  color: rgba(37, 40, 38, 0.5);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.5;
}