body{
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    background-color: #DDDEE0;
    /*background-color: red;*/
    color: black;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html{
}

.container {
    max-width: 1920px;
    padding-left: 50px;
    padding-right: 50px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 1200px){
    .container{
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 579px){
    .container{
        padding-left:  .75rem;
        padding-right: .75rem;
    }
}

a,
a.nav-link{
    color: black;
    transition: .4s;
}

a:hover,
a.nav-link:hover,
a.link:hover{
    color: #6E6E6E;
}

b{
    font-weight: bold;
}

/* BOOTSTRAP CUSTOM
================================
================================*/
.btn:not(.dropdown-toggle){
    height: 60px;
    border-radius: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    font-size: 16px;
    font-weight: 400;
}
@media (max-width: 579px){
    .btn:not(.dropdown-toggle){
        height: 56px;
        font-size: 16px;
        border-radius: 20px;
    }
}

.btn:focus{
    box-shadow: 0 0 0 .25rem rgba(204, 204, 204, .5);
}

a.btn{
    display: flex;
    align-items: center;
}

.btn-yellow {
    --bs-btn-color: #000;
    --bs-btn-bg: yellow;
    --bs-btn-border-color: yellow;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #F9ED33;
    --bs-btn-hover-border-color: #F9ED33;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #ffcd39;
    --bs-btn-active-border-color: #ffc720;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffc107;
    --bs-btn-disabled-border-color: #ffc107;
}

/* FONT FAMILY
================================
================================*/
.GR{
    font-family: 'Gilroy';
}
.GSL{
    font-family: 'Giorgio Sans LCG';
}

/* FONT WEIGHT
================================
================================*/
.fw-100{
    font-weight: 100 !important;
}
.fw-200{
    font-weight: 200 !important;
}
.fw-300{
    font-weight: 300 !important;
}
.fw-400{
    font-weight: 400 !important;
}
.fw-500{
    font-weight: 500 !important;
}
.fw-600{
    font-weight: 600 !important;
}
.fw-700{
    font-weight: 700 !important;
}
.fw-800{
    font-weight: 800 !important;
}
.fw-900{
    font-weight: 900 !important;
}

/* FONT SIZE 
================================
================================*/


/* LOST CSS
================================
================================*/


/* COLOR & BACKGROUND
================================
================================*/


/* MOBILE NAV SWIPE 
================================
================================*/
#dynamicMenu .nav-socials{
    margin-top: 1.75rem;
}

#dynamicMenu .footer-phone{
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

@media (max-width: 900px){
    #dynamicMenu .footer-phone{
        font-size: 48px;
    }
}
@media (max-height: 680px){
    #dynamicMenu{
        height: 100%;
    }
}

/* HEADER 
================================
================================*/
body.template-is-index header{
    position: fixed;
}

header{
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
}

.header-wrapper{
    padding: 1rem .75rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    row-gap: 1rem;
    align-items: center;
}

.logo-header{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    width: fit-content;
}

.nav-header{
    justify-content: center;
    column-gap: 2.25rem;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    height: 60px;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.nav-header li{
}

.nav-header li a{
    position: relative;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    min-width: 72px;
    text-align: center;
    color: black;
}

.nav-header li a::after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:  72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(
    circle at center,
    #F8E800 0%,
    rgba(248, 232, 0, 0.2) 70%,
    transparent 100%
    );
    filter: blur(20px);
    z-index: -1;
    opacity: 0;
    transition: .4s;
}

.nav-header li:hover a{
    color: black;
}

.nav-header li a:hover::after,
.nav-header li a:active::after,
.nav-header li a:focus::after{
    opacity: 1;
}

.nav-header li a:focus{
    color: black;
}

.nav-tools{
    justify-content: end;
}

.nav-tools{
    column-gap: 1rem;
}

.nav-tools li a{
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
}

.nav-tools li a::after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width:  40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(
    circle at center,
    #F8E800 0%,
    rgba(248, 232, 0, 0.2) 70%,
    transparent 100%
    );
    filter: blur(10px);
    z-index: -1;    
    opacity: 0;
    transition: .4s;
}

.nav-tools li:hover a::after{
    opacity: 1;
}

.nav-tools li:nth-child(2){
    margin-right: 3rem;
}

.nav-tools li a img{
    width: 28px;
    height: 28px;
    object-fit: scale-down;
}

.nav-tools .count{
    position: absolute;
    top:   -.25rem;
    right: -.25rem;
    width: 16px;
    height: 16px;
    background-color: yellow;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1550px){
    .nav-header{
        column-gap: 1.25rem;
        padding: 0 1rem;
        border-radius: 16px;
    }
}

@media (max-width: 1400px){
    .nav-header{
        column-gap: .75rem;
        padding: 0 .5rem;
        height: 50px;
    }
    .logo-header{
        height: 50px;
        border-radius: 16px;
    }
}

@media (min-width: 1920px){
    .header-wrapper{
        padding: 1rem 50px;
    }
}

@media (max-width: 1200px){
    .header-wrapper{
        padding: 1rem 20px;
    }
    .header-wrapper{
        grid-template-columns: 1fr 2.5fr 1fr;
    }
    .nav-header{
        column-gap: .5rem;
    }
    .logo-header{
        height: 40px;
        padding: 0 .75rem;
    }
}


@media (max-width: 1050px){
    .header-wrapper{
        grid-template-columns: 1fr 3.1fr 1fr;
        padding: 1rem 1rem;
    }
    .nav-header{
        height: 40px;
        padding: 0;
    }
    .logo-header{
        padding: 0 1rem;
    }
    .logo-header img{
        width: 100%;
    }
}

@media (max-width: 900px){
    .header-wrapper{
        grid-template-columns: 1fr 4fr .25fr;
        align-items: start;
        padding: .5rem .5rem;
    }
    .nav-tools{
        row-gap: .5rem;
    }
    .nav-header li a{
        font-size: 13px;
    }
}

@media (max-width: 992px){
    .header-wrapper{
        display: flex;
        justify-content: space-between;
        padding: .75rem 1rem;
    }
    .logo-header{
        height: 40px;
        /*padding: .75rem .75rem;*/
        border-radius: 12px;
    }
    .logo-header img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mobile-menu{
        height: 40px;
        border-radius: 12px;
        padding: .5rem .75rem;
        background: rgba(255, 255, 255, 0.50);
        backdrop-filter: blur(15px);
        text-decoration: none;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        column-gap: .5rem;
    }
    
    .mobile-menu span{
        line-height: 1;
    }
    .mobile-menu i{
        position: relative;
        width: 15px;
        height: 15px;
        display: block;
    }
    
    .mobile-menu i::before,
    .mobile-menu i::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 2px;
        left: 0;
        background-color: black;
        border-radius: 1px;

    }
    .mobile-menu i::before{
        top: 25%;
    }
    .mobile-menu i::after{
        bottom: 25%;
    }
}

@media (max-width: 579px){
    .header-wrapper{
        padding: .75rem .75rem;
    }
}

