.bread-link {
    color: #000000CC;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Mobile Filter Button */
.btn-filter-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    background-color: #30734C;
    color: #fff;
    border: none;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.btn-filter-mobile:hover,
.btn-filter-mobile:focus {
    background-color: #245a3a;
    color: #fff;
}

.btn-filter-mobile:active {
    background-color: #1e4a30;
    color: #fff;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    display: inline-block;
    width: 1.375rem;
    height: 1.375rem;
    margin: 0 1.75rem 0 0.5rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 3L10 8L6 13' stroke='%23000000' stroke-width='2.0' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    vertical-align: middle;
}

.active-breadcrumb-item {
    color: #30734C !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.bread-link .active-breadcrumb-item {
    color: #30734C;
}

.nav-breadcrumbs {
    padding-top: 2rem;
}

.bread-link:hover {
    box-shadow: inset 0 -2px 0 #344863;
    color: #344863;
}

.filter-card {
    background: #fff;
    border: 0.0625rem solid #DADADA;
    border-radius: 1.25rem;
    overflow: hidden;
}

.filter-card__header {
    padding: 1.125rem 1.25rem;
    font-size: 1.1875rem;
    font-weight: 700;
    color: #fff;
    padding:1.3125rem 5.0625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #30734C;
}

.filter-card__body {
    padding: 0;
}

.filter-card__search {
    margin-bottom: 1rem;
    padding: 1rem 1.25rem 0 1.25rem;
}

.filter-card__search .form-control {
     border: 0.0625rem solid #DADADA;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    font-size: 1.25rem;
}

.filter-card__search .form-control:focus {
    border-color: #30734C;
    box-shadow: 0 0 0 0.1875rem rgba(48, 115, 76, 0.15);
}

.filter-card__search .form-control::placeholder {
    color: #A8B1C1;
}

/* Filter list wrapper */
.filter-list-wrapper {
    max-height: none;
    overflow-y: visible;
    margin: 0 0.5rem 0 1.25rem;
    padding-right: 0.75rem;
}

.filter-list-wrapper--collapsed {
    max-height: 33rem; /* примерно 7 элементов */
    overflow: hidden;
}

.filter-list-wrapper--expanded {
    max-height: 19.25rem;
    overflow-y: auto;
    padding-right: 0.375rem;
}

/* Scrollbar styling */
.filter-list-wrapper--expanded::-webkit-scrollbar {
    width: 0.375rem;
}

.filter-list-wrapper--expanded::-webkit-scrollbar-track {
    background: #F3F5FA;
    border-radius: 0.1875rem;
}

.filter-list-wrapper--expanded::-webkit-scrollbar-thumb {
    background: #30734C;
    border-radius: 0.1875rem;
}

.filter-list-wrapper--expanded::-webkit-scrollbar-thumb:hover {
    background: #245a3a;
}

/* Filter list */
.filter-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap:1.375rem;
    flex-direction: column;
    margin: 0;
}

.filter-list__item {
    padding: 0.625rem 0;
    border-bottom: 0.0625rem solid #DADADA;
}

.filter-list__item:last-child {
    border-bottom: none;
}

.filter-list__link {
    font-size: 1.25rem;
    color: #000;
    text-decoration: none;
    transition: color 0.15s ease;
    display: block;
    font-weight: 400;
    line-height: 130%;
}

.filter-list__link:hover {
    color: #30734C;
}

/* Show more button */
.filter-show-more {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.625rem 1.25rem 1rem 1.25rem;
    background: none;
    border: none;
    color: #30734C;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: color 0.15s ease;
}

.filter-show-more:hover {
    color: #245a3a;
    text-decoration: underline;
}

.filter-show-more--hidden {
    display: none;
}

