/*@font-face {*/
/*    font-family: 'Mardoto-Regular';*/
/*    font-weight: 400;*/
/*    src: url(../fonts/Mardoto-Regular.ttf);*/
/*}*/

/*@font-face {*/
/*    font-family: 'Mardoto-Medium';*/
/*    font-weight: 500;*/
/*    src: url(../fonts/Mardoto-Medium.ttf);*/
/*}*/

/*@font-face {*/
/*    font-family: 'Mardoto-Bold';*/
/*    font-weight: 700;*/
/*    src: url(../fonts/Mardoto-Bold.ttf);*/
/*}*/


/*.regular {*/
/*    font-family: 'Times New Roman', Times, serif;*/
/*    font-weight: 400;*/
/*}*/

/*.medium {*/
/*    font-family: 'Times New Roman', Times, serif;*/
/*    font-weight: 500;*/
/*}*/

/*.bold {*/
/*    font-family: 'Times New Roman', Times, serif;*/
/*    font-weight: 700;*/
/*}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #FFFFFF;
    --darkColor: #1e1e1e;
    --textColor: #444444;
    /*--blue: #2E324E;*/
    --blue: #0242f5;
    --darkBlue: #2a417f;
    /*--red: #9E3333;*/
    --red: #ff0000;
    --lightBlue: #E6E7F8;
    --gray: #D3D3D3;
    --lightGray: #F2F2F2;
    --darkGray: #888;
    --transparentGray: #FFFFFF05;
    --yellow: #FFB800;

    --light: #f5f7fa;

    --z-distance: 8.519vw;
    --from-left: 1;
    --mobile-bkp: 650px;
}

body {
    /*font-family: 'Times New Roman', Times, serif;*/
    font-family: lineto-circular-cyr-pr-bold, Arial, Helvetica, sans-serif;
}

main {
    min-height: 100vh;
}


/* Basic styles for the toggle icon */
.toggle-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black; /* Arrow color */
    margin-left: 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* Rotate the arrow when the menu is expanded */
.collapse.show .toggle-icon {
    transform: rotate(180deg);
}

/* Make sure the collapsible sections are hidden by default */
.collapse {
    display: none;
}

/* Show the collapsible section when it has the .show class */
.show {
    display: block;
}

.country-btn-check + .country-btn-check-label,
.brand-btn-check + .brand-btn-check-label,
.collection-btn-check + .collection-btn-check-label,
.size-btn-check + .size-btn-check-label {
    color: var(--darkColor);
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--gray);
    background: var(--white);
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}

.country-btn-check-label:hover,
.brand-btn-check-label:hover,
.collection-btn-check-label:hover,
.size-btn-check-label:hover {
    border: 1px solid var(--gray) !important;
}

.country-btn-check:checked + .country-btn-check-label,
.brand-btn-check:checked + .brand-btn-check-label,
.collection-btn-check:checked + .collection-btn-check-label,
.size-btn-check:checked + .size-btn-check-label {
    border: 1px solid var(--darkBlue) !important;
    background: var(--white);
}

/*header {*/
/*    z-index: 10;*/
/*    !*background-color: var(--white);*!*/
/*}*/

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    box-shadow: none;
}

.accordion-item {
    border: none;
}

.accordion-button:focus {
    box-shadow: none;
}


/*shop-list*/

.list-of-products {
    /*height: 205px;*/
    padding: 32px 0;
    position: relative;
    background-color: var(--darkBlue);
}

.list-of-products .content-header {
    padding: 0 0 0 112px;
}

.list-of-products img {
    position: absolute;
    top: -100px;
}

.list-of-products h1 {
    text-align: end;
    font-size: 90px;
    font-weight: 900;
    line-height: 108px;
    color: var(--transparentGray);
    text-transform: uppercase;
}

.list-of-products span {
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    color: var(--white);
    text-transform: uppercase;
    padding-left: 84px;
}

.categories-title {

    font-size: 23px;
    font-weight: 500;
    line-height: 27px;
    color: var(--darkColor);
    text-transform: uppercase;
}

.categories-title:hover {
    color: var(--darkColor);
}

.category_name {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;

    color: var(--darkColor);
    cursor: pointer;
}

.category_name:hover {
    color: var(--darkBlue);
}

.clear-all {
    background-color: var(--lightGray);
    color: var(--darkColor);
    padding: 12px 30px;
}

.clear-all:hover {
    background-color: var(--gray);
}

.clear-all:focus, .clear-all:active {
    background-color: var(--gray);
    color: var(--darkColor);
    border: none;
}


.subcategory_name {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--darkColor);
    text-decoration: none;

    cursor: pointer;
}

.category-section-title {
    font-size: 18px;
    font-weight: 500;

    line-height: 20px;
}

.subcategory-count {
    color: var(--darkBlue);
}

.filterTitle {
    font-size: 24px;
    line-height: 26px;
}

.filter .accordion-button {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: var(--darkColor);
    text-transform: capitalize;
}

#products .page-link,
#favourite-products .page-link {
    border: none !important;
    color: var(--darkBlue);
    padding: 10px 15px !important;
    border-radius: 8px;
}

#products .page-link:focus,
#favourite-products .page-link:focus {
    border: none !important;
    background-color: var(--white) !important;
    box-shadow: none !important;
}

#products .disabled > .page-link,
#favourite-products .disabled > .page-link {
    background-color: var(--white) !important;
}

#products .active > .page-link, .page-link.active,
#favourite-products .active > .page-link {
    background-color: var(--darkBlue) !important;
    color: var(--white);
}

.filter a {
    cursor: pointer;
}

.filter .ui-slider-range {
    background-color: #9E3333 !important;
    border-radius: 5px !important;
}

