#header {
    z-index: 4;
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--color1);
    z-index: 1;
    position: relative;
    padding: 10px 10px 10px 17px;
    border-radius: 20px;
}
.header-mm {
    min-width: 40px;
    height: 40px;
    background: var(--color2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--color1);
    border-radius: 8px;
}
.header-end {
    flex: 0 0 20%;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    display: none;
}
.header-start {
     display: flex;
     align-items: center;
     gap: 6px;
 }

.header-logo a {
    max-width: 116px;
    display: flex;
}
.instagram-btn {
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--color2);
    color: var(--color2);
    display: inline-flex;
    background: transparent;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    transition: 0.4s ease;
}
.instagram-btn:hover,
.instagram-btn.active {
    background: var(--color2);
    color: var(--color1);
}
.head-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--color2);
    border-radius: 10px;
    min-width: 153px;
    font-size: 16px;
    gap: 8px;
    height: 40px;
    font-family: var(--med_font);
    color: var(--color1);
    border: 1px solid var(--color2);
    transition: 0.4s ease;
}
.head-btn i {
    font-size: 18px;
}
.head-btn:hover {
    background: transparent;
    color: var(--color2);
}
.menu-wrap {
    display: none;
}
/*
.header-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-menu li a {
    font-size: 14px;
    color:  #fff;
    transition: 0.4s ease;
    white-space: nowrap;
    padding: 21px 0;
    position: relative;
}

.header-menu ul.sub-menu li a {
    display: block;
    padding: 10px 0;
}
.header-menu ul.sub-menu li a::before {
    content: '';
    width: 26px;
    height: 26px;
    background: var(--color3);
    position: absolute;
    right: -24px;
    top: 12px;
    clip-path: ellipse(23% 40% at 100% 51%);
    opacity: 0;
    transition: 0.4s ease;
}
.header-menu ul.sub-menu li a:hover::before {
    opacity: 1;
}
.header-menu li a:hover {
    color: var(--color2);
}
.header-menu .sub-menu li a {
    color: var(--color_text);
}
.header-menu .sub-menu li a:hover {
    color: var(--color3);
}
.header-menu .sub-menu li:not(:last-child) {
    border-bottom: 1px solid #E2E2E2
}
.header-menu > .menu-item-has-children > a::after {
    content: "\e906";
    font-family: icomoon;
    margin-right: 5px;
    transition: 0.4s ease;
    font-size: 5px;
}


.header-menu ul.sub-menu {
    position: absolute;
    z-index: 2;
    background: #fff;
    min-width: 234px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
    padding: 5px 24px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border-radius: 24px;
    pointer-events: none;
    top: 38px;
}
.menu-item {
    position: relative;
}
.header-menu li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-menu .sub-menu li .sub-menu {
    right: 100%;
    top: 0
}

.header-menu .sub-menu > li.menu-item-has-children > a::after {
    content: "\e929";
    font-family: icomoon;
    transform: rotate(90deg);
-webkit-transformrotate(90 deg);
    font-size: 8px;
    position: absolute;
    left: 11px;
    top: 8px;
    transition: 0.4s ease
}*/

.socials {
    font-size: 23px;
    display: flex;
    gap: 16px;
}
.socials a i {
    transition: 0.5s ease;
}
.socials a:hover i {
    transform: rotateY(360deg);
}
.socials a {
    color: #15264F;
    display: flex;
    transition: 0.4s ease;
}
.socials a:hover {
    color: var(--color3);
}
.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    backdrop-filter: blur(100px);
    border-radius: 0 0 20px 20px;
    padding: 0 40px;
    z-index: 0;
    background: linear-gradient(180deg, rgba(187, 199, 228, 0.7) 0%, rgba(82, 101, 146, 0.7) 100%);
    transition: 0.4s ease;
}
.single-product .nav-menu {
    z-index: 0;
}
.nav-menu .header-menu {
    gap: 64px;
}
.nav-menu .header-menu li a {
    padding: 21px 0;
    display: flex;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
}
.nav-menu .header-menu li a:hover {
    color: var(--color1);

}
/*********Mobile Menu***********/
#mask {
    position: fixed;
    z-index: 3;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

#menumobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 370px;
    max-width: 95%;
    z-index: 99991;
    border-radius: 24px 0 0 24px;
    padding: 32px;
    transition: all 0.5s;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3) !important;
    overflow-y: auto;
    background-color: white;
}
#nomenumobile {
    cursor: pointer;
    transition: all 0.5s;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    color: red;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}
.come-menumobile {
    right: 0 !important;
}

.title-mm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--bold_font);
    margin-bottom: 32px;
}

.title-mm .icon-close {
    font-size: 32px;
    color: var(--color3);
}

.main-mm ul li {
    margin-bottom: 14px;
}
.main-mm ul li a {
    color: #111;
    background: #F5F5F5;
    border-radius: 12px;
    display: block;
    padding: 8px 16px;
    position: relative;
    width: 100%;
    transition: 0.4s ease;
}

