h3.no-found-text {
    text-align: center;
    color: var(--green);
    font-size: 22px;
    padding: 20px;
    background: #F4FCF5;
    border-radius: 20px;
    margin: 0;
}
.product-page-wrapper {
    padding-left: 20px;
    padding-right: 20px;
}
.product {
    display: flex;
    flex-wrap: wrap;
    padding-top: 112px;
    padding-bottom: 82px;
    gap: 24px;
}
.product__sidebar {
    width: 25.44%;
}
.product__sidebar--inner {
    padding-right: 23px;
}
.product__sidebar--title {
    font-size: 15px;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
    border-bottom: 1px solid #E8E8E8;
    margin-top: 0;
    padding-bottom: 15px;
    margin-bottom: 17px;
	margin-top: 10px;
}
.product__filter-box--title {
    margin-top: 0;
    margin-bottom: 13px;
    color: var(--gray2);
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
}
.product__filter-box--item {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 400;
    display: flex;
    gap: 10px;
    align-items: center;
}
.product__filter-box--item:not(:last-child) {
    margin-bottom: 40px;
}
.product__filter-box--checkbox {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    margin: 0;
}
.product__filter-box--checkbox:checked {
  background-color: var(--green); /* change this to your active color */
  border-color: var(--green);
  position: relative;
}
.product__filter-box--item label {
    cursor: pointer;
    font-size: 18px;
    color: var(--text-color);
    flex: 1;
}
.product__filter-box--item label.checked {
    color: var(--green);
    font-weight: 500;
	font-family: var(--font-dmsans);
}
.product__content {
    flex: 1;
}
.product-filter-labels {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}
.cpt-result-count {
    font-weight: 500;
    font-size: 15px;
    color: #888888;
    margin: 0;
}
.cpt-sort-form span {
    color: #888888;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    margin-right: 12px;
}
.cpt-sort-form select {
    min-width: 168px;
    height: 33px;
    border: 1px solid #888888;
    border-radius: 68px;
    color: #545454;
    font-weight: 500;
    font-size: 13px;
    padding: 0 10px;
    outline: none;
    background-image: url(/wp-content/uploads/2025/11/chevron-down.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: 95% center;
     -webkit-appearance: none; /* For Chrome, Safari, etc. */
    -moz-appearance: none;    /* For Firefox */
    appearance: none;         /* Standard property */
}
.product-active-filters {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
}
.product-active-filters > span {
    font-size: 18px;
    font-weight: 500;
    color: #888888;
}
.product-active-filters--items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.product-active-filters--item label {
    background: var(--green);
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 72px;
    cursor: pointer;
}
.product-active-filters--item label {
    cursor: pointer;
	font-family: var(--font-dmsans);
	font-weight: 500;
}
.product-active-filters--item input[type="checkbox"] {
    display: none;
}
.product-active-filters--item svg {
    display: flex;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 30px 24px;
}
.product-item {
    width: calc((100% / 3) - 24px + (24px / 3));
    background: #fff;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.product-item__img-wrap {
    padding: 28px 8px 16px;
    height: 231px;
}
.product-item__img-wrap img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.product-item__info-wrap {
    background: var(--green);
    padding: 9px 33px 21px 33px;
    flex: 1;
}
.product-item__placeholder {
    height: 100%;
    margin: 0 auto;
    width: 80%;
}
.product-item__placeholder img {
    object-position: center center;
}
.product-item__title {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 16px;
}
.product-item__excerpt {
    color: var(--white);
    font-size: 13px;
}
ul.page-numbers {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 54px 0 0;
}
.pagination ul li {
    display: flex;
    align-items: center;
}
.pagination ul li > .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 50%;
    color: var(--green);
    text-align: center;
    line-height: 30px;
}
.pagination ul li > .page-numbers.current {
    background: var(--green);
    color: var(--white);
}
.pagination ul li:hover .page-numbers {
    background: var(--green);
    color: var(--white);
}
.pagination ul li:hover svg path {
    stroke: var(--white);
}

/* Elevate Zoom */
.zoomContainer {
    z-index: 9999;
}

/* Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 99;
}

/* Popup box */
.popup-box {
    background: #fff;
    padding: 59px 34px 26px 49px;
    max-width: 772px;
    width: 100%;
    border-radius: 20px;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    animation-fill-mode: forwards;
    margin: 0 20px;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 999;
}