/* Global Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 0.625rem;
    margin-top: 0.5rem;
}

.filter-buttons__btn {
    flex: 1;
    padding: 0.9375rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-buttons__btn--apply {
    background-color: #30734C;
    border: 0.0625rem solid #30734C;
    color: #fff;
}

.filter-buttons__btn--apply:hover {
    background-color: #245a3a;
    border-color: #245a3a;
    color: #fff;
}

.filter-buttons__btn--reset {
    background-color: #fff;
    border: 0.0625rem solid #30734C;
    color: #30734C;
}

.filter-buttons__btn--reset:hover {
    background-color: #30734C;
    color: #fff;
}

/* Filter checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.625rem;
}

.filter-checkbox--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.filter-checkbox__input {
    width: 1.5rem;
    height: 1.5rem;
    border: 0.0625rem solid #979797;
    border-radius: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    transition: all 0.15s ease;
}

.filter-checkbox__input:checked {
    background-color: #30734C;
    border-color: #30734C;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 0.875rem;
    background-position: center;
    background-repeat: no-repeat;
}

.filter-checkbox__input:focus {
    outline: none;
    box-shadow: 0 0 0 0.125rem rgba(48, 115, 76, 0.25);
}

.filter-checkbox__input:disabled {
    background-color: #F3F5FA;
    border-color: #E0E9FF;
    cursor: not-allowed;
}

.filter-checkbox__label {
    font-size: 1.25rem;
    color: #000;
    line-height: 1.3;
    font-weight: 400;
    word-break: break-word;
}

/* Price range container */
.filter-card__price-range {
    padding: 1rem 1.25rem;
}

/* Custom Sorting Select */
.sorting-dropdown {
    position: relative;
    min-width: 220px;
}

.sorting-dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #DADADA;
    border-radius: 0.625rem;
    cursor: pointer;
    font-size: 1rem;
    color: #000;
    transition: border-color 0.15s ease;
}

.sorting-dropdown__toggle:hover,
.sorting-dropdown.open .sorting-dropdown__toggle {
    border-color: #30734C;
}

.sorting-dropdown__arrow {
    transition: transform 0.2s ease;
}

.sorting-dropdown.open .sorting-dropdown__arrow {
    transform: rotate(180deg);
}

.sorting-dropdown__menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #30734C;
    border-radius: 0.625rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.sorting-dropdown.open .sorting-dropdown__menu {
    display: block;
}

.sorting-dropdown__item {
    padding: 0.625rem 1rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: #000;
    transition: background-color 0.15s ease;
}

.sorting-dropdown__item:hover {
    background-color: #f5f5f5;
}

.sorting-dropdown__item.active {
    background-color: #30734C;
    color: #fff;
}

/* Hide native select when using custom dropdown */
.form-select_sort {
    border: 1px solid #DADADA;
    border-radius: 0.625rem;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 1rem;
    color: #000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-size: 12px;
    min-width: 220px;
}

.form-select_sort:focus {
    border-color: #30734C;
    box-shadow: 0 0 0 0.2rem rgba(48, 115, 76, 0.15);
    outline: none;
}

.form-select_sort option:checked {
    background-color: #30734C;
    color: #fff;
}


.list-item-padding-first {
    padding-left: 0;
    padding-top: 5px;
    padding-bottom: 10px;
    color: #6C7B97;
}

.list-item-padding {
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #6C7B97;
}

.list-item-podcatalog {
    border: none;
    padding-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

.form-check-input:checked {
    background-color: #70C311;
    border-color: #70C311;
}

.form-check-input:focus {
    border-color: #70c31180;
    outline: 0;
    box-shadow: 0 0 0 0.25rem #70c31180;
}


/* scr */

#scrollbar-wrapper {
    display: flex;
    height: 100vh;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.scrollbar {
    overflow-y: scroll;
}


/*
 *  STYLE 1
 */

#style-1::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2); */
    background-color: #F1F1F1;
}

#style-1::-webkit-scrollbar {
    width: 10px;
    background-color: #344863;
}

#style-1::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3); */
    background-color: #C1C1C1;
}

.btn-secondary {
    color: #344863;
    background-color: #F3F5FA;
    border-color: #F3F5FA;
}