.filter .ui-slider-handle {
    border-radius: 50% !important;
    border: none !important;
    background-color: #9E3333 !important;
    height: 19px !important;
}

.filter .ui-slider-handle:focus-visible {
    border: none !important;
}

.filter .ui-slider {
    background-color: #D9D9D9 !important;
}


.values p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--darkBlue);

}

.materials, .brands, .discounted-products {
    color: var(--darkColor);
    border: none;
    text-decoration: none;
    text-transform: capitalize;
}

.color-link {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: none;
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.19) inset, 0px 0px 0px 3px #FFF;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.selected-color {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.colors-box {
    padding-left: 12px;
}

.choose {
    background-color: var(--darkBlue);
    color: var(--white);
    padding: 12px 30px;
}

.choose, .clear-all {
    font-size: 16px;
    line-height: 16px;
    text-decoration: none;
}

/*product single page*/

.product-info {
    background-color: var(--lightGray);
    border-radius: 0px 300px 323px 0px;
}

.single-product h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: var(--darkColor);
    padding-bottom: 20px;
    margin: 0;
    text-transform: uppercase;
}

.product-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--darkColor);
}
.product-description p{
    word-break: break-all;
}

.single-product-subtitle {
    color: var(--darkGray);
}

.single-product-info {
    color: var(--darkColor);
}

.single-product-save-btn svg {
    vertical-align: bottom;
}

.single-product-save-btn.activeFavourite svg path{
    fill: var(--white);
}

/*.single-product h2 {*/
/*    font-size: 22px;*/
/*    font-weight: 400;*/
/*    line-height: 27px;*/
/*    color: var(--darkColor);*/
/*}*/

.product-color-box {
    border-bottom: 1px solid #D3D3D380;
    padding: 12px 0 20px 0;
}

.product-color-box .product-color {
    width: 40px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.19) inset, 0px 0px 0px 3px var(--lightGray);
}

.active-color {
    background-color: var(--darkBlue);
    height: 5px;
}

.quality, .brand {
    border-bottom: 1px solid #D3D3D380;
}

.quality p {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding: 0;
    margin: 0;
}

.add-product h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    color: var(--darkBlue);

}

.add-product-button {
    font-size: 21px;
    font-weight: 500;
    line-height: 24px;

    color: var(--red);
    margin: 0;
    background-color: var(--lightGray);
}

.heart {
    height: 18px;
    width: 18px;
}

.add-product {
    padding-top: 27px;
}

.size {
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #D3D3D380;
}

/*.single-product .row {*/
/*    width: 100% !important;*/
/*}*/

.bath {
    width: 610px;
    position: absolute;
    top: 189px;
    left: -200px;
}

.shower {
    padding-left: 268px;
}

.product-swiper .gallery-top {
    overflow: hidden;
}

.product-swiper .gallery-top .swiper-wrapper .swiper-slide img {
    /*aspect-ratio: 396/515;*/
    aspect-ratio: 215 / 242;
    width: 100%;
    object-fit: contain;
}

.swiper-button-prev:after, .swiper-button-next:after {
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
}

.swiper-button-prev:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 19.92L8.47997 13.4C7.70997 12.63 7.70997 11.37 8.47997 10.6L15 4.07996' stroke='%232a417f' stroke-width='2.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.swiper-button-next:after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8.91003 19.92L15.43 13.4C16.2 12.63 16.2 11.37 15.43 10.6L8.91003 4.07996' stroke='%232a417f' stroke-width='2.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

.product-swiper .gallery-thumbs .swiper-wrapper .swiper-slide {
    /*height: 80px !important;*/
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.product-swiper .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
}

.background-vector {
    right: -120px;
    top: 30px;
    aspect-ratio: 340 / 451;
    width: 340px;
    opacity: 0.2;
}

.wishlist-product-count {
    color: var(--white);
    background: var(--yellow);

    font-weight: 500;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    font-size: 6px;
    line-height: 6px;
    text-align: center;
    right: -3px;
    top: 3px;
    padding: 2px;
}

.navbar-menu-header .wishlist-product-count {
    color: var(--darkBlue);
}

#navbar-menu .navTitle {
    color: var(--darkColor);

    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}

#navbar-menu .header-links-btn svg {
    vertical-align: unset;
}

#navbar-menu .header-links-btn.active {
    background-color: var(--red);
}

#navbar-menu .header-links-btn.active .navTitle {
    color: var(--white);
}

#navbar-menu .header-links-btn.active svg path {
    fill: var(--white);
}


.similar-products h2 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    line-height: 35px;
    /*color: var(--white);*/
    color: var(--darkColor);
}

.product-images {
    left: -30px;
}

.similar-products-box-bg {
    background-color: var(--darkBlue);
    height: 60%;
    width: 100%;
    /*top: 0;*/
}

.similar-products-box .similar-product {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 3px 4px 4px 0px #CDCCCC40 !important;
    top: 40px;
    aspect-ratio: 1/1;
}

.similar-products-box .similar-product .product-img {
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.similar-product {
    position: relative;
    transition: transform 0.3s ease;
}

.similar-product:hover {
    transform: scale(1.3);
    z-index: 1;
    outline: 2px solid var(--red);
}

/*.similarSwiper {*/
/*    padding-bottom: 120px !important;*/
/*}*/

.similar-products-box .similar-product h3 {
    font-size: 10px;
    font-weight: 500;

    line-height: 12px;
    text-transform: uppercase;
    color: var(--darkBlue);
    padding: 8px 12px;
}

.similarSwiper .swiper-slide:hover {
    z-index: 1 !important;
}


.similarSwiper .swiper-slide {
    overflow: visible !important;
}


.login {
    background-color: var(--darkBlue);
}

.activeFavourite svg path {
    fill: var(--darkBlue);
    stroke: var(--darkBlue);
}