.main-mm ul li a:hover {
    color: #fff;
    background: var(--color3);
}

.main-mm ul li a::after {
    content: "\e91f";
    color: #C4C6C5;
    font-size: 25px;
    font-family: 'icomoon';
    position: absolute;
    left: 18px;
    border-radius: 3px;
    top: 11px;
    line-height: 1;
    transition: 0.4s ease;
}
.main-mm ul li a:hover::after {
    color: #fff;
}
.main-mm ul li > .sub-menu {
    position:unset;
    border-radius:0;
    padding:0 10px;
    opacity:1;
    visibility:visible;
    pointer-events:all;
    width:100%;
    border-top: 1px solid #b2dff4;
    display:none
}

.childer i {
    display: inline-block;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    font-size: 1rem;
}

.childer {
    position: absolute;
    left: -25%;
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.come-submenu {
    right: 0 !important;
}

.sub-closer {
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    /*background: var(--color2);*/
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-closer i {
    cursor: pointer;
    top: -1px;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    position: relative;
    left: -1px;
    font-size: 1rem;
}
.title-subcome {
    /*color: var(--color2);*/
    font-weight: normal;
    position: relative;
    top: 2px;
}

/** PZ *************/


.header-page {
    position: sticky !important;
    background-color: white !important;
    top: 0;
    z-index: 2;
    box-shadow: 0px -2px 15px -1px #e3ddddc4;
}


#breadcrumbs {
    margin: 20px 0 40px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    font-size: 14px;
    z-index: 1;
    position: relative;
}
#breadcrumbs .breadcrumb_last {
    color: var(--color1);
}
#breadcrumbs a {
    color:  #8F8F8F;
}
#breadcrumbs.light-breadcrumb a {
    color: #AFAFAF;
}
#breadcrumbs.light-breadcrumb .breadcrumb_last {
    color: #fff;
}
#breadcrumbs a:hover {
    color: var(--color1) !important;
}
#breadcrumbs i {
    font-size: 11px;
    color: #8F8F8F;
    position: relative;
    margin: 0 16px;
    transition: 0.4s ease;
    display: inline-block;
    vertical-align: -1px;
}
/* story */
.story-modal-wrap {
    position: fixed;
    top: 97px;
    z-index: 4;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100px);
    height: 100%;
    transition: 0.4s ease;
}
.story-modal-wrap.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.story-modal {
    background: #fff;
    border-radius: 24px;
    display: flex;
    padding: 6px;
}
.story-slider {
    /*flex: 0 0 80%;
    max-width: 80%;*/
    flex-grow: 1;
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 17px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.story-slider::-webkit-scrollbar {
    display: none;
}
.story-content {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 34px;
    backdrop-filter: blur(182px);
    border-radius: 24px;
    background: linear-gradient(to right,#C4C6C533 ,#C4C6C517);
    min-width: 262px;
}
.story-content::before {
    content: '';
    width: 20px;
    height: 100%;
    position: absolute;
    right: -20px;
    top: 0;
    background: linear-gradient(to right, #fff,#fff0);
    display: block;
}
.story-content .icon-like {
    width: 38px;
    height: 38px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--color3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
}
.story-content .count {
    font-size: 20px;
    font-family: var(--bold_font);
    color: var(--color3);
    direction: ltr;
}
.story-content .title {
    font-size: 16px;
    color: var(--color1);
    font-family: var(--bold_font);
    letter-spacing: -2%;
    line-height: 23px;
    text-align: center;
    margin-bottom: 5px;
}
.story-content .desc {
    color: var(--color_text);
    font-size: 14px;
    letter-spacing: -2%;
    line-height: 23px;
    text-align: center;
}
.story-image {
    background: #F5F5F5;
    padding: 18.5px;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    width: 126px;
    height: 126px;
    transition: 0.4s ease;
}
.story-image::before {
    content: '';
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    position: absolute;
    top: 8px;
    right: 8px;
    border-radius: 50%;
    background: linear-gradient(#F5F5F5, #F5F5F5) padding-box, linear-gradient(to top , #C4C6C5, #EDF0EE) border-box;
    border-radius: 50em;
    border: 2px solid transparent;
    z-index: -1;
    transition: 0.4s ease;
}
.story-image img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-text-svg {
    position: absolute;
    width: 126px;
    height: 126px;
    fill: transparent;
    font-size: 18px;
    letter-spacing: 3px;
    word-spacing: 13px;
    direction: ltr;
    top: 0;
    right: 0;
    opacity: 0;
    transition: 0.4s ease;
}
.story-text-svg text {
    fill: #F5F5F5;
}
.story-text-svg {
    animation: rotateText 8s linear infinite;
}
@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.story-item:hover .story-image {
    background: var(--color3);
}
.story-item:hover .story-image:before {
    opacity: 0;
}
.story-item:hover .story-text-svg {
    opacity: 1;
}
.story-item {
    cursor: pointer;
    text-align: center;
}
.story-title {
    text-align: center;
    margin-top: 14px;
    font-size: 16px;
    color: var(--color_text);
}
.swiper-story-wrap {
    width: 430px;
    max-width: 100%;
    height: 791px;
    background: #fff;
    padding: 16px 20px 18px;
    border-radius: 20px;
    max-height: 90%;
    margin: auto;
    overflow: hidden;
    transform: translateY(5vh);
}
.swiper-story-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: #09080875;
    backdrop-filter: blur(4px);
    z-index: 5;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
}
.story-head {
    display: flex;
    align-items: center;
    background: linear-gradient(to right,#C4C6C533 ,#C4C6C517);
    border-radius: 11px;
    margin-bottom: 16px;
    gap: 12px;
    padding: 6px 16px;
}
.story-head .story-image {
    background: #fff;
    padding: 11px;
    width: 72px;
    height: 72px;
}
.story-head .story-image::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 5px;
    right: 5px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to top , #C4C6C5, #EDF0EE) border-box;
    border: 1px solid transparent;
}
.story-head .story-title {
    margin: 0;
}
.story-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.story-close {
    margin-right: auto;
    color: var(--color3);
    font-size: 32px;
    cursor: pointer;
}
.swiper.swiper-story {
    max-height: calc(100% - 100px);
    border-radius: 11px;
}
.story-navigation {
    position: absolute;
    left: 0;
    bottom: 0;
    right: unset;
    background: #fff;
    width: 160px;
    transform: unset;
    border-top-right-radius: 20px;
    padding-top: 9px;
    padding-right: 19px;
}
.story-navigation::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    height: 40px;
    width: 40px;
    border-bottom-right-radius: 50%;
    box-shadow: 0 21px 0 0 #fff;
    z-index: 1;
    transform: rotate(90deg);
}
.story-navigation::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -39px;
    height: 40px;
    width: 40px;
    border-bottom-left-radius: 50%;
    box-shadow: 0 21px 0 0 #fff;
    z-index: 1;
}
.swiper-story .swiper-slide {
    position: relative;
}
/* Progress Bar Container and Bar Styling */
.story-progress-container {
    display: flex;
    width: 100%;
    padding: 8px 8px 0;
    gap: 4px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.story-progress-bar {
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-grow: 1;
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    width: 0%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Style for completed progress bars */
.story-progress-bar.completed .story-progress-fill {
    width: 100%;
}

/* Optional animation for the active progress bar */
.story-progress-bar.active .story-progress-fill {
    transition: width 0.1s linear;
}
@media screen and (min-width: 768px) {

    .nav-menu {
        display: block;
    }

}
@media screen and (min-width: 992px) {
    .menu-wrap {
        display: block;
    }
    .story-modal-wrap .title-mm {
        display: none;
    }
    .header-end {
        display: flex;
    }
    .header-start {
        display: none;
    }
    .header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        background: var(--color1);
        z-index: 1;
        position: relative;
        padding: 10px 20px 10px 10px;
        border-radius: 20px;
    }
    .header-logo {
        flex: 0 0 15%;
    }
    .header-end {
        flex: 0 0 15%;
    }
    .header-menu {
        gap: 15px;
    }

}
@media screen and (min-width: 1200px) {
    .header-logo {
        flex: 0 0 20%;
    }
    .header-end {
        flex: 0 0 20%;
    }
    .header-menu {
        gap: 22px;
    }
    .header-row {
        gap: 40px;
    }
}

@media screen and (max-width: 991.99px) {
    .story-modal-wrap {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        left: unset;
        opacity: 1;
        visibility: visible;
        width: 370px;
        max-width: 95%;
        z-index: 99991;
        border-radius: 24px 0 0 24px;
        padding: 32px;
        transition: all 0.5s;
        box-sizing: border-box;
        overflow: hidden;
        overflow-y: auto;
        background-color: white;
        transform: none
    }
    .story-modal-wrap.active {
        right: 0;
        box-shadow: 0 .5rem 6rem rgba(0, 0, 0, 0.71)
    }
    .story-modal-wrap .container {
        height: calc(100% - 80px);
        padding: 0;
    }
    .story-modal {
        display: flex;
        padding: 0;
        height: 100%;
        flex-direction: column;
        margin: 0 -17px;
        justify-content: space-between;
    }
    .story-content {
        justify-self: flex-end;
    }
    .story-slider {
        flex-wrap: wrap;
        padding: 0;
        flex-grow: unset;
    }
    .story-image {
        padding: 13px;
        width: 100px;
        height: 100px;
    }
    .story-title {
        margin-top: 0;
        font-size: 14px;
    }
    .story-image::before {
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        top: 6px;
        right: 6px;
    }
    .story-text-svg {
        width: 100px;
        height: 100px;
    }
    .story-item-wrap {
        flex: 0 0 30%;
        max-width: 30%;
    }
    .story-content {
        max-width: 310px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 576.99px) {
    .swiper-story-modal {
        background: #fff;
    }
}
@media screen and (max-width: 370px) {
    .story-item-wrap {
        max-width: 28%;
    }
}