.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
    color: #344863;
    background-color: #edeef0;
    border-color: #edeef0;
}

.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem #F3F5FA;
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
    color: #344863;
    background-color: #edeef0;
    border-color: #edeef0;
    box-shadow: 0 0 0 0.25rem #F3F5FA;
}

.btn-secondary:hover {
    color: #344863;
    background-color: #edeef0;
    border-color: #edeef0;
}

.dropdown-item:active {
    color: #344863;
    text-decoration: none;
    background-color: #edeef0;
}

.btn-success {
    color: #FFFFFF;
    background-color: #70C311;
    border-color: #70C311;
}

.btn-success:active {
    color: #FFFFFF;
    background-color: #70C311;
    border-color: #70C311;
}

.btn-success:active:focus {
    box-shadow: 0 0 0 0.2rem rgb(112 195 17 / 50%)
}

.btn-success:focus {
    color: #FFFFFF;
    background-color: #70C311;
    border-color: #70C311;
    box-shadow: 0 0 0 0.2rem rgb(112 195 17 / 50%)
}

.btn-success:hover {
    color: #FFFFFF;
    background-color: #70C311;
    border-color: #70C311;
}

.display-card-show-fisrt {
    display: flex;
}

.display-card-show-second {
    display: none;
}

.display-filter-show {
    display: block;
}

.display-offcanvas-button-show {
    display: none;
}

.display-marketing-show {
    display: flex;
}

.display-card-show-third {
    display: none;
}

@media (max-width: 1200px) {
    .display-card-show-fisrt {
        display: none;
    }

    .display-card-show-second {
        display: block;
    }
}

@media (max-width: 992px) {
    .display-filter-show {
        display: none;
    }

    .display-offcanvas-button-show {
        display: block;
    }
      .breadcrumb-item + .breadcrumb-item::before {
        width: 1.1rem;
        height: 1.1rem;
        margin: 0 1.4rem 0 0.2rem;
    }
}

@media (max-width: 768px) {
    .display-marketing-show {
        display: none;
    }

    .display-card-show-third {
        display: flex;
    }

    .display-card-show-second {
        display: none;
    }

    .bread-link{
        font-size: 0.9rem;
    }
    .active-breadcrumb-item, .breadcrumb-item.active.active-breadcrumb-item {
        font-size: 0.9rem;
    }
}

.hide-label-sorting {
    display: inline-block;
}

@media (max-width: 387px) {
    .hide-label-sorting {
        display: none;
    }
}

.page-link-grey:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(243, 245, 250, 1);
}

.page-link:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(48, 115, 76, 0.10);
}

.filter-item {
    color: #6C7B97;
    text-decoration: none;
}

.filter-item:hover {
    color: #70C311;
}

.btn-toggle::before {
    width: 1.15em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: 0.3em 50%;
}

.btn-toggle[aria-expanded="true"]::before {
    transform: rotate(90deg);
}

/*:root {*/
/*    --ColorPrimaryDk: #193957;*/
/*    --ColorPrimaryLt: linear-gradient(270deg, #70C311 0%, #E8FECF 96.23%);*/
/*}*/

/*.range-slider {*/
/*    --range-slider-common-height: 16px;*/
/*    --range-slider-handle-width: 24px;*/
/*    --range-slider-handle-height: 24px;*/
/*    position: relative;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    width: 99%;*/
/*    height: 100%;*/
/*    margin-top: 30px;*/
/*    margin-bottom: 30px;*/
/*}*/

/*.range-slider>div {*/
/*    position: absolute;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    left: 13px;*/
/*    right: 15px;*/
/*    height: var(--range-slider-common-height);*/
/*}*/

/*.range-slider>div>.range-slider-val-left,*/
/*.range-slider>div>.range-slider-val-right,*/
/*.range-slider>div>.range-slider-val-range {*/
/*    height: 10px;*/
/*}*/