/* Show state */
.popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.popup-box .slick-dots {
    position: relative;
    bottom: unset;
    margin-top: 55px;
}
.popup-box .slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 2px;
}
.popup-box .slick-dots li button {
    padding: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #EDEDED;
    border: 1px solid transparent;
}
.popup-box .slick-dots li.slick-active button {
    border: 1px solid var(--green);
    background: transparent;
}
.popup-box .slick-dots li button:before {
    content: none;
}

/* Zoom-in animation */
@keyframes popupZoomIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Zoom-out animation (optional) */
@keyframes popupZoomOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.7);
    opacity: 0;
  }
}

/* When overlay is visible, animate the box */
.popup-overlay.is-visible .popup-box {
    animation: popupZoomIn 0.25s ease-out forwards;
}

/* When closing we add a class for zoom-out */
.popup-overlay.is-closing .popup-box {
    animation: popupZoomOut 0.2s ease-in forwards;
}

.popup-box__inner {
    display: flex;
    gap: 19px;
    padding-bottom: 28px;
    margin-bottom: 16px;
    border-bottom: 1px solid #B8B8B8;
}
.popup-box__left {
    flex: 1;
    
}
.popup-box__right {
    width: 305px;
}
.popup-box__title-wrap {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
    background: #F4FCF5;
}
.popup-box__title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 25px;
    color: var(--green);
}
.popup-box__brand-name {
    font-size: 21px;
    color: var(--green);
    margin: 0;
}
.popup-box__content {
    font-size: 16px;
    color: var(--text-color);
}
.popup-box__img-wrap {
    height: 271px;
}
.popup-box__img-wrap img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-position: center center;
}
.popup-box__about-title {
    margin-top: 0;
    margin-bottom: 13px;
    font-size: 16px;
    color: var(--green);
    font-weight: 500;
}
.popup-box__about ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    column-count: 2;
}
.popup-box__about ul li {
    position: relative;
    font-size: 16px;
    color: #B8B8B8;
    padding-left: 20px;
    line-height: norma;
}
.popup-box__about ul li:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: #B8B8B8;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
}

.product-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  display: none;
}

/* Selected area */
.product-dropdown__selected {
  width: 100%;
  text-align: left;
  padding: 10px 36px 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Arrow icon */
.product-dropdown__icon {
  margin-left: 8px;
  font-size: 12px;
}

/* Dropdown list */
.product-dropdown__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  max-height: 260px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

/* Show state */
.product-dropdown.is-open .product-dropdown__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Options */
.product-dropdown__option {
  padding: 8px 12px;
  cursor: pointer;
  white-space: nowrap;
}

.product-dropdown__option:hover {
  background: #f5f5f5;
}

/* Active (currently selected) option */
.product-dropdown__option.is-active {
  font-weight: 600;
  background: #f0f4ff;
}


@media only screen and (max-width: 1024px) {
    .product-item {
        width: calc((100% / 2) - 24px + (24px / 2));
    }
}
@media only screen and (max-width: 800px) {
    .product__filter-box--item {
        display: none;
    }
    .product-dropdown {
        display: block;
    }
    .product {
        flex-direction: column;
        padding-bottom: 20px;
    }
    .product__sidebar {
        width: 100%;
    }
    .product__sidebar--inner {
        padding: 0;
    }
    .product__content {
        width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .product {
        padding: 50px 0;
    }
    .product-grid {
        gap: 20px;
    }
    .product-item {
        width: 100%;
    }
    .popup-box__inner {
        flex-direction: column-reverse;
    }
    .popup-box__left {
        width: 100%;
    }
    .popup-box__right {
        width: 100%;
    }
    .popup-box__img-wrap {
        height: 171px;
    }
    .popup-box__about ul {
        column-count: 1;
    }
    .popup-box {
        padding: 30px;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .popup-box__gallery .slick-slide {
        height: 271px;
    }
    .popup-box__gallery .slick-slide img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        object-position: center center;
    }
}
@media only screen and (max-width: 660px) {
    .product-filter-labels {
        flex-direction: column;
        gap: 10px;
    }
    .product-active-filters {
        flex-direction: column;
        gap: 10px;
    }
    .product-active-filters--items {
        justify-content: center;
    }
}