

.search-section-title {
    margin-top: 20px;
}

.search-section-title--pages {
    margin-top: 36px;
}

.page-header--category .page-header__bg {
    background-image: var(--category-header-desktop) !important;
    background-size: cover !important;
    background-position: center !important;
    background-color: #ffffff;
}

@media (max-width: 767px) {
    .page-header--category .page-header__bg {
        background-image: var(--category-header-mobile, var(--category-header-desktop)) !important;
        background-size: cover !important;
        background-position: center !important;
        background-color: #ffffff;
    }
}

.page-header--category {
    padding-top: 90px;
    padding-bottom: 140px;
}

.page-header--category .page-header__text,
.page-header--category .page-header__text-toggle,
.page-header--category .page-header__title,
.page-header--category .solox-breadcrumb,
.page-header--category .solox-breadcrumb a,
.page-header--category .solox-breadcrumb span {
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55), 0 0 1px rgba(0, 0, 0, 0.6);
}

.price-ranger .ranger-min-max-block {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.price-ranger .ranger-min-max-block .min,
.price-ranger .ranger-min-max-block .max {
    display: inline-block;
    white-space: nowrap;
    font-weight: 500;
}

.price-ranger #slider-range .ui-slider-range {
    background-color: var(--solox-base, #c2a74e);
}

.product__price-ranger #slider-range,
.product__price-ranger #slider-range .ui-slider-handle {
    touch-action: none;
    cursor: pointer;
}

.product__price-ranger #slider-range.noUi-target {
    background: var(--solox-white, #fff);
    border: none;
    height: 5px;
    border-radius: 0;
    box-shadow: none;
}

.product__price-ranger #slider-range .noUi-connect {
    background: var(--solox-base, #c2a74e);
}

.product__price-ranger #slider-range .noUi-handle {
    border: 0;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    right: -7px;
    top: -5px;
    background: var(--solox-base, #c2a74e);
    box-shadow: none;
    cursor: pointer;
}

.product__price-ranger #slider-range .noUi-handle::before,
.product__price-ranger #slider-range .noUi-handle::after {
    display: none;
}

.product__category-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.product__category-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--solox-base, #c2a74e);
}

#categories-filter .product__sidebar--title {
    margin-bottom: 0;
}

.product__categories {
    border: none;
}

.product__item__notice {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
}

.product__item__notice.is-error {
    color: #e24c4b;
}

.product-details__model {
    width: 100%;
    height: 564px;
    display: block;
    background: #ffffff;
    touch-action: none;
}

.variant-step.is-hidden {
    display: none;
}

.product-color-picker {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-color-picker__label {
    font-weight: 600;
    color: #7b756d;
}

.product-color-picker__select {
    display: none;
}

.product-color-picker__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-color-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #707070;
    box-shadow: inset 0 0 0 2px #ffffff;
    cursor: pointer;
    padding: 0;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: visible;
    z-index: 1;
}


.product-color-swatch.is-active {
    box-shadow: inset 0 0 0 3px #ffffff, 0 0 0 4px var(--solox-base, #caa354);
    transform: none;
    z-index: 2;
}

.product-color-swatch.is-active::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.product-color-swatch.is-hidden {
    display: none;
}

.product-color-swatch:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.product-color-swatch.is-out-of-stock {
    opacity: 0.2;
    filter: grayscale(1);
    cursor: not-allowed;
}

.product-color-swatch[data-tooltip] {
    position: relative;
}

.product-color-swatch[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.9);
    color: #ffffff;
    font-size: 11px;
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: normal;
    max-width: 90px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 10;
}

.product-color-swatch[data-tooltip]:hover::before {
    opacity: 1;
}

.product__item__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.product-details__img-link {
    position: relative;
    display: block;
    height: 564px;
}

.product-details__img-search-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-details__img-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-details__img-link:hover .product-details__img-search-icon {
    background-color: #caa354;
    color: #ffffff;
}

.product-details__gallery {
    margin-top: 20px;
}

.product-details__notice {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
}

.product-details__notice.is-error {
    color: #e24c4b;
}

.product-details__description {
    margin: 10px 0 0;
}

.product-details__set-select {
    width: 100%;
}

.product-details__set-variants {
    margin-top: 10px;
    margin-left: 14px;
    padding-left: 12px;
    border-left: 1px dashed #e6dfd7;
    display: grid;
    gap: 10px;
    max-width: 320px;
}

.product-details__set-variants .product-color-picker__label {
    font-size: 12px;
    color: #7b756d;
}

.product-details__set-variants .bootstrap-select>.btn {
    padding: 8px 12px;
    min-height: 42px;
    font-size: 12px;
    line-height: 1.2;
    height: 42px !important;
    display: flex;
    align-items: center;
}