/*.range-slider>div>.range-slider-val-left {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    background: #C1C1C1;*/
/*    !* border: 1px solid #344863; *!*/
/*    border-radius: 10px;*/
/*    margin: 0 7px;*/
/*    height: 14px;*/
/*}*/

/*.range-slider>div>.range-slider-val-right {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    background: #C1C1C1;*/
/*    !* border: 1px solid #344863; *!*/
/*    border-radius: 10px;*/
/*    margin: 0 7px;*/
/*    height: 14px;*/
/*}*/

/*.range-slider>div>.range-slider-val-range {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: -1px;*/
/*    height: 16px;*/
/*    border-radius: 14px;*/
/*    background: var(--ColorPrimaryLt);*/
/*}*/

/*.range-slider>div>.range-slider-handle {*/
/*    z-index: 1;*/
/*    position: absolute;*/
/*    top: -5px;*/
/*    margin-left: -11px;*/
/*    width: var(--range-slider-handle-width);*/
/*    height: var(--range-slider-handle-height);*/
/*    border-radius: 100%;*/
/*    background-color: white;*/
/*    text-align: left;*/
/*    border: 6px solid #344863;*/
/*    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);*/
/*    outline: none;*/
/*    cursor: pointer;*/
/*}*/

/*div.range-slider>input[type="range"]::-ms-thumb {*/
/*    width: var(--range-slider-handle-width);*/
/*    height: var(--range-slider-handle-height);*/
/*    border: 0 none;*/
/*    border-radius: 0px;*/
/*    background: red;*/
/*    pointer-events: all;*/
/*}*/

/*div.range-slider>input[type="range"]::-moz-range-thumb {*/
/*    width: var(--range-slider-handle-width);*/
/*    height: var(--range-slider-handle-height);*/
/*    border: 0 none;*/
/*    border-radius: 0px;*/
/*    background: red;*/
/*    pointer-events: all;*/
/*}*/

/*div.range-slider>input[type="range"]::-webkit-slider-thumb {*/
/*    width: var(--range-slider-handle-width);*/
/*    height: var(--range-slider-handle-height);*/
/*    border: 0 none;*/
/*    border-radius: 0px;*/
/*    background: red;*/
/*    pointer-events: all;*/
/*    -webkit-appearance: none;*/
/*}*/

/*div.range-slider>input[type="range"]::-ms-fill-lower {*/
/*    background: transparent;*/
/*    border: 0 none;*/
/*}*/

/*div.range-slider>input[type="range"]::-ms-fill-upper {*/
/*    background: transparent;*/
/*    border: 0 none;*/
/*}*/

/*.range-slider>input[type="range"] {*/
/*    z-index: 1;*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: var(--range-slider-common-height);*/
/*    opacity: 0;*/
/*    filter: alpha(opacity=0);*/
/*    cursor: pointer;*/
/*    pointer-events: none;*/
/*    -webkit-appearance: none;*/
/*}*/

/*div.range-slider>input[type="range"]::-ms-track {*/
/*    background: transparent;*/
/*    color: transparent;*/
/*    -webkit-appearance: none;*/
/*}*/

/*div.range-slider>input[type="range"]::-moz-range-track {*/
/*    background: transparent;*/
/*    color: transparent;*/
/*    -moz-appearance: none;*/
/*}*/

/*div.range-slider>input[type="range"]:focus::-webkit-slider-runnable-track {*/
/*    background: transparent;*/
/*    border: transparent;*/
/*}*/

/*div.range-slider>input[type="range"]:focus {*/
/*    outline: none;*/
/*}*/

/*div.range-slider>input[type="range"]::-ms-tooltip {*/
/*    display: none;*/
/*}*/

/*.range-slider>div>.range-slider-tooltip {*/
/*    z-index: 2;*/
/*    position: absolute;*/
/*    top: -30px;*/
/*    margin-left: -12px;*/
/*    width: 28px;*/
/*    height: 28px;*/
/*    border-radius: 28px;*/
/*    background-color: var(--ColorPrimaryLt);*/
/*    color: #344863;*/
/*    text-align: center;*/
/*    opacity: 0;*/
/*}*/

