@charset "UTF-8";

@import "fonts.css";

* {
    scrollbar-width: thin;
    scrollbar-color: #999 #000;
}

a {
    text-decoration: none;
    color: #111;
}

a:hover {
    color: #222;
}

.bg-blue {
    background-color: #b1d1fd;
}

header .header-menu-item > a {
    color: #111;
    font-family: 'Circe', sans-serif;
    font-size: min(17px, calc(3vw));
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
}

.nb-top-line{
    min-height: 40px;
    background-color: #111;
    color: #fff;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: min(14px, calc(2vw));
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1em;

    display: flex; align-items: center; justify-content: center;
}
.nb-top-line-button{
    border-radius: 7px;
    border: 1px solid #fff;
}

.nb-container,
.nb-container-xxl,
.nb-container-xl,
.nb-container-lg,
.nb-container-md,
.nb-container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

.nb-cart-number-frame{
    position: absolute;
    margin-left: -8px;
    margin-top: -5px;
}

.nb-cart-number{
    position: relative;
    background-color: #ff5b5b;
    color: #fff;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 10px;
    font-weight: 500;
    font-style: normal;

    border-radius: 50%;
    padding: 2px;

    text-align: center;
    vertical-align: middle;

    min-width: 18px;
    max-width: 18px;
    min-height: 18px;
    max-height: 18px;
}


@media (min-width: 1200px) {
    .nb-container-xl, .nb-container-lg, .nb-container-md, .nb-container-sm, .nb-container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .nb-container-xxl, .nb-container-xl, .nb-container-lg, .nb-container-md, .nb-container-sm, .nb-container {
        max-width: 1320px;
    }
}

.nb-menu-item{
    color: #111;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: min(17px, calc(3vw));
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.18em;

    text-transform: uppercase;
    cursor: pointer;

    border-bottom: 3px solid #fff !important; /* NOTE: important*/
}
.nb-menu-item-dropdown{
    color: #111;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: min(17px, calc(3vw));
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.18em;

    text-transform: uppercase;
    cursor: pointer;

    margin-bottom: 3px;
}
.nb-menu-dropdown-content{
    position: absolute;
    width: 100%;
    left: 0;
    background-color: #fff;
    z-index: 400;
    text-transform: none;
    letter-spacing: normal;

    border-top: 1px solid #dee2e6 !important;
    margin-top: 3px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);

    transition: opacity 0.4s;
    opacity: 0.0;
    transform: scale(0);
}
.nb-menu-item-dropdown:hover {
    border-bottom: 3px solid #111 !important;
    margin-bottom: 0px;
}
.nb-menu-item-dropdown:hover .nb-menu-dropdown-content {
    opacity: 1.0;
    transform: scale(1);
}


.nb-sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 400;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.3s;

    box-shadow: 0 0 5px 0 rgba(50, 50, 50, 0.75);
}

.nb-sidenav-close {
    font-size: 40px;
    color: #555;
}

.nb-sidenav-container{
    transition: 0.8s;
    opacity: 0;
}



.nb-sidenav-collapsible-item {
    position: relative;
}
.nb-sidenav-collapsible-item:last-child {
    border-bottom: none;
}
.nb-sidenav-collapsible-btn {
    width: 100%;
    height: 42px;

    background-color: transparent;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 0;
    border: none;
}
.nb-sidenav-collapsible-btn-empty {
    width: 100%;
    height: 42px;

    background-color: transparent;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 0;
    border: none;
}

.nb-sidenav-collapsible-btn:after {
    font-size:  30px;
    font-weight: 700;
    content: "▾";
    position: absolute;
    right: 5px;
    color: #aaa;
}
.nb-sidenav-collapsible-btn:not(.collapsed):after {
    content: "▴";
}


.nb-sidenav-item-title{
    text-transform: uppercase;

    color: #000;

    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;

    letter-spacing: 0.075em;
}