/* NAVIGATION
================================
================================*/
/* header and search */
.header-menu{
    position: relative;
    width: 100%;
    height: 60px;
}

.nav-tools li{
    position: relative;
}

/* Анимации */
.nav-header {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-header.hide {
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
}

.header-search {
    position: absolute;
    top: 0;
    right: calc(60px + .5rem);
    transition: .4s;
    transform: translateY(-60px);
    opacity: 0;
    display: block;
}

.header-search input{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    height: 60px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(15px);
    padding: .5rem 2rem;
}

.header-search .btn-search{
    position: absolute;
    top: 0;
    right: .5rem;
    background-color: transparent;
    box-shadow: none;
    outline: none;
}

.header-search .btn-search:active{
    background-color: transparent;
    border-color: transparent;
}

.header-search .btn-search img{
    transition: .4s;
}

.header-search .btn-search:hover img{
    transform: scale(1.1);
}

.header-search.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.header-search-input {
    flex-grow: 1;
    padding: 8px 15px;
    border: 0;
    outline: 0;
    border-right: none;
    outline: none;
}

.js-header-search{
    position: relative;
}

.js-header-search img{
    transition: .4s;
}

.js-header-search.opened img{
    opacity: 0;
    visibility: hidden;
}

.js-header-search i{
    position: absolute;
    width: 18px;
    height: 18px;
    display: block;
    opacity: 0;
    transition: .4s;
}

.js-header-search.opened i{
    opacity: 1;
}

.js-header-search i::before,
.js-header-search i::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: black;
    border-radius: 2px;
    overflow: hidden;
}

.js-header-search i::before{
    width: 2px;
    height: 18px;
    transform: rotate(45deg);
}

.js-header-search i::after{
    width: 18px;
    height: 2px;
    transform: rotate(45deg);
}

@media (max-width: 1400px){
    .header-menu{
        height: 50px;
    }
    .header-search input{
        height: 50px;
        border-radius: 16px;
    }
    .header-search .btn-search{
        height: 50px;
    }
}

@media (max-width: 1050px){
    .header-menu{
        height: 40px;
    }
    .header-search{
        height: 40px;
        right: calc(40px + .5rem);
    }
    .header-search input{
        height: 40px;
    }
    .header-search .btn-search{
        height: 40px;
    }
    .header-search .btn-search img{
        width: 20px;
    }
}