/*.range-slider>div>.range-slider-tooltip:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 19px;*/
/*    !* border-left: 14px solid transparent;*/
/*    border-right: 14px solid transparent;*/
/*    border-top-width: 16px;*/
/*    border-top-style: solid;*/
/*    border-top-color: var(--ColorPrimaryLt); *!*/
/*    border-radius: 16px;*/
/*}*/

/*.range-slider>div>.range-slider-tooltip>span {*/
/*    font-size: 12px;*/
/*    font-weight: 700;*/
/*    line-height: 28px;*/
/*}*/

/*.range-slider:hover>div>.range-slider-tooltip {*/
/*    opacity: 1;*/
/*}*/
.text-right-col {
    text-align: right !important;
}

@media (max-width: 992px) {
    .text-right-col {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .text-right-col {
        text-align: right !important;
    }
}


.form-control-green.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: rgba(196, 196, 199, 0.25);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(196, 196, 199, 0.25);
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #344863;
    text-align: center;
    background-color: #FFFFFF;
    border:1px solid rgb(199 24 120 / 50%);
    border-radius: 0.25rem;
}

.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    right: -1px;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: rgb(199 24 120 / 50%);
}


.btn-color-c7 {
    color: #fff;
    background-color: #C71878;
    border-color: #C71878;
}

.btn-color-c7:active:focus {
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}

.btn-color-c7:active {
    color: #fff;
    background-color: #d63384;
    border-color: #d63384;
}

.btn-color-c7:focus {
    color: #fff;
    background-color: #d63384;
    border-color: #d63384;
    box-shadow: 0 0 0 0.25rem rgb(199 24 120 / 19%);
}

.btn-color-c7:hover {
    color: #fff;
    background-color: #d63384;
    border-color: #d63384;
}

/* Search empty card - modern design */
.search-empty-card {
    background: linear-gradient(135deg, #f8faf9 0%, #eef5f1 100%);
    border: 1px solid #d4e5db;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    margin-top: 2rem;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-empty-card__icon {
    width: 5rem;
    height: 5rem;
    background: rgba(48, 115, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.search-empty-card__icon i {
    font-size: 2.5rem;
    color: #30734C;
}

.search-empty-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #344863;
    margin-bottom: 0.75rem;
}

.search-empty-card__subtitle {
    font-size: 1.125rem;
    color: #7D879C;
    margin-bottom: 1.5rem;
}

.search-empty-card__subtitle strong {
    color: #30734C;
}

.search-empty-card__tips {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.search-empty-card__tips-title {
    font-size: 1rem;
    font-weight: 600;
    color: #344863;
    margin-bottom: 0.75rem;
}

.search-empty-card__tips ul {
    margin: 0;
    padding-left: 1.25rem;
}

.search-empty-card__tips li {
    font-size: 1rem;
    color: #7D879C;
    margin-bottom: 0.5rem;
}

.search-empty-card__tips li:last-child {
    margin-bottom: 0;
}

.search-empty-card__btn {
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.625rem;
}

/* Search results header */
.search-results-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid #e4e9f2;
}

.search-results-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.search-results-header__count {
    font-size: 1.125rem;
    color: #7D879C;
    margin: 0;
}

.search-results-header__query {
    color: #30734C;
    font-weight: 600;
}

.product-scroll-title {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 2rem;
    line-height: 130%;
    color:#000;
}
@media (max-width: 500px) {

    .product-gallery--single .product-gallery__image {
        width: 100%;
        height: auto;
        max-height: 100%;
    }

    .product-gallery__carousel::-webkit-scrollbar {
        display: none;
    }
    .breadcrumb-item + .breadcrumb-item::before {
        width: 0.6rem;
        height: 0.6rem;
    }
}