.nb-sidenav-collapsible-subitem {
    position: relative;
}
.nb-sidenav-collapsible-subitem:last-child {
    border-bottom: none;
}
.nb-sidenav-collapsible-subbtn {
    width: 100%;
    height: 42px;

    background-color: transparent;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 0;
    border: none;
}
.nb-sidenav-collapsible-subbtn:after {
    font-size:  24px;
    font-weight: 700;
    content: "▾";
    position: absolute;
    right: 7px;
    color: #bbb;
}
.nb-sidenav-collapsible-subbtn:not(.collapsed):after {
    content: "▴";
}

.nb-sidenav-subitem-title{
    color: #606060;

    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
}

.nb-sidenav-subitem-item{
    color: #444;

    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
}
.cat-bg-dark {
    background-color: #eee;
}

.cat-title-font {
    color: #111;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.cat-showall {
    color: #888;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1em;

    text-transform: uppercase;
    text-decoration: underline;
}

.cat-desc {
    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
}

.cat-right-img {
    width: 96%;
    object-fit: cover;
}

.cat-title-font {
    font-size: 21px;
}

.cat-showall {
    font-size: 12px;
}

.cat-desc {
    font-size: 13px;
}

@media (min-width: 1200px) {
    .cat-title-font {
        font-size: 40px;
    }

    .cat-showall {
        font-size: 24px;
    }

    .cat-desc {
        font-size: 22px;
    }

    .cat-right-img {
        width: 90%;
    }
}
.c-title-font{
    color: #111;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.15em;

    text-transform: uppercase;
}
.c-desc{
    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
}