/* MAIN INDEX 
================================
================================*/
.main-block{
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

@media (max-width: 579px){
  .main-block{
    /*aspect-ratio: 9/16;*/
  }
}

.main-block .cover{
  height: 100%;
}
.main-block .cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.block-header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.block-header .cover{
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.block-header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.block-header-content{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 3rem;
    padding: 50px;
    height: fit-content;
}

.block-header-content::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background: #0D0D0D;
    filter: blur(150px);
    z-index: 0;
}

.block-header-content div{
    z-index: 1;
}

.block-header-title{
    font-size: 180px;
    font-weight: 900;
    color: white;
    font-family: 'Giorgio Sans LCG';
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
}

.block-header-text{
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

@media (max-width: 1550px){
    .nav-tools li:nth-child(2){
        margin-right: 1rem;
    }
    .block-header-title{
        font-size: 110px;
    }
}

@media (max-width: 1400px){
    .nav-tools li a{
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }
    .nav-tools li a img{
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 1200px){
    .nav-tools li:nth-child(2){
        margin-right: 0;
    }
}

@media (max-width: 1050px){
    .nav-tools{
        column-gap: .5rem;
    }
    .nav-tools li a{
        width: 40px;
        height: 40px;
    }
    .block-header-content{
        row-gap: 1rem;
    }
}

@media (max-width: 992px){
    .block-header{
        /*height: 100vh;*/
    }

    .block-header-content{
        row-gap: 1.4rem;
        padding: 1.25rem 1rem;
        top: auto;
        bottom: calc(56px + 0rem);
    }
    .block-header-title{
        font-size: 64px;
    }
    .block-header-text{
        font-size: 16px;
    }
    .mobile-bottom{
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        z-index: 3;
        padding: .75rem 1rem;
    }
    .mobile-bottom-wrapper{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .mobile-bottom .nav-tools{
        column-gap: .5rem;
    }
    .mobile-bottom .nav-tools li:nth-child(2){
        margin-right: auto;
    }
    .mobile-bottom .nav-tools li a{
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .mobile-bottom .nav-tools li a img{
        width:  20px;
        height: 20px;
        object-fit: contain;
    }

}

@media (max-width: 579px){
    .block-header{
        height: 100%;
    }
}


/* BLOCK SLIDER */
/*
.block-margin{
    margin-top: 7rem;
    margin-bottom: 7rem;
}
*/
.block-margin{
  margin-top: 12rem;
  margin-bottom: 7rem;
}
.block-margin-first{
  margin-top: 9rem;
}

.block-title{
    font-size: 200px;
    font-weight: 800;
    font-family: 'Giorgio Sans LCG';
    font-style: italic;
    text-transform: uppercase;
    line-height: .8;
}


.block-title-tools{
    display: flex;
    align-items: end;
    column-gap: 5rem;
}

.swiper-tools{
    margin-bottom: 1.15rem;
    margin-left: auto;
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.swiper-tools .swiper-button-next,
.swiper-tools .swiper-button-prev{
    position: relative;
    margin: auto;
    left: 0;
    right: auto;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-color: white;
    transition: .4s;
}

.swiper-tools .swiper-button-next::after,
.swiper-tools .swiper-button-prev::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 17px;
    height: 17px;
}

.swiper-tools .swiper-button-prev::after{
    mask-image: url(arrow-left-dark.svg);
    background-color: black;
}
.swiper-tools .swiper-button-next::after{
    mask-image: url(arrow-right-dark.svg);
    background-color: black;
}

.swiper-tools .swiper-button-next:hover,
.swiper-tools .swiper-button-prev:hover{
    background-color: yellow;
}

.block-more{
    margin-bottom: 1.15rem;
}

.link-more{
    display: inline-flex;
    align-items: center;
    column-gap: 1rem;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    text-wrap: nowrap;
}

.link-more img{
    width: 60px;
    height: 60px;
    background-color: yellow;
    object-fit: scale-down;
    border-radius: 60px;
    transition: .4s;
}

.link-more:hover img{
    transform: rotate(45deg);
}

.carousel-wrapper{
    position: relative;
    margin-top: 1.5rem;
}

.carousel-wrapper .swiper{
    overflow: visible;
}

.carousel-wrapper .swiper-slide{
    height: auto;
}

.carousel-wrapper .swiper-slide .box-product{
    height: 100%;
}

@media(max-width: 1550px){
    .block-title{
        font-size: 120px;
    }
}
@media (max-width:1200px){
    .block-title{
        font-size: 100px;
    }
}

@media (max-width: 1050px){
    .swiper-tools .swiper-button-next,
    .swiper-tools .swiper-button-prev{
        width:  50px;
        height: 50px;
    }

    .link-more img{
        width:  50px;
        height: 50px;
    }
    .swiper-tools{
        margin-bottom: .75rem;
    }
    .block-more{
        margin-bottom: .25rem;
    }
    .block-title img{
        max-width: 105px;
    }
}

@media (max-width: 900px){
    .block-title-tools{
        column-gap: 1rem;
    }
    .link-more{
        font-size: 16px;
        column-gap: .5rem;
    }
    .swiper-tools{
        column-gap: .5rem;
    }
}

@media (max-width:579px){
    .block-margin{
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .block-title-tools{
        margin-top: 1rem;
        align-items: center;
        justify-content: space-between;
    }
    .block-title{
        font-size: 64px;
        display: flex;
        flex-direction: column;
    }
    .swiper-tools{
        column-gap: .5rem;
        margin-bottom: 0;
        margin-left: 0;
    }
    .swiper-tools .swiper-button-next,
    .swiper-tools .swiper-button-prev{
        width: 40px;
        height: 40px;
    }
    .swiper-tools .swiper-button-next::after, 
    .swiper-tools .swiper-button-prev::after{
        width:  12px;
        height: 12px;
        mask-size: cover;
    }
    .block-more{
        margin-bottom: 0;
    }
    .link-more{
        font-size: 14px;
        column-gap: .5rem;
    }
    .link-more img{
        width: 40px;
        height: 40px;
        padding: .7rem;
    } 
}

/* BOX PRODUCT */
.box-product{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: white;
    display: block;
    text-decoration: none;
/*    padding: 1.75rem;*/
}

.box-product:hover{
    color: black;
}

.box-product .cover{
    aspect-ratio: 3/4;
}

.box-product .cover::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: transparent;

    width:  306px;
    height: 306px;

    aspect-ratio: 1/1;
    z-index: 0;
    opacity: 0.6;
    border-radius: 50%;

    transition: .4s;
}
.box-product:hover .cover::after{
    background-color: #FF0025;
    filter: blur(90px);
}

.box-product .cover img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    position: relative;
    object-position: top;
}

.box-product-info{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .25);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    z-index: 1;
}

.box-product-title{
    font-size: 16px;
    font-weight: 600;
}

.box-product-prices{
    display: flex;
    align-items: end;
    column-gap: 1rem;
    line-height: 1;
    font-style: italic;
}

.box-product-prices span{
    font-size: 36px;
    font-weight: 900;
    font-family: 'Giorgio Sans LCG';
}

.box-product-prices del{
    margin-bottom: .1rem;
    font-size: 20px;
    color: #6E6E6E;
    font-weight: 900;
}

.labels{
    position: absolute;
    top:  2rem;
    left: 2rem;
    width: fit-content;
    z-index: 1;
}

.labels label{
    padding: 10px 15px;;
    background-color: red;
    text-align: center;
    line-height: .75;
    border-radius: 60px;
    font-size: 24px;
    font-weight: 900;
    font-style: italic;
    font-family: 'Giorgio Sans LCG';
}

.labels label.percent{
    background-color: #FF0025;
    color: white;
}

.box-product .favorite{
    position: absolute;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.box-product:hover .favorite{
    opacity: 1;
    visibility: visible;
}

.box-product .favorite img{
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: .4s;
}

.box-product .favorite:hover img{
    transform: scale(1.2);
}

@media (max-width: 1550px){
    .box-product-info{
        padding: .75rem 1.25rem;
    }
}

@media (max-width: 579px){
    .box-product-info{
        padding: .75rem 1rem;
    }
    .box-product-title{
        font-size: 12px;
    }
    .box-product-prices span{
        font-size: 20px;
    }
    .box-product-prices del{
        font-size: 13px;
        margin-bottom: 0;
    }
    .labels{
        top: 1rem;
        left: 1rem;
    }
    .box-product .favorite{
        opacity: 1;
        visibility: visible;
        top: 1rem;
        right: 1rem;
    }
}
/* BOX PRODUCT END */


/* SLIDER */
.block-slider .block-title{
    position: absolute;
    top:  1.25rem;
    left: 3.5rem;
    z-index: 2;
    color: white;
}

@media (min-width: 1200px){
    .block-slider .block-title{
        font-size: 96px;
    }
}

.box-slider{
    position: relative;
}

.box-slider-info{
    position: absolute;
    left: 3.5rem;
    bottom: 1.5rem;
    color: white;
}

.box-slider-info-name{
    font-size: 14px;
    font-weight: 600;
}

.box-slider-info-title{
    font-size: 82px;
    font-weight: 900;
}

.box-slider-info-text{
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

@media (min-width: 1200px){
    .box-slider-info .block-more{
        margin-left: 9.5rem;
        margin-top: 1.5rem;
    }
    .box-slider-info-text{
        padding-left: 9.5rem;
    }
}

.box-slider-info .block-more .link-more{
    color: yellow;
}

.box-slider-info-subject{
    position: absolute;
    top: 60%;
    left: 65%;
    color: white;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.block-slider .swiper-slide .box-slider-info,
.block-slider .swiper-slide .box-slider-info-subject{
    opacity: 0;
    transition: 1s;
}

.block-slider .swiper-slide.swiper-slide-active .box-slider-info,
.block-slider .swiper-slide.swiper-slide-active .box-slider-info-subject{
    opacity: 1;
}

.block-slider .swiper-tools{
    position: absolute;
    top: auto;
    right: 8rem;
    bottom: 1rem;
}

.block-slider .swiper-tools .swiper-button-prev,
.block-slider .swiper-tools .swiper-button-next{
    background-color: transparent;
    border: 1px solid white;
    transition: .4s;
}

.block-slider .swiper-tools .swiper-button-prev::after,
.block-slider .swiper-tools .swiper-button-next::after{
    background-color: white;
    transition: .4s;
}

.block-slider .swiper-tools .swiper-button-prev:hover,
.block-slider .swiper-tools .swiper-button-next:hover{
    background-color: yellow;
}

.block-slider .swiper-tools .swiper-button-prev:hover::after,
.block-slider .swiper-tools .swiper-button-next:hover::after{
    background-color: black;
}

.block-slider .swiper-pagination{
    width: fit-content;
    display: flex;
    align-items: center;
    column-gap: .75rem;
    top: auto;
    left: auto;
    right: 3rem;
    bottom: calc(1rem + 50px - 4px);
}

.swiper-pagination .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    border: 2px solid white;
    margin: 0;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active{
    background-color: white;
}

@media (min-width: 600px){
    .box-slider-info .block-more{
        margin-top: 2.5rem;
    }
}

@media (min-width: 1200px){
    .box-slider-info .block-more{
        margin-top: 1.5rem;
    }
}

@media (max-width: 1050px){
    .box-slider-info-text{
        padding-left: 5rem;
    }
    .box-slider-info-title{
        font-size: 62px;
    }
    .box-slider-info-text{
        font-size: 18px;
    }
    .box-slider-info .block-more{
        margin-left: 5rem;
    }
}

@media (max-width:1199px){
    .block-slider .block-title{
        font-size: 64px;
    }
}

@media (max-width:900px){
    .block-slider .block-title{
        font-size: 62px;
        left: 1.5rem;
    }
    .box-slider-info-title{
        font-size: 48px;
        line-height: 1.2;
    }
    .box-slider-info{
        left: 1.5rem;
    }
    .box-slider-info-text{
        font-size: 14px;
        padding-left: 0;
    }
    .box-slider-info .block-more{
        margin-left: 0;
    }
    .block-slider .swiper-tools{
        right: 8rem;
    }
    .block-slider .swiper-pagination{
        bottom: 50px;
    }
}

@media (max-width:599px){
    .block-slider .block-title{
        left: 1rem;
        top: 1rem;
    }
    .box-slider-info{
        left: 1rem;
        bottom: 8rem;
    }
    .box-slider-info-title{
        font-size: 36px;
    }
    .box-slider-info-text{
        font-size: 14px;
        padding-left: 0;
        line-height: 1.2;
    }
    .box-slider-info-text br{
        display: none;
    }
    .box-slider-info-subject{
        top: 40%;
        left: 50%;
    }
    .block-slider .swiper-tools{
        right: auto;
        left: 1rem;
        bottom: 1.25rem;
    }
    .block-slider .swiper-pagination{
        left: 0;
        right: 0;
        margin: auto;
        bottom: 5.25rem;
    }
    .block-more{
        position: absolute;
        top: auto;
        right: 1rem;
        /*bottom: -6.75rem;*/
    }
    .block-slider .block-more{
        bottom: -6.75rem;
    }
}

/* BLOCK COLLECTOIN */
.block-title img{
    vertical-align: baseline;
}

.block-collections .row:nth-child(even){
    /*flex-direction: row-reverse;*/
}

.block-collections .block-collection:nth-child(even) .row{
    flex-direction: row-reverse;
}

.block-collections .block-collection:nth-child(even) .block-title-tools .swiper-tools{
    margin-left: 0;
    margin-top: 3rem;
}

@media (max-width: 900px){
    .block-collections .block-collection:nth-child(even) .block-title-tools .swiper-tools{
        margin-top: 1.5rem;
    }
}

.block-collection:first-child{
  margin-bottom: 11.5rem;
}
.block-collection .block-more,
.block-collection .swiper-tools{
  margin-bottom: 2.5rem;
}

.box-banner{
    position: relative;
    height: 100%;
    overflow: hidden;
}

.box-banner .cover{
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    /*aspect-ratio: 16/9;*/
}

.box-banner .cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-banner-info{
    position: absolute;
    left:    2rem;
    bottom:  2rem;
    padding: 2rem;
    width: calc(50% - 2rem);
    background-color: rgba(13, 13, 13, 0.10);
    border: 2px solid rgba(110, 110, 110, 0.30);;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    z-index: 1;
    color: white;
}

.box-banner-title{
    font-size: 48px;
    font-family: 'Giorgio Sans LCG';
    line-height: 1;
    font-weight: 900;
    font-style: italic;
}
.box-banner-text{
    font-weight: 600;
    line-height: 1.2;
    margin-top: 1rem;
}

@media (max-width: 1550px){
    .box-banner-info{
        width: 75%;
    }
}

@media (max-width: 1050px){
    .box-banner-info{
        padding: 1rem;
        left: 1rem;
        bottom: 1rem;
    }
    .box-banner-title{
        font-size: 36px;
    }
}

@media (max-width: 1024px){
  .block-margin{
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .block-margin-first{
    margin-top: 3rem;
  }
  
  .block-collection:first-child{
    margin-bottom: 1.5rem;
  }
  .block-collection .block-more,
  .block-collection .swiper-tools{
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 991px){
    .box-banner-info{
        width: fit-content;
    }
}
@media (max-width: 579px){
    .block-collections .block-title-simle{
        /*margin-bottom: -1rem;*/
    }
    .block-collections .block-title-simle img{
        width: 40%;
        margin-top: .5rem;
    }
    .box-banner-title{
        font-size: 24px;
    }
    .box-banner-info{
        left: 1rem;
        bottom: 1rem;
        padding: 1rem;
    }
    .block-collection .swiper{
        overflow: visible;
    }
    .block-title img{
        /*vertical-align: top;*/
    }
    .block-collections .block-collection:nth-child(even) .block-title-tools .swiper-tools{
        margin-top: auto;
    }
}


@media (max-width: 340px){
    .block-title img{
        vertical-align: top;
    }
}

/* COLLECTION 
================================
================================*/
.collection-title-filte-sort{
    display: flex;
    align-items: end;
    column-gap: 1rem;
    justify-content: space-between;
}

/* FILTER - SORT */
/* FILTER */
.collection-filter{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.collection-filter-sort{
    display: flex;
    align-items: center;
    column-gap: 5rem
}

.filter-item,
.collection-sort{
    position: relative;
}

.collection-filter-sort .btn-outline-dark{
    border: 2px solid black;
    padding: .5rem 2rem .5rem 2rem;
    font-size: 20px;
    font-weight: 700;
}

.collection-filter-sort .btn-outline-dark img{
    margin-top: -3px;
    margin-right: .5rem;
    transition: .2s;
}

.collection-filter-sort .btn-outline-dark:hover img{
    filter: invert(1);
}

.collection-filter-sort .btn-filsor{
    position: relative;
    border: 2px solid black;
    padding: .5rem 3rem .5rem 2rem;
    font-size: 20px;
    font-weight: 700;
    background-image: url(arrow-down-dark.svg);
    background-repeat: no-repeat;
    background-position: 90% 50%;
}


.collection-filter-sort .btn-filsor::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #F8E800 0%, rgba(248, 232, 0, 0.2) 70%, transparent 100%);
    filter: blur(20px);
    z-index: -1;
    opacity: 0;
    transition: .4s;
}
.collection-filter-sort .btn-filsor:hover::after {
    opacity: 1;
}

.collection-filter-sort .btn-filsor::before{
    position: fixed;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .25);
    z-index: 12;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.collection-filter-sort .btn-filsor[aria-expanded="true"]::before{
    opacity: 1;
    visibility: visible;
}

.filter-item-list{
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    z-index: 13;
}

.filter-item-list .card{
    padding: 2rem;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    border: 0;
}

.filter-item-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-item-header-close{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.filter-item-header-title{
    font-weight: 700;
    font-size: 20px;
}

.filter-item-content{
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: .5rem;
}

/* Filter - Size - Color */
.filter-item-content label{
    display: inline-flex;
    align-items: center;
    column-gap: .75rem;
    cursor: pointer;
}

.filter-item-content label .checkbox{
    position: relative;
    width: 40px;
    height: 40px;
    border: 2px solid black;
    border-radius: 12px;
}

.filter-item-content label .checkbox::before{
    position: absolute;
    content: '';
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 50%;
    background: radial-gradient(circle at center, #F8E800 0%, rgba(248, 232, 0, 0.2) 70%, transparent 100%);
    filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.filter-item-content label:hover .checkbox::before{
    opacity: 1;
    visibility: visible;
}

.filter-item-content label .checkbox::after{
    position: absolute;
    content: '';
    width: 22px;
    height: 22px;
    background-color: #0D0D0D;
    border-radius: 6px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.filter-item-content label input{
    display: none;
}

.filter-item-content label input:checked + .checkbox::after{
    opacity: 1;
    visibility: visible;
}

.filter-item-content label .text{
    font-weight: 500;
}

/* Filter - Color */
.icon-color{
    width:  30px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid #ccc;
}

/* COLLECTION LIST */
.collection-list{
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.collection-list .box-banner .box-banner-info{
    left: auto;
    right: 2rem;
}

/* SORT */
.collection-sort .filter-item-list{
    width: 320px;
}

.collection-sort .filter-item-content{
    display: flex;
    flex-direction: column;
}

/* PAGINATION */
.pagination{
    margin: 2rem 0;
    display: flex;
    align-items: center;
    column-gap: 5rem;
    justify-content: end;
}

.nav-pagination{
    background-color: white;
    border-radius: 60px;
}

.nav-pagination li .nav-link,
.pagination-tools .pagination-arrow{
    padding: 0;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
}

.nav-pagination li .nav-link:hover{
    background-color: #efefef;
}

.nav-pagination li .nav-link.dots{
    color: black;
}

.nav-pagination li .nav-link.dots:hover{
    cursor: default;
    background-color: transparent;
}

.nav-pagination li .nav-link.active{
    background-color: yellow;
    cursor: default;
    color: black;
}

.pagination-tools{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.pagination-tools .pagination-arrow{
    background-color: white;
}

.pagination-tools .pagination-arrow:hover{
    background-color: yellow;
}

.pagination-tools .pagination-arrow:hover img{
    transform: scale(1.05);
}



@media (max-width:1550px){
    .collection-filter-sort .btn-outline-dark,
    .collection-filter-sort .btn-filsor{
        font-size: 16px;
    }
    .collection-title-filte-sort{
        flex-direction: column;
        row-gap: 1.5rem;
        justify-content: start;
        align-items: baseline;
    }
    .collection-filter-sort{
        width: 100%;
        justify-content: space-between;
    }
    .filter-item-list{
        width: 500px;
        left: 0;
    }
    .collection-sort .filter-item-list{
        left: auto;
        right: 0;
    }
}

@media (max-width: 1200px){
    .collection-list .box-banner .box-banner-info{
        left: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 900px){
    .collection-filter-sort .btn-outline-dark img{
        margin-right: 0;
    }
}

@media (max-width: 579px){
    .collection-title-filte-sort{
    }
    .collection-filter{
        column-gap: .5rem;
    }

    .filter-item, 
    .collection-sort{
        position: initial;
    }

    .filter-item-list,
    .collection-sort .filter-item-list{
        width: 100%;
    }

    .filter-item-list .card{
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        padding: 1rem;
    }

    .collection-filter-sort{
        justify-content: space-between;
        width: 100%;
    }
    .collection-filter-sort .btn-filsor{
        height: 32px;
        font-size: 12px;
        padding: .25rem 1.5rem .25rem .5rem;
        border-radius: 8px;
        text-wrap: nowrap;
        background-position: 95% 50%;
    }

    .collection-filter-sort .btn-filsor::before{
        background-color: rgba(0, 0, 0, .5);
    }

    .filter-item-content{
        display: flex;
        flex-direction: column;
    }

    .filter-item-content label .checkbox{
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .collection-filter-sort{
        column-gap: .5rem;
    }
    .collection-filter-sort .btn-outline-dark{
        padding: .5rem;
        height: 32px;
        width: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .collection-filter-sort .btn-outline-dark img{
        margin: auto;
    }

    .collection-list{
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .collection-list .box-product-title{
        font-size: 10px;
        line-height: 1.2;
    }
    .collection-list .box-product-prices span{
        font-size: 16p;
    }
    .collection-list .box-product-prices del{
        font-size: 12p;
    }
    .collection-list .box-product .box-product-info{
        background-color: rgba(255, 255, 255, .5);
    }

    .pagination{
        column-gap: 1rem;
        justify-content: space-between;
        /*margin-bottom: 0;*/
    }

    .nav-pagination{
        border-radius: 40px;
    }

    .nav-pagination li .nav-link, 
    .pagination-tools .pagination-arrow{
        width: 40px;
        height: 40px;
    }

    .pagination-tools{
        column-gap: .5rem;
    }
}

@media (max-width: 579px){
    .collection-title-filte-sort{
    }
    .collection-filter{
        column-gap: .25rem;
    }
    .collection-filter-sort .btn-filsor{
        padding: .35rem 1.25rem .25rem .5rem;
    }
}

/* SIDEBAR 
================================
================================*/


/* PRODUCT
================================
================================*/
/* BREADCRUMBS */
.nav-breadcrumbs{
    column-gap: 1rem;
    margin-top: .5rem;
}

.nav-breadcrumbs li .nav-link{
    position: relative;
    font-size: 12px;
}

.nav-breadcrumbs li a,
.nav-breadcrumbs li span{
    padding: 0;
}

.nav-breadcrumbs li a{
    color: #6E6E6E;
}

.nav-breadcrumbs li span{
    color: black;
}

.nav-breadcrumbs li+li .nav-link{
    padding-left: 1rem;
    font-weight: 600;
}

.nav-breadcrumbs li+li .nav-link::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 4px;
    height: 4px;
    background-color: #6E6E6E;
}

/* PROUCT GALLERY */
.product-gallery-info{
    position: relative;
    margin-top: 1.5rem;
}
.product-gallery-info .swiper{
    overflow: visible;
}

.product-gallery .swiper-slide{
    aspect-ratio: 9/12;
}

.product-gallery .swiper-slide .cover{
    border-radius: 40px;
    overflow: hidden;
    background-color: #ffffff;
}

.product-gallery .swiper-slide .cover,
.product-gallery .swiper-slide .cover img{
    display: block;
    width: 100%;
    height: 100%;
}

.product-gallery .swiper-slide .cover img{
    object-fit: cover;
}

.product-gallery-tools{
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 1rem;
    width: calc(42.45% - 15px);
    justify-content: space-between;
    line-height: 1;
}

.product-gallery-tools .swiper-tools{
    margin-left: 0;
    margin-bottom: 0;
    z-index: 1;
}

.product-gallery-tools .swiper-pagination{
    z-index: 1;
}

.product-gallery-tools .swiper-pagination{
    position: inherit;
    margin: 0;
    width: auto;
}

.product-gallery-tools .swiper-pagination .swiper-pagination-bullet{
    border: 2px solid black;
    background-color: transparent;
}

.product-gallery-tools .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: black;
}

/* RELATED - SIMILAR */
.block-inproduct .block-title{
    font-size: 64px;
    line-height: 1;
}

.block-inproduct .swiper-tools,
.block-inproduct .block-more{
    margin-bottom: 0;
}

/* PRODUCT INFO */
.product-info{
    position: absolute;
    top: 0;
    z-index: 1;
    height: 100%;
    border-radius: 40px;
    overflow-y: scroll;
}

@media (min-width: 992px) {
  .product-info.col-lg-4{
    width: 31%;
  }
}

.product-info-detail{
    padding: 3rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(40px);
    margin-top: 4rem;
}

.product-title-favorite{
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.product-title{
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
}

.product-prices-percent{
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: .5rem;
}

.product-prices{
    display: flex;
    align-items: end;
    column-gap: 1rem;
}

.product-prices span{
    font-size: 52px;
    font-weight: 800;
    font-style: italic;
    font-family: 'Giorgio Sans LCG';
    line-height: .85;
}

.product-prices del{
    color: #6E6E6E;
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    font-family: 'Giorgio Sans LCG';
    line-height: 1;
}

.product-percent .labels{
    position: inherit;
}

.product-colors{
    margin: 2rem 0;
}

.variant-title{
    font-size: 16px;
    font-weight: 600;
    color: #6E6E6E;
}

.product-colors-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1rem;
    row-gap: 1rem;
    margin-top: .5rem;
}

.box-colors .cover{
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: white;
    border-radius: 28px;
    border: 2px solid transparent;
    overflow: hidden;
    transition: .4s;
}

.box-colors .cover img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .4s;
}

.box-colors.active .cover{
    border-color: yellow;
}

.box-colors .cover:hover{
    border-color: #ccc;
}

.box-colors:hover:not(.active) img{
    transform: scale(1.1);
}

/* Product Variants */
.product-size-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: .75rem;
    row-gap: 1rem;
    margin-top: .5rem;
}

.product-size-list label{
    cursor: pointer;
}
.product-size-list label[disabled]{
    cursor: default;
}

.product-size-list label span.text{
    position: relative;
    height: 34px;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    padding: .45rem 1rem .25rem 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
}

.product-size-list label input{
    display: none;
}

.product-size-list label input:checked + span.text{
    border-color: yellow;
}

.product-size-list label input[disabled] + span.text{
    color: #6E6E6E;
    border-color: #6E6E6E;
}
.product-size-list label input[disabled] + span.text::after{
    position: absolute;
    content: '';
    width: 80%;
    height: 2px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #6E6E6E;
}

.product-table-size{
    display: flex;
    align-items: center;
    column-gap: .75rem;
}

.product-table-size{
    font-size: 16px;
    font-weight: 600;
    color: #6E6E6E;
    text-decoration: none;
}

.product-table-size span{
    width: 30px;
    height: 30px;
    background-color: #6E6E6E;
    filter: invert(1);
    border-radius: 30px;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-table-size:hover span{
    transform: rotate(45deg);
}

.product-button{
    margin-top: 3rem;
}

.product-button .btn{
    height: 80px;
}

.product-info-context{
    margin-top: 2rem;
    padding: 3rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(40px);
}

.product-info-context .accordion{
    --bs-accordion-bg: none;
    border: 0;
    border-radius: 0;
}

.product-info-context .accordion .accordion-item{
    border: 0;
}

.product-info-context .accordion-button{
    font-size: 20px;
    font-weight: 700;
    background-color: transparent !important;
    background: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.product-info-context .accordion-button:not(.collapsed){
    /*color: yellow;*/
    color: black;
}

.accordion-selector{
    position: relative;
    width:  14px;
    height: 14px;
}

.product-info-context .accordion-button::after{
    display: none;
}

.product-info-context .accordion-button .accordion-selector::before,
.product-info-context .accordion-button .accordion-selector::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: black;
}
.product-info-context .accordion-button .accordion-selector::before{
    width: 100%;
    height: 2px;
}
.product-info-context .accordion-button .accordion-selector::after{
    width: 2px;
    height: 100%;
    transition: .4s;
}

.product-info-context .accordion-button:not(.collapsed) .accordion-selector::after{
    opacity: 0;
    visibility: hidden;
}

/* Char */
ol.product-property {
    padding-inline-start: 0px;
    margin-bottom: 0;
    font-size: 14px;
}

ol.product-property li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

ol.product-property li:last-child {
    margin-bottom: 0;
}

li .dots:nth-child(2) {
    flex: 1 0;
    border-bottom: 2px dotted rgba(196, 196, 196, 0.5);
    height: 1em;
    margin: 0 .4em;
}

ol.product-property li span:first-child {
    color: #70767D;
    font-weight: 500;
}

ol.product-property li span {
    color: black;
}

ol.product-property li {
    margin: .75rem 0;
}

#dynamicSizes{
  left: -40%;
  width: 40%;
  height: 100vh;
}
#dynamicSizes.active{
  left: 0;
}

@media (max-width: 579px){
  #dynamicSizes{
    width: 100%;
    left: -100%;
  }
}

.table>:not(caption)>*>*{
  background-color: rgba(255, 255, 255, .25);
}

/* SCROLL on Filter  */
.product-info::-webkit-scrollbar {
    width:0;
}

.product-info::-webkit-scrollbar-track {
    background-color:#ccc;
    border-radius: 5px;
}

.product-info::-webkit-scrollbar-track:hover {
    background-color: #ccc;
}
.product-info::-webkit-scrollbar-thumb {
    background-color: #94989E;
    cursor: pointer;
    border-radius: 5px;
}

.product-info::-webkit-scrollbar-thumb:hover {
    background-color: blue;
}
/* SCROLL on PAGE END */

@media (max-width: 1550px){
    .product-info-detail{
        margin-top: 1.5rem;
    }
    .product-button{
        margin-top: 1rem;
    }
    .box-colors .cover{
        border-radius: 20px;
    }
    .product-info-context{
        padding: 2rem;
    }
}

@media (max-width: 1800px){
    .product-gallery-tools{
        width: calc(44.44% - 10px);
    }
}
@media(max-width: 1200px){
    .product-info-detail{
        padding: 1.5rem;
    }
    .product-title{
        font-size: 20px;
    }
    .product-prices span{
        font-size: 42px;
    }
    .product-prices del{
        font-size: 24px;
    }
    .product-colors{
        margin: 1rem 0;
    }
    .product-button .btn{
        height: 60px;
    }
    .product-info-context{
        margin-top: 1rem;
    }
    .product-info-context{
        padding: .5rem;
    }
}

@media (max-width:1024px){
    .product-gallery-tools{
        width: calc(50% - 10px + 4px);
    }
}

@media (max-width:900px){
    .product-gallery-info{
        margin-top: .75rem;
    }
    .product-gallery-tools{
        justify-content: space-between;
        margin-top: 1rem;
        column-gap: 1rem;
        width: 100%;
    }
    .product-info{
        position: relative;
    }
    .product-info-detail,
    .product-info-context{
        padding: 1rem;
    }
    .product-info-detail{
        margin-top: 1.5rem;
        border-radius: 20px;
    }
    .product-title{
        font-size: 20px;
    }
    .product-prices span{
        font-size: 40px;
    }
    .product-prices del{
        font-size: 20px;
    }
    .labels label{
        font-size: 20px;
        padding: 6px 12px;
    }

    .product-colors{
        margin: 1.5rem 0;
    }

    .box-colors .cover{
        border-radius: 12px;
    }
    .product-size-list label span.text{
        height: 30px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
    }
    .product-table-size{
        font-size: 14px;
    }
    .product-button{
        margin-top: 2rem;
    }
    .product-button .btn{
        height: 60px;
    }
    .product-info-context .accordion-button{
        font-size: 14px;
    }
    .product-info-context{
        padding: .75rem 0rem;
        border-radius: 20px;
    }
    .product-info-context .accordion-button{
        padding: .75rem 1.1rem;
    }
    .product-info-context .accordion-body{
        padding: 1rem 1.1rem;
        font-size: 14px;
    }
}
@media (max-width: 579px){
    .nav-breadcrumbs{
        margin-top: 0;
    }

    .product-info{
        border-radius: 20px;
    }

    .block-inproduct .block-title{
        font-size: 32px;
    }

    .product-gallery-tools{
        flex-direction: row-reverse;
    }
    .product-info-detail{
        margin-top: 1rem;
    }

    .product-percent .labels label{
        font-size: 20px;
    }
    .labels label{
        font-size: 14px;
        padding: 5px 8px;
    }
}

/* CART
================================
================================*/
.black-shop{
    margin: 1.5rem 0;
    display: inline-flex;
    align-items: center;
    column-gap: 1rem;
    line-height: 1;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

.black-shop img{
    transform: rotate(-90deg);
    transition: .4s;
}

.black-shop span{
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background-color: yellow;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.black-shop:hover span img{
    transform: rotate(-135deg);
}

/* CART LIST */
.cart-list{
    padding: 3rem 3.75rem;
    background-color: white;
    border-radius: 40px;
}

.cart-list-titile{
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Giorgio Sans LCG';
    line-height: 1;
}

.box-item{
    position: relative;
    margin-top: 1.75rem;
}

.box-item .cover{
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
}

.box-item .cover img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.box-item-title{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.box-item-prices{
    display: flex;
    align-items: baseline;
    column-gap: 1rem;
    font-style: italic;
    font-weight: 800;
    font-family: 'Giorgio Sans LCG';
    line-height: 1;
    margin-top: .25rem;
}

.box-item-prices span{
    font-size: 24px;
}

.box-item-prices del{
    color: #6E6E6E;
    font-size: 14px;
}

.box-items-variants{
    margin-top: 2rem;
}

.box-items-variant{
    margin-top: .5rem;
    display: flex;
    align-items: center;
    column-gap: .75rem;
}

.box-items-variant .text{
    font-size: 16px;
    font-weight: 600;
    color: #6E6E6E;
}

.box-items-variant label{
    border: 2px solid black;
    border-radius: 8px;
    padding: .25rem 1.25rem;
    font-size: 16px;
    font-weight: 500;
}

.box-items-variant label.color{
    width: 24px;
    height: 24px;
    border-radius: 24px;
    border: 1px solid #ccc;
    padding: 0;
}

/* QTY - SUMM */
.box-item-qty-summ{
    display: flex;
    align-items: center;
    column-gap: 2rem;
}

.box-item-qty{
    border: 2px solid black;
    border-radius: 20px;
    height: 46px;
    display: flex;
    align-items: center;
}

.box-item-qty .btn-qty-tools{
    width: 35px;
    height: calc(100% - 4px);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.box-item-qty input{
    width: 46px;
    height: 100%;
    border: 0;
    outline: none;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.box-item-summ{
    font-size: 24px;
    font-style: italic;
    font-weight: 800;
    font-family: 'Giorgio Sans LCG';
}

.box-item-tools{
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 2rem;
}

.box-item-tools a{
    text-decoration: none;
}

.box-item-tools a img{
    transition: .4s;
}

.box-item-tools a:hover img{
    transform: rotate(15deg) scale(1.05);
    opacity: .75;
}

/* CART CHECKOUT */
.cart-checkout{
    position: sticky;
    top: 7rem;
    padding: 3rem 3.5rem;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 40px;
}

.cart-checkout-titile{
    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Giorgio Sans LCG';
    /*color: white;*/
    line-height: 1;
}

.cart-checkout-qty{
    font-size: 20px;
    font-weight: 700;
    color: #6E6E6E;
    line-height: 1;
    margin-top: 2.5rem;
}

.cart-checkout-prices{
    display: flex;
    align-items: baseline;
    column-gap: 1rem;
    font-style: italic;
    font-weight: 800;
    font-family: 'Giorgio Sans LCG';
    margin-bottom: 3rem;
}

.cart-checkout-prices span{
    font-size: 52px;
    line-height: 1;
}

.cart-checkout-prices del{
    font-size: 32px;
    color: #6E6E6E;
}

.cart-checkout-title{
    font-weight: 600;
    color: #6E6E6E;
    line-height: 1;
}

.cart-checkout-econom-value{
    font-style: italic;
    font-weight: 800;
    font-family: 'Giorgio Sans LCG';
    color: red;
    font-size: 32px;
    line-height: 1;
    margin-top: .5rem;
}

.cart-checkout-discount{
    margin-top: 3.75rem;
}

.cart-checkout-discount .cart-checkout-dicsount{
    height: 80px;
    border-radius: 20px;
    width: 100%;
    padding: .5rem 1.5rem;
    margin-top: .75rem;
    border: 2px solid #868686;
    background-color: transparent;
    transition: .4s;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

.cart-checkout-discount .cart-checkout-dicsount:focus{
    box-shadow: 0 0 0 .25rem rgba(255, 255, 0, .5);
    border-color: #ccc;
}

.cart-checkout-discount .cart-checkout-dicsount:focus-visible{
    outline: none;
}

.cart-checkout-discount .cart-checkout-dicsount::placeholder{
    font-weight: 600;
    color: black;
    font-size: 18px;
    color: #555;
    text-transform: none;
}

.cart-checkout-button{
    margin-top: 3.75rem;
}

.cart-checkout-button .btn{
    height: 80px;
    width: 100%;
}
.box-checkout .cart-checkout-prices{
    margin-bottom: .75rem;
}

.box-checkout .cart-checkout-discount, 
.box-checkout .cart-checkout-button{
    margin-top: .75rem;
}

.bttn-favorite{
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    z-index: 1;
}

.fav-num{
    opacity: 0;
    transition: .4s;
}
.fav-num.is-full{
    opacity: 1;
}
.fav-num.is-empty{
    opacity: 0;
}

.box-item-tools .bttn-favorite{
    width: 30px;
    height: 30px;
    transition: .4s;
}
.box-item-tools .bttn-favorite:hover{
    transform: rotate(15deg);
}



@media (max-width: 579px){
    .bttn-favorite{
        width:  18px;
        height: 18px;
    }
    .box-item-tools .bttn-favorite{
        width: 20px;
        height: 20px;
    }
}

.modal-content{
    border-radius: 16px;
}

.modal-footer{
    border-top: 0;
}

.modal-header{
    border-bottom: 0;
    padding: 1.15rem 1rem;
    align-items: center;
    line-height: 1;
}

.modal-title,
.modal-product-title{
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.modal-product-title{
    margin-top: 1rem;
}

.modal-body{
    padding-top: 0;
    padding-bottom: 0;
}

.modal-body .cover{
    border-radius: 16px;
    overflow: hidden;
}

.modal-product-title{
    text-align: center;
}

.cart-is-empty{
  margin: 3rem 0;
  font-size: 24px;
  text-align: center;
}

@media (max-width: 1550px){
    .cart-list,
    .cart-checkout{
        padding: 1.5rem;
        border-radius: 20px;
    }
}

@media (max-width: 1200px){
    .box-item-tools{
        position: absolute;
        top: 0;
        right: 0;
        flex-direction: column;
        row-gap: .5rem;
        padding: 0;
        align-items: end;
    }
    .box-item-tools img{
        width: 18px;
    }
    .box-items-variants{
        margin-top: .75rem;
    }
    .box-item-prices{
        margin-top: .5rem;
    }
    .box-item-qty-summ{
        justify-content: space-between;
    }
    .cart-checkout-prices{
        margin-bottom: 1.75rem;
    }
    .cart-checkout-discount{
        margin-top: 1.75rem;
    }
    .cart-checkout-button{
        margin-top: 1.75rem;
    }
}

@media (max-width: 579px){
    .black-shop{
        font-size: 14px;
        column-gap: .5rem;
    }
    .black-shop span{
        width: 40px;
        height: 40px;
    }
    .black-shop span img{
        width: 16px;
    }

    .cart-list,
    .cart-checkout{
        padding: 1rem;
        border-radius: 20px;
    }
    .cart-checkout{
        background-color: rgba(255, 255, 255, .8);
    }
    
    .cart-list-titile{
        font-size: 32px;
    }

    .box-item-title{
        margin-bottom: .5rem;
        display: inline-block;
    }

    .box-item .cover{
        border-radius: 12px;
    }

    .box-item-prices span{
        font-size: 18px;
    }
    .box-item-prices del{
        font-size: 12px;
    }

    .box-items-variants{
        margin-top: 1rem;
    }

    .box-items-variant .text{
        font-size: 12px;
    }
    .box-items-variant label{
        padding: .2rem .75rem .1rem .75rem;
        line-height: 1;
        font-size: 14px;
    }

    .box-item-qty-summ{
        margin-top: auto;
        justify-content: space-between;
    }

    .box-item-qty{
        height: 28px;
        padding-top: .15rem;
    }
    .box-item-qty input{
        width: 28px;
        height: calc(100% - 4px);
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        vertical-align: center;
    }
    .box-item-summ{
        font-size: 18px;
    }

    .cart-checkout-titile{
        font-size: 32px;
        /*color: black;*/
    }
    .cart-checkout-qty{
        font-size: 14px;
        margin-top: 1rem;
    }
    .cart-checkout-prices{
        margin-top: .5rem;
        margin-bottom: 1.25rem;
    }
    .cart-checkout-prices span{
        font-size: 32px;
    }
    .cart-checkout-prices del{
        font-size: 24px;
    }
    .cart-checkout-title{
        font-size: 12px;
    }
    .cart-checkout-econom-value{
        font-size: 24px;
    }
    #cart-list-wrapper .cart-checkout-econom-value{
        color: yellow;
    }

    .cart-checkout-discount,
    .cart-checkout-button{
        margin-top: 1.25rem;
    }

    .cart-checkout-discount .cart-checkout-dicsount,
    .cart-checkout-button .btn{
        height: 60px;
    }


    .cart-list-wrapper{
        position: relative;
        overflow: hidden;
        clip-path: border-box;
    }
    .box-checkout{
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1rem;
        background-color: yellow;
        padding-bottom: 60px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        z-index: 1;
        transition: .4s;
    }

    .box-checkout.active{
        z-index: 13;
        background: rgba(255, 255, 255, 0.80);
        backdrop-filter: blur(40px);
        padding-bottom: 1.5rem;
    }

    .box-checkout-header{
        font-size: 16px;
        font-weight: 400;
        text-align: center;
    }

    #checkout-overlay{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .5);
        z-index: 12;
        transition: .4s;
    }

    .box-checkout-header i{
        width: 50px;
        height: 3px;
        border-radius: 3px;
        background-color: black;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1rem;
    }

    .box-checkout-header span{
        transition: .4s;
    }
    .box-checkout-header[aria-expanded="true"] span{
        display: none;
    }
    .box-checkout.active .cart-checkout-qty{
        margin-top: 0;
    }
}

/* FOOTER 
================================
================================*/
footer{
    background-color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
    z-index: 1;
    position: relative;
}

.footer-logo{
    width: 100%;
}
.footer-logo img{
    width: 100%;
}

.footer-phone{
    font-size: 64px;
    font-weight: 900;
    font-style: italic;
    font-family: 'Giorgio Sans LCG';
    margin-top: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.footer-phone a{
    text-decoration: none;
}

ul.nav-socials{
    column-gap: 1.85rem;
}

ul.nav-socials li a{
    padding: 0;
}

.menu-title{
    font-size: 64px;
    font-weight: 900;
    font-style: italic;
    font-family: 'Giorgio Sans LCG';
    text-transform: uppercase;
}


.nav-links{
    row-gap: .5rem;
    flex-direction: column;
}

.nav-links li a{
    padding: 0;
    font-weight: 700;
    display: inline-block;
}

.nav-links li a:hover{
    color: #FF0025;
}

.copyright{
    font-size: 12px;
    font-weight: 700;
}

.powerdby{
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    column-gap: .25rem;
    line-height: 1;
    float: inline-end;
    text-decoration: none;
}

@media (max-width: 1050px){
    .menu-title{
        line-height: 1;
        margin-bottom: 1rem;
    }
}

@media (max-width:579px){
    .menu-title{
        font-size: 32px;
        line-height: 1l;
        margin-bottom: 1rem;
    }
    .footer-phone{
        font-size: 36px;
        margin-bottom: 3rem;
    }
    footer{
        padding-bottom: 1.5rem;
    }
    footer{
        padding-bottom: 4rem;
    }
}


/* LOST page */
@media (max-width: 579px){
    .template-is-user{
        /*min-height: 100vh;*/
    }

    .template-is-checkout2 .nav-tools li a img{
      max-width: none;
    }
}


.co-basket_item-image{
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: unset; 
    background-color: #fff;
    border-radius: 2px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 20px;
}

.co-basket_item-image img{
    position: relative;
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}