.product-details__set-variants .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    font-size: 12px;
}

.product__showing-sort {
    font-size: 16px;
}

.product-details__set-variants .product__showing-sort .bootstrap-select>.dropdown-toggle {
    line-height: 42px;
    padding-top: 0;
    padding-bottom: 0;
}

.product-details__set-variants .product__showing-sort .bootstrap-select>.dropdown-toggle:before {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    font-size: 14px;
    line-height: 1;
}

.product-details__thumb-btn {
    border: 0;
    padding: 0;
    background: transparent;
    width: 100%;
    cursor: pointer;
}

.product-details__thumb-btn img {
    width: 100%;
    border: 1px solid #f1ebe5;
    border-radius: 6px;
    display: block;
}

.product-details__thumb-btn.is-active img {
    border-color: #caa354;
    box-shadow: 0 0 0 1px #caa354;
}

.product-details__img-link.is-model-active {
    cursor: grab;
}

.product-details__img-link.is-model-active:active {
    cursor: grabbing;
}

.product-details__img-link.is-model-active .product-details__img-search-icon {
    display: none;
}

.product-details__related {
    margin-top: 32px;
}

.product-details__related-title {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-details__related-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
}

.product-details__related-card:hover {
    text-decoration: none;
}

.product-details__related-item .product-one__img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.product-details__related-item .product-one__img img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 6px;
}

.product-details__gallery,
.product-details__related-carousel {
    position: relative;
}

.product-details__gallery .owl-nav,
.product-details__related-carousel .owl-nav {
    margin: 0;
    pointer-events: none;
    position: absolute;
    inset: -15px;
    transform: none;
    margin-top: 0 !important;
}

.product-details__gallery.solox-owl__carousel--basic-nav.owl-carousel .owl-nav button,
.product-details__related-carousel.solox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    pointer-events: auto;
    position: absolute;
    top: calc(50% - 8px) !important;
    transform: translateY(-80%) !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
    background-color: var(--solox-black, #1c1a1d) !important;
    color: var(--solox-white, #ffffff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-details__gallery.solox-owl__carousel--basic-nav.owl-carousel .owl-nav button span,
.product-details__related-carousel.solox-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1px solid #e8e3da;
}

.product-details__gallery.solox-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover,
.product-details__related-carousel.solox-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    background-color: var(--solox-base, #c2a74e) !important;
}

.product-details__gallery.solox-owl__carousel--basic-nav.owl-carousel .owl-dots {
    margin-top: 0;
}

.product-details__gallery.solox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--solox-gray, #f9f6f1);
    border: 1px solid var(--solox-border-color, #e8e3da);
    box-shadow: none;
}

.product-details__gallery.solox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.product-details__gallery.solox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
    background-color: var(--solox-base, #c2a74e);
    border-color: var(--solox-base, #c2a74e);
}

.product-details__related-carousel.solox-owl__carousel--basic-nav.owl-carousel .owl-dots {
    margin-top: 0;
}

.product-details__related-carousel.solox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--solox-gray, #f9f6f1);
    border: 1px solid var(--solox-border-color, #e8e3da);
    box-shadow: none;
}

.product-details__related-carousel.solox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.product-details__related-carousel.solox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
    background-color: var(--solox-base, #c2a74e);
    border-color: var(--solox-base, #c2a74e);
}

.product-details__gallery .owl-nav .owl-prev,
.product-details__related-carousel .owl-nav .owl-prev {
    left: 8px;
}

.product-details__gallery .owl-nav .owl-next,
.product-details__related-carousel .owl-nav .owl-next {
    right: 8px;
}

.product-details__related-item .product-one__content {
    text-align: left;
}

.product-details__related-item .product-one__title {
    font-size: 20px;
    line-height: 1.2;
    color: var(--solox-base, #c2a74e);
}

.product-details__related-item .product-one__price {
    font-size: 13px;
    line-height: 1.2;
}

.product__item__price {
    font-size: 15px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.product-details__price,
.product-details__related-item .product-one__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.product__item__price .price-original,
.product-details__price .price-original,
.product-details__related-item .product-one__price .price-original {
    margin-right: 0;
}

.product-image-color-tags__pending {
    font-size: 12px;
    text-align: center;
    color: #ff0000bd;
    display: block;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.search-page {
    padding-top: 10px;
}

.search-page .section-title__tagline {
    font-size: 30px;
}

.product-details__options.is-attention {
    animation: productOptionsShake 0.45s ease-in-out;
}

.product__item__img {
    aspect-ratio: 268 / 281;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product__item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