.c-filterbar-title{
    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
}
.c-filterbar-option{
    color: #222;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
}
.c-result-count{
    color: #161616;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}
.c-result-sort{
    color: #161616;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;

    border-radius: 0;

    min-width: 175px;
    width: 175px;
}

.c-price-range{
    color: #161616;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;

    border-radius: 30%;
    background: #eee;
}

.c-price-range input {
    width: 45px;
    text-align: center;
    display: inline;
    font-size: 13px !important;
    color: #000 !important;
    background: transparent;
    border: 0 !important;
}

.c-no-result{
    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
}

.c-result-frame-normal{
    height: auto;
    min-height: 500px;
}
.c-result-frame-busy{
    height: 3000px;
}



@media (min-width: 0px) {
    .c-title-font{font-size: 30px;}
    .c-showall{font-size: 12px;}
    .c-desc{font-size: 13px;}
}
@media (min-width: 768px) {
    .c-title-font{font-size: 35px;}
    .c-showall{font-size: 16px;}
    .c-desc{font-size: 18px;}
}
@media (min-width: 1200px) {
    .c-title-font{font-size: 40px;}
    .c-showall{font-size: 24px;}
    .c-desc{font-size: 22px;}
}

.c-title-font{
    color: #111;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.15em;

    text-transform: uppercase;
}
.c-desc{
    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
}

.c-filterbar-title{
    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
}
.c-filterbar-option{
    color: #222;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
}
.c-result-count{
    color: #161616;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
}
.c-result-sort{
    color: #161616;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;

    border-radius: 0;

    min-width: 175px;
    width: 175px;
}

.c-price-range{
    color: #161616;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;

    border-radius: 30%;
    background: #eee;
}

.c-no-result{
    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
}

.c-result-frame-normal{
    height: auto;
    min-height: 500px;
}
.c-result-frame-busy{
    height: 3000px;
}

.ui-widget-content {
    border: none;
    background: #ddd;
    color: #ddd;
}

.ui-widget.ui-widget-content{
    border: none;
}

.ui-widget-header  {
    border: none;
    background: #111;
    color: #111;
    font-weight: bold;
}

.ui-slider {
    border: none;
    position: relative;
    text-align: left;
    border-radius: 0;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
    border-radius: 50%;
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
    height: 50%;
}

.ui-slider-horizontal {
    border: none;
    height: .3em;
}
.ui-slider-horizontal .ui-slider-handle {
    border: 2px solid #111;
    top: -.45em;
    margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}


.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover{
    background: #111;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
    background: #fff;
}
.c-filterblock-collapsible-item {
    /*border-bottom: 1px solid var(--text-gray);*/
    position: relative;
}
.c-filterblock-collapsible-item:last-child {
    border-bottom: none;
}
.c-filterblock-collapsible-btn {
    color: #111;

    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;

    width: 100%;
    height: 44px;

    background-color: transparent;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 0;
    border: none;
}
.c-filterblock-collapsible-btn:after {
    font-size:  24px;
    font-weight: 700;
    content: "▾";
    position: absolute;
    right: 5px;
    color: #555;
}
.c-filterblock-collapsible-btn:not(.collapsed):after {
    content: "▴";;
}
.com-label-alignment {
    display: flex;
}
@media (min-width: 0px) {
    .c-title-font{font-size: 30px;}
    .c-showall{font-size: 12px;}
    .c-desc{font-size: 13px;}
}
@media (min-width: 768px) {
    .c-title-font{font-size: 35px;}
    .c-showall{font-size: 16px;}
    .c-desc{font-size: 18px;}
}
@media (min-width: 1200px) {
    .c-title-font{font-size: 40px;}
    .c-showall{font-size: 24px;}
    .c-desc{font-size: 22px;}
}


.pc-frame {
    width: 100%;
    height: 592px;

    overflow: hidden;

    visibility: hidden;
}

.pc-frame.shown {
    animation: fadeIn 0.75s;
    visibility: visible;
}

@keyframes fadeIn {
    from {
        opacity: 0.25;
    }
    to {
        opacity: 1;
    }
}

.pc-img {
    width: auto;
    height: 454px;
    object-fit: cover;
    filter: brightness(92%);

}

.pc-overlay-frame {
    position: relative;
}

.pc-overlay {
    display: inline-block;
    position: absolute;
    top: 0;
    width: 312px;
    height: 454px;

    background-color: #fff;
    opacity: 0.0;
    z-index: -1;
}

.pc-overlay-desc {
    color: #000;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 110%;

    overflow: hidden;
}

.pc-overlay-btn-frame {
    position: absolute;
    margin-top: 0;
    top: 0;
}

.pc-overlay-btn {
    border: 2px solid #999;
    border-radius: 0;

    background-color: #fff;

    color: #000;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;

    text-align: center;

    padding: 10px;

    cursor: pointer;
    user-select: none;
}

.pc-overlay-btn:hover {
    background-color: #eee;
    border: 2px solid #333;
}

.pc-overlay-btn-invert {
    border: 2px solid #000;
    background-color: #000;
    color: #fff;

}

.pc-overlay-btn-invert:hover {
    background-color: #665;
    border: 2px solid #000;
}

.pc-overlay-btn-not-available {
    opacity: 0;
    cursor: default;
}

.pc-title {
    color: #222529;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 120%;


    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.pc-star {
    color: #777;
    font-size: 100%;
}

.pc-reviews {
    color: #777;
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
}

.pc-price {
    color: #444;
    font-family: 'Circe', sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
}

.pc-heart {
    font-size: 20px;
}


@media (min-width: 0px) {
    .pc-frame {
        width: 100%;
        height: 82vw;
    }

    .pc-img {
        width: 100%;
        height: 47.333vw;
    }

    .pc-title {
        font-size: 14px;
    }

    .pc-star {
        font-size: 85%;
    }

    .pc-price {
        font-size: 14px;
    }
}

@media (min-width: 576px) {
    .pc-frame {
        width: 100%;
        height: 71vw;
    }

    .pc-img {
        width: 100%;
        height: 47.333vw;
    }

    .pc-title {
        font-size: 18px;
    }

    .pc-star {
        font-size: 100%;
    }

    .pc-price {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .pc-frame {
        width: 100%;
        height: 65vw;
    }

    .pc-img {
        width: 100%;
        height: 47.333vw;
    }
}

@media (min-width: 992px) {
    .pc-frame {
        height: 362px;
        width: 221px;
    }

    .pc-img {
        height: 221px;
        width: 221px;
    }

    .pc-title {
        font-size: 15px;
    }


    .pc-frame .pc-overlay {
        transition: all 0.4s;
    }

    .pc-frame:hover .pc-overlay {
        opacity: 0.9;
        background-color: #eee;
    }

    .pc-overlay {
        width: 221px;
        height: 221px;
        z-index: 300;
    }

    .pc-overlay-desc {
        font-size: 14px;
    }

    .pc-overlay-btn-frame {
        top: 172px;
    }

    .pc-overlay-btn {
        font-size: 13px;
        padding: 6px;
    }


}

@media (min-width: 1200px) {
    .pc-frame {
        height: 410px;
        width: 266px;
    }

    .pc-img {
        height: 266px;
        width: 266px;
    }

    .pc-title {
        font-size: 18px;
    }

    .pc-overlay {
        width: 266px;
        height: 266px;
    }

    .pc-overlay-desc {
        font-size: 16px;
    }

    .pc-overlay-btn-frame {
        top: 208px;
    }

    .pc-overlay-btn {
        font-size: 15px;
        padding: 10px;
    }
}

@media (min-width: 1400px) {
    .pc-frame {
        height: 460px;
        width: 312px;
    }

    .pc-img {
        height: 312px;
        width: 312px;
    }

    .pc-title {
        font-size: 20px;
    }


    .pc-overlay {
        width: 312px;
        height: 312px;
    }

    .pc-overlay-desc {
        font-size: 17px;
    }

    .pc-overlay-btn-frame {
        top: 248px;
    }

    .pc-overlay-btn {
        font-size: 18px;
    }

}

.ha-title-font {
    color: #111;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.ha-showall {
    color: #888;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1em;

    text-transform: uppercase;
    text-decoration: underline;
}

.ha-desc {
    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
}


.ha-frame {
    object-fit: cover;
    object-position: center;
}

.ha-subframe {
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.ha-img {
    object-fit: cover;
    object-position: center;
}

.ha-frame .ha-img {
    transition: transform .5s;
}

.ha-frame:hover .ha-img {
    transform: scale(1.03);
    transform-origin: 50% 50%;
}

.ha-frame-overlay {
    position: absolute;
    top: 75%; /*70%;*/
    width: 100%;
    height: 100%;


    background-color: #000;
    opacity: 0.4;
}

.ha-frame-title {


    width: 100%;
    position: absolute;
    top: 78%; /*74%;*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #fff;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 21px;
    font-weight: 700;
    font-style: normal;

    line-height: 100%;

    cursor: pointer;
}

.ha-frame-text {


    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    width: 100%;
    position: absolute;
    top: 84%; /*80%;*/

    overflow: hidden;
    /*
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 3.5em;*/

    color: #fff;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;

    line-height: 125%;
}

.ha-frame-link-subframe {
    width: 100%;
    position: absolute;
    top: 94%;
    left: calc(100% - 80px);


    color: #fff;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;

    line-height: 125%;

    cursor: pointer;
}

@media (min-width: 0px) {
    .ha-title-font {
        font-size: 30px;
    }

    .ha-showall {
        font-size: 12px;
    }

    .ha-desc {
        font-size: 13px;
    }

    .ha-frame {
        height: 120vw;
    }
}

@media (min-width: 576px) {
    .ha-frame {
        height: 120vw;
    }
}

@media (min-width: 768px) {
    .ha-title-font {
        font-size: 35px;
    }

    .ha-showall {
        font-size: 16px;
    }

    .ha-desc {
        font-size: 18px;
    }

    .ha-frame {
        height: 65vw; /*565px;*/
    }
}

@media (min-width: 992px) {
    .ha-frame {
        height: 440px;
    }
}

@media (min-width: 1200px) {
    .ha-title-font {
        font-size: 40px;
    }

    .ha-showall {
        font-size: 24px;
    }

    .ha-desc {
        font-size: 22px;
    }

    .ha-frame {
        height: 500px;
    }
}

@media (min-width: 1400px) {
    .ha-frame {
        height: 565px;
    }
}


.pd-product-title-en{
    color: #222529;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 26px;
    font-weight: 600;
    font-style: normal;
}
.pd-product-title-ru{
    color: #222529;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 26px;
    font-weight: 400;
    font-style: normal;
    line-height: 125%;
}

.pd-product-price{
    color: #222529;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    line-height: 125%;
}
.pd-star{
    color: #777;
    font-size: 16px;
}
.pd-rating{
    color: #222;
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
}
.pd-reviews{
    color: #2c2c2c;
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
}

.pd-content{
    min-height: 920px;
}
.pd-frame{
    background-color: #ebebeb;
}
.pd-img{
    width: auto;
    object-fit: cover;
    filter: brightness(92%);
}

.pd-add-to-cart{
    color: #fff;

    font-family: 'Circe', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;

    text-transform: uppercase;

    min-height: 48px;

    background-color: #222;

    cursor: pointer;
    user-select: none;
}
.pd-add-to-cart-indicator{
    color: #111;

    font-family: 'Circe', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;

    text-transform: uppercase;

    border: 1px solid #222;

    min-height: 48px;
    min-width: 35px;

    cursor: pointer;
    user-select: none;
}

.pd-add-to-cart-value{
    color: #111;

    font-family: 'Circe', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;

    text-transform: uppercase;

    border: 1px solid #222;

    min-height: 48px;
    min-width: 54px;
}
.pd-msg-max-quantity{
    color: #ff5b5b;

    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
}

.pd-info-block-title{
    color: #222529;

    font-family: 'Circe', sans-serif;
    font-size: 26px;
    font-weight: 700;
    font-style: normal;
}

.pd-info-highlights-img{
    width: 50px;
    height: 50px;
}
.filter-green{
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}
.filter-sepia{
    filter: invert(50%) sepia(70%) saturate(65%) hue-rotate(30deg) brightness(115%) contrast(120%);
}
.pd-info-highlights-text{
    color: #222;

    font-family: 'Circe', sans-serif;
    font-size: 0px;
    font-weight: 500;
    font-style: normal;
    line-height: 50%;
}

.pd-info-block-subtitle{
    color: #222;

    font-family: 'Circe', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
}
.pd-info-block-text{
    color: #555;

    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    line-height: 160%;
}


.pd-collapsible-item {
    /*border-bottom: 1px solid var(--text-gray);*/
    position: relative;
}
.pd-collapsible-item:last-child {
    border-bottom: none;
}
.pd-collapsible-btn {
    color: #111;

    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;

    width: 100%;
    height: 48px;


    background-color: transparent;

    /*box-shadow: none;*/


    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 0;
    border: none;
    /*border-bottom: 1px solid #111;*/
}
.pd-collapsible-btn:after {
    font-size:  33px;/*26px;*/
    font-weight: 700;
    content: "▾";
    /*content: "⏷";*/
    position: absolute;
    right: 5px;
    color: #ccc;
}
.pd-collapsible-btn:not(.collapsed):after {
    /*content: "⏶";*/
    content: "▴";
}



@media (min-width: 0px) {
    .pd-info-block-title {font-size: 22px;}
    .pd-info-highlights-img{
        width: 35px;
        height: 35px;
    }
    .pd-info-highlights-text{font-size: 14px;}
    .pd-info-block-subtitle{font-size: 20px;}
}
@media (min-width: 576px) {
    .pd-info-highlights-img{
        width: 45px;
        height: 45px;
    }
    .pd-info-highlights-text{font-size: 16px;}
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {

    .pd-info-block-title {font-size: 26px;}
    .pd-info-highlights-img{
        width: 50px;
        height: 50px;
    }
    .pd-info-highlights-text{ font-size: 14px;}

    .pd-info-block-subtitle{font-size: 22px;}
}
@media (min-width: 1200px) {
    .pd-info-highlights-text{ font-size: 16px;}
}
@media (min-width: 1400px) {
    .pd-info-highlights-text{ font-size: 18px;}
}


.catalog-pagination {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 15px auto;
}

.catalog-pagination__prev,
.catalog-pagination__next {
    font-family: 'Circe', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: #777;
    width: 50px;
    height: 50px;
    display: flex;
    border: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
}

.catalog-pagination__prev.disabled,
.catalog-pagination__next.disabled {
    opacity: .4;
}

.catalog-pagination__list {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.catalog-pagination__list__item {
    position: relative;
}

.catalog-pagination__list__link {
    font-family: 'Circe', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: var(--textGrey);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
}

.catalog-pagination__list__link:hover {
    background-color: var(--grey);
}

.catalog-pagination__list__link.active {
    background-color: #000;
    color: #fff;
}

.com-title-28b{
    color: #222222;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 28px;
    font-weight: 600;
    font-style: normal;

    text-transform: uppercase;
}

.com-label-14{
    color: #222222;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}

.com-label-15{ /*NOTE: used in checkout*/
    color: #222222;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
}

.com-validation-text {
    color: #dc3545;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}


/* https://www.reddit.com/r/css/comments/10b7s8n/how_to_override_element_style_with_class/ */
input[type=email].com-input-email{
    background-color: #ffffff;
    color: #777;
    border-color: #ddd;
    border-radius: 0;
    height: 40px;
    padding: 5px 12px;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}
input[type=password].com-input-password{
    background-color: #ffffff;
    color: #777;
    border-color: #ddd;
    border-radius: 0;
    height: 40px;
    padding: 5px 12px;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
}
input[type=text].com-input-text{
    background-color: #ffffff;
    color: #777;
    border-color: #ddd;
    border-radius: 0;
    height: 40px;
    padding: 5px 12px;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
}
input[type=text].com-input-text-16{ /*NOTE: used in checkout*/
    background-color: #ffffff;
    color: #777;
    border-color: #ddd;
    border-radius: 0;
    height: 40px;
    padding: 5px 12px;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
}
input[type="checkbox"].com-input-checkbox{
    filter: brightness(100%) saturate(0%);

    width: 20px;
    height: 20px;

    flex: none; /*https://www.geeksforgeeks.org/how-to-align-checkboxes-and-their-labels-on-cross-browsers-using-css/*/
}
input[type='radio'] {
    accent-color: #222;
}

.b-img {
    align-items: center;
    width: 100%;
    background-image: url('/assets/img/banner.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    object-fit: cover;
}

.b-title {
    padding-top: 2%;
    color: #fff;
    text-align: center;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.2em;

}

.b-text {
    color: #fff;
    text-align: center;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    line-height: 110%;
    /*letter-spacing: 0.2em;*/
}

@media (min-width: 0px) {
    .b-img {
        height: 150px;
    }

    .b-title {
        font-size: 30px;
    }

    .b-text {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .b-img {
        height: 250px;
    }

    .b-title {
        font-size: 35px;
        padding-top: 4%;
    }

    .b-text {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .b-img {
        height: 350px;
    }

    .b-title {
        font-size: 40px;
    }

    .b-text {
        font-size: 22px;
    }
}


footer {
    background: #0a0a0a;
}

footer .f-title {
    color: #fff;
    font-family: 'Circe', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

footer .f-social-logo-img {
    border-radius: 50%;
    border: 1px solid white;
    padding: 3px 3px 3px 3px;
    width: 30px;
    height: 30px;
    margin-right: 10%;
    filter: grayscale(1000%) contrast(150%) brightness(100%);
}

footer .f-text {
    color: #fff;
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
}

footer .f-text a {
    color: #fff;
}

footer .f-bottom-text {
    color: #fff;
    font-family: 'Circe', sans-serif;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
}

footer .m-logo-img {
    filter: invert(1) grayscale(1000%) contrast(1000%) brightness(1000%);
    width: min(35vw, 130px);
    height: auto;
    z-index: 1000;
}

.offcanvas-collapse {
    display: none;
}

@media (max-width: 991.98px) {
    .offcanvas-collapse {
        display: block;
        transform: translateX(-200%);
        position: fixed;
        top: 80px;
        bottom: 0;
        left: 100%;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow-y: auto;
        visibility: hidden;
        background-color: #fff;
        transition: transform .3s ease-in-out, visibility .3s ease-in-out;
        z-index: 999;
    }

    .offcanvas-collapse.open {
        visibility: visible;
        transform: translateX(-100%);
    }
}

.cookie-modal {
    width: 100%;
    max-width: 600px;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    padding: 20px;
    background-color: #222;
    border-radius: 12px;
    z-index: 9999;
    animation: fadeInCookie 1s ease-in-out;
}

.cookie-modal.hide {
    display: none;
}

.cookie-info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cookie-info__text,
.cookie-info__link {
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
    text-align: left;
    color: #fff;
}

.cookie-info__link {
    text-decoration: underline;
}

.cookie-info__link:hover {
    color: #fff;
}

.cookie__button {
    font-family: 'Circe', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 33px;
    text-align: left;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 10px;
}

.cookie__button:hover {
    background: #434343;
}

.cookie__button img {
    width: 40px;
    height: 40px;
}

@keyframes fadeInCookie {
    from {
        opacity: 0;
        bottom: -100%;
    }
    to {
        opacity: 1;
        bottom: 20px;
    }
}

.blog-title-font{
    color: #111;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 40px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.blog-article-frame{
    object-fit: cover;
    object-position: center;
}
.blog-article-subframe{
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}
.blog-article-img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.blog-article-frame .blog-article-img{
    transition: transform .5s;
}
.blog-article-frame:hover .blog-article-img {
    transform: scale(1.02);
    transform-origin: 50% 50%;
}

.blog-frame-title{



    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    color: #222;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 21px;
    font-weight: 700;
    font-style: normal;

    line-height: 100%;

    cursor: pointer;
}
.blog-frame-text{


    display: -webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient: vertical;

    width: 100%;

    overflow: hidden;

    color: #222;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;

    line-height: 120%;
}
.blog-frame-created{
    width: 100%;

    overflow: hidden;

    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;

    line-height: 120%;
}



.ba-title{
    color: #161616;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 34px;
    font-weight: 500;
    font-style: normal;
}
.ba-text{
    color: #222222;

    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 120%;
}
.ba-created{
    width: 100%;

    overflow: hidden;

    color: #555;
    /* font*/
    font-family: 'Circe', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;

    line-height: 120%;
}

.ba-img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
}
.cat-title-random {
    color: #222;
    font-family: 'Circe', sans-serif;
    font-size: 26px;
    font-weight: 600;
    font-style: normal;
}
@media (min-width: 0px) {
    .ba-title{font-size: 20px;}
    .ba-text{font-size: 14px;}
}
@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
    .ba-title{font-size: 34px;}
    .ba-text{font-size: 18px;}
}
@media (min-width: 1200px) {
    .ba-img{width: 50%;}
}
@media (min-width: 1400px) {
    .ba-img{width: 50%;}
}



@media (min-width: 0px) {
    .blog-title-font{font-size: 30px;}
    .blog-article-frame{height: 96vw;}
    .blog-article-img{height: 50vw;}
    .blog-frame-title{font-size: 15px;}
}
@media (min-width: 576px) {
    .blog-article-frame{height: 84vw;}
    .blog-article-img{height: 60vw;}
}
@media (min-width: 768px) {
    .blog-title-font{font-size: 35px;}
    .blog-frame-title{font-size: 18px;}
    .blog-article-frame{height: 79vw;}
    .blog-article-img{height: 60vw;}
}
@media (min-width: 992px) {
    .blog-article-frame{height: 48vw;}
    .blog-article-img{height: 33vw;}
    .blog-frame-title{font-size: 22px;}
}
@media (min-width: 1200px) {
    .blog-title-font{font-size: 40px;}
    .blog-article-frame{height: 40vw;}
    .blog-article-img{height: 22vw;}
}
@media (min-width: 1400px) {
    .blog-article-frame{height: 30vw;}
    .blog-article-img{height: 20vw;}
}
