html {
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.4em;
    --pinkColor: #f79ab9;
    --bodyColor: #54565a;
    --font1: 'Urbanist', 'Arial', sans-serif;
    --font2: 'Delicious Handrawn', cursive;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body{
    font-family: var(--font1);
    padding: 0;
    margin: 0;
    color: var(--bodyColor);
    background: #FFFFFF;
    overflow-x: hidden;
}

a{
    color: inherit;
    text-decoration: none;
}
a:hover{
    color: var(--pinkColor);
}

h1, h2{
    font-family: var(--font2);
    color: var(--pinkColor);
    font-size: 3.6875em;
    line-height: 1em;
    text-align: center;
    font-weight: normal;
}
h1:first-child,
h2:first-child{
    margin-top: 0;
}

.section{
    padding-top: 6em;
    padding-bottom: 8em;
}
.fakeHeader + .section {
    padding-top: 4em;
}
.gContent{
    max-width: 1315px;
    margin: 0 auto;
    padding: 0 1.3125em;
}
.gSmallContent{
    max-width: 707px;
    margin: 0 auto;
    padding: 0 1.3125em;
}

.pinkColorText{
    color: var(--pinkColor);
}

/* HEADER */

.header{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    transition: background-color .5s;
}
.headerGrid{
    display: grid;
    grid-template-columns: 11em 1fr 11em;
    padding: 1em 2em;
    align-items: center;
}
.headerLeft{
    display: grid;
    grid-template-columns: min-content 1fr;
    align-items: center;
    grid-gap: 1.5em;
}
.headerRight{
    display: grid;
    grid-template-columns: 1fr min-content min-content;
    align-items: center;
    grid-gap: 1.5em;
}
.headerBurger{
    background-image: url(../../images/icons/burger.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 1.5em;
    height: 1.5em;
    cursor: pointer;
}
.header.open .headerBurger{
    background-image: url(../../images/icons/close.svg);
}
.headerCart{
    background-image: url(../../images/icons/cart.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 2em;
    height: 2em;
    cursor: pointer;
    display: grid;
    align-items: center;
    text-align: center;    
    position: relative;
    bottom: 0.15em;
}
.headerCart:hover{
    color: var(--bodyColor) !important;
}
.headerCartNumber {
    background-color: var(--pinkColor);
    border-radius: 50%;
    aspect-ratio: 1;
    display: inline-grid;
    align-items: center;
    text-align: center;
    margin-top: 0.3em;
    mix-blend-mode: darken;
    font-weight: 900;
}
.headerFavs{
    background-image: url(../../images/icons/heart.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 2em;
    height: 2em;
    cursor: pointer;
    display: grid;
    align-items: center;
    text-align: center;
    position: relative;
    top: 0.15em;
}
.headerFavs .headerCartNumber{
    margin-top: 0;
}
.headerLogo{
    background-image: url(../../images/logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 5.875em;
    width: 6.3125em;
    margin: 0 auto;
    cursor: pointer;
}
.headerLogin{
    font-size: 0.875em;
    line-height: 1em;
}
.headerSearch{
    font-family: var(--font1);
    font-size: 0.875em;
    line-height: 1em;
    background: transparent;
    border: 0;
    padding: 1em;
    padding-left: 3em;
    background-image: url(../../images/icons/search.svg);
    background-repeat: no-repeat;
    background-position: 0.5em;
    background-size: 2em;

}
input:focus{
    outline-color: var(--pinkColor);
}
.fakeHeader{
    padding-top: 10em;
}

.productPage .fakeHeader{
    background-color: #f8f8f8;
}

.header.open{
    background: #fff;
}
.header.open .headerContent{
    display: block;
}
.headerContent{
    display: none;
    grid-column: 1 / span 3;
    overflow-y: auto;
    max-height: calc(100vh - 8em);
    min-height: calc(100vh - 8em);
}
.headerContent .headerSearch{
    border: 1px solid;
    width: 100%;
    margin: 1em auto;
    display: block;
    
}
.headerLang{
    background-color: #F7F7F7;
    padding: 1em 0;
}
.headerLang select{
    background-color: transparent;
    border: none;
    text-align: right;
    margin-right: -0.5em;
    width: min-content;
    margin-left: auto;
}
.gHeaderContent {
    padding: 0 4em;
    max-width: 1315px;
    margin: 0 auto;
}
.headerLang .gHeaderContent{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.headerNav{
    padding: 1em 0;
}
.headerNavItemTitle{
    font-weight: bold;
    text-transform: uppercase;
    padding: 0.5em 0;
}
.accordionTrigger{
    background-image: url(../../images/icons/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 0.5em;
}
.headerNavItemLink{
    display: block;
    cursor: pointer;
    margin: 0.5em auto;
    padding: 0.25em 0;
}
a.headerContentLogin{
    margin: 2em auto;
    display: block;
    width: min-content;
    white-space: nowrap;
}
.headerFooter{
    background-color: #F7F7F7;
    padding: 2em;
    text-align: center;
}
.headerFooter a{
    display: block;
    margin: 0.5em auto;
}

/* FOOTER */

.footer{
    background-color: #fff;
    padding-top: 3em;
    padding-bottom: 5em;
}
.footerTop{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.footerNav{
}
.footerNavTitle{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3125em;
    margin-bottom: 0.5em;
}
.footerNavItem{
    display: block;
    width: min-content;
    white-space: nowrap;
    margin: 0.1em;
}
.footerSignup{
    grid-column: 3 / span 2;
}
.footerSignupTitle{
    color: var(--pinkColor);
    font-family: var(--font2);
    font-size: 2.375em;
    line-height: 1em;
}
.footerSignupText{
    margin-top: 1em;
}
.footerSignupTextNote{
    display: block;
    font-size: 0.8125em;
    opacity: 0.8;
}
.footerSignupForm{
    display: grid;
    grid-template-columns: 1fr min-content;
    grid-gap: 1.25em;
    margin-top: 1em;
}
.footerMid{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr min-content;
    align-items: center;
}
.footerMidText{
    display: grid;
    align-items: center;
    grid-template-columns: min-content 1fr;
}
.footerMidText span{
    font-size: 1.3125em;
    background-image: url(../../images/icons/lock.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 1em;
    padding: 0.5em;
    padding-left: 1.5em;
    white-space: nowrap;
}
.footerMidTextIcons{
    margin-left: 1em;
    display: inline-grid;
    grid-auto-flow: column;
    width: min-content;
    grid-gap: 0.5em;
    align-items: center;
}
.footerMidTextIcons div{
    width: 5.5em;
    height: 2.5em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.footerMidIcons{
    display: grid;
    grid-auto-flow: column;
    grid-gap: 0.5em;
    width: min-content;
    margin-left: auto;
    margin-right: 0;
}
.footerMidIcons div{
    width: 3.5em;
    height: 2.5em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.footerBot{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 3rem;
    font-size: 0.875em;
}
.footerSocials{
    font-weight: 900;
}
.footerCredits{
    float: right;
    font-size: 0.70625rem;
    font-weight: normal;
}

/* HOME */

.intro{
    /* min-height: 55vw; */
}
.intro .splide__pagination {
    bottom: 1.5em;
}
.introText {
    font-size: 4vw;
    line-height: 1em;
    font-weight: 900;
    position: absolute;
    right: 5%;
    top: 0;
    bottom: auto;
    width: 40%;
    margin-top: 12vw;
    color: var(--pinkColor);
    display: grid;
    align-items: start;
    text-align: center;
}
.introText:hover{
    text-decoration: underline;
}
.introImageHor {
    width: 100%;
    aspect-ratio: calc(1920/900);
}
.introImageVer {
    display: none;
    width: 100%;
    aspect-ratio: calc(4/5);
}
.introNav{
    text-transform: uppercase;
    text-align: center;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 2em;
    width: min-content;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1em;
    font-weight: 600;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4em;
}

/* PRODUCTS */

.products{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.3125em;
    margin: 4em auto;
}
.productPreviewImage{
    display: block;
    aspect-ratio: 305/381;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.productPreviewImage:hover{
    /* outline: 2px solid var(--pinkColor); */
    box-shadow: 0px 0px 2px var(--pinkColor);
}
.productPreviewTitle{
    display: block;
    font-size: 1.1em;
    line-height: 1em;
    font-weight: 700;
    margin-top: 1.3125rem ;
}
.productPreviewCategory{
    display: inline-block;
    font-size: 0.9em;
    line-height: 1em;
    margin-top: 0.6em;
    text-transform: uppercase;
}
.productPreviewBottom{
    display: grid;
    grid-template-columns: 1fr min-content;
    align-items: center;
    margin-top: 0.9em;
}
.productPreviewPrice{
    font-weight: 600;
}
.productPreviewPriceCut{
    color: #a7abb3;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 0.24em;
}
.productPreviewAddToFav{
    background-image: url(../../images/icons/heart.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.1em;
}

.inWishlist .productPreviewAddToFav{
    background-image: url(../../images/icons/heart-full.svg);
}

/* CATEGORIES */

.categories{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.3125em;
    margin: 4em auto;
}
.categoryImage{
    aspect-ratio: 306/501;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.categoryTitle{
    text-align: center;
    font-size: 1.478125em;
    line-height: 1em;
    margin-top: 1em;
    text-transform: uppercase;
}

/* SLIDES */

.b2bSlide{
    background-color: var(--pinkColor);
    color: #fff;
    text-align: center;
}
.slideTitle{
    font-size: 4em;
    line-height: 1em;
    font-weight: bold;
}
.slideText{
    font-size: 1.5em;
    line-height: 1em;
    margin: 1.5em auto;
}
.slideCTA{
    border: 1px solid;
    width: min-content;
    white-space: nowrap;
    padding: 1em 4em;
    border-radius: 4em;
    margin: 0 auto;
    display: block;
    margin-top: 4em;
    cursor: pointer;
}
.slideCTA:hover{
    background: #fff;
    color: var(--pinkColor);
}

/* PERSONAL SHOPPER */

.personalShopper{
    position: fixed;
    right: 2em;
    bottom: 1em;
    background-image: url(../../images/avatar.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 5.5em;
    padding-right: 4em;
    padding-bottom: 2em;
    min-width: 6em;
    min-height: 7em;
}
.personalShopperBubble{
    font-family: var(--font2);
    background-image: url(../../images/icons/speech-bubble.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 11rem;
    height: 10rem;
    display: grid;
    display: none;
    align-items: center;
    font-size: 1.3125em;
    line-height: normal;
}
.personalShopperBubbleContent{
    margin: 0 auto;
    width: 6em;
    margin-bottom: 1.5em;
    padding-left: 0.2em;
}

/* INPUTS / FORMS */

input,
select,
button,
textarea{
    font-family: var(--font1);
    color: var(--bodyColor);
}
textarea{
    resize: none;
    min-height: 5em;
}
select{
    appearance: none;
    background-image: url(../../images/icons/select-arrow.svg);
    background-position: right 0.5em center;
    background-size: auto 0.5em;
    background-repeat: no-repeat;
    padding-right: 2em;
}
.formLine{
    margin: 1em auto;
    width: 100%;
}
.formDoubleLine{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5em;
}
.formTripleLine{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5em;
}
.formLineLabel{
    font-size: 0.875em;
    line-height: 1em;
    font-weight: bold;
    text-transform: uppercase;
}
.formGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.5em;
    margin-top: 4em;
}
.formGrid .formBtns{
    margin-top: 0;
}
.formBtns{
    text-align: right;
    margin-top: 4em;
}
.formHelp a{
    font-weight: 600;
    text-decoration: underline;
}
.newsletterInput{
    
    font-family: var(--font1);
    border: 1px solid #afb0b2;
    font-size: 1.6em;
    line-height: 1em;
    padding: 0.5em;
    color: var(--bodyColor);
}
.defaultInput{
    
    font-family: var(--font1);
    color: var(--bodyColor);
    border: 0;
    font-size: 1.6em;
    line-height: 1em;
    padding: 0.5em;
    background-color: #f4f1f1;
    width: 100%;
}
select.defaultInput{
    line-height: normal;
}
.defaultBtn{
    display: inline-block;
    font-family: var(--font1);
    background-color: transparent;
    font-size: 1.1875em;
    line-height: 1em;
    padding: 1em 4em;
    border: none;
    color: var(--bodyColor);
    border: 1px solid;
    border-radius: 2em;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
}
.defaultBtn.gray{
    background-color: var(--bodyColor);
    color: #fff;
    border-color: var(--bodyColor);
}
.defaultBtn:hover{
    background-color: var(--pinkColor);
    border-color: var(--pinkColor);
    color: #fff;
}
.defaultBtn.pink{
    background-color: var(--pinkColor);
    border-color: var(--pinkColor);
    color: #fff;
}
.defaultBtn.pink:hover{
    color: var(--pinkColor);
    background-color: #fff;
}

/* INDEX */

.gradientBg{
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(249,247,247,1) 0%, rgba(255,255,255,1) 100%);
}
.productsIndexHeader{
    display: grid;
    grid-template-columns: 1fr min-content;
    align-items: center;
    grid-gap: 2em;
}
.productsFilters{
    display: grid;
    grid-template-columns: 1fr min-content;
    align-items: center;
    grid-gap: 2em;
}
.productsIndexHeader h1,
.productsIndexHeader h2{
    text-align: left;
    margin: 0;
}
.productsFilter{
    display: block;
    background-color: #f4f1f1;
    border: 0;
    font-size: 1.1875em;
    /* line-height: 1em; */
    padding: 1em;
    max-width: 25vw;
    min-width: min-content;
    width: 16em;
}

/* PRODUCT */

.breadcrumb{
    display: block;
    font-size: 0.875em;
    line-height: 1em;
    padding: 1em 0;
}

.productGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.375em;
    height: fit-content;
}
.productGallery{
    width: 100%;
    max-width: 36.25em;
    display: block;
}
.productGalleryContent{
    position: sticky;
    top: 1em;
    z-index: 0;
    overflow: hidden;
}
.productImageZoom{
    position: absolute;
    width: 20em;
    height: 20em;
    background-size: 300%;
    pointer-events: none;
    background-repeat: no-repeat;
    border-radius: 50%;
}
.productImage{
    display: block;
    max-width: 100%;
}
.productTitle{
    font-size: 1.9em;
    line-height: normal;
    font-weight: bold;
}
.productCategory{
    display: inline-block;
    font-size: 1.5em;
    line-height: normal;
    margin-top: 0.4em;
    text-transform: uppercase;
}

.productPrice{
    font-size: 1.5em;
    line-height: 1em;
    font-weight: 600;
    margin: 1em auto;
}

.productPriceCut{
    color: #a7abb3;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 0.24em;
}
.productBuyBlock{
    margin: 1em auto;
    display: grid;
    grid-gap: 1em;
}
.productBuyBlockType{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.5em;
}
.productBuyBlockTypeLabel{
    font-size: 0.875em;
    line-height: 1em;
    font-weight: bold;
    text-transform: uppercase;
}
.productBuyBlock select{
    display: block;
    background-color: #f4f1f1;
    border: 0;
    font-size: 1.1875em;
    line-height: normal;
    padding: 1em;
    width: 100%;
}
.productBuyBlockCustom {
    display: inline-block;
    width: 6em;
    height: 6em;
    margin: 1em;
    margin-bottom: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.productBuyBlockCustom.selected{
    outline: 0.25em solid var(--pinkColor);
}

.productMoreOrLess{
    background-color: #f4f1f1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    align-items: center;
    width: min-content;
    font-size: 1.1875em;
    line-height: 1em;
    padding: 1.1em 0;
    user-select: none;
}
.productMoreOrLessBtn{
    width: 2em;
    text-align: center;
    cursor: pointer;
}
.productMoreOrLessAmount{
    padding: 0 0.5em;
}
.productSizeTable{
    color: var(--pinkColor);
    font-weight: 600;
    display: block;
    margin: 1em auto;
    margin-left: 0;
    line-height: 1em;
}
.productSizeTable a{
    padding-left: 2em;
    background-image: url(../../images/icons/table.svg);
    background-size: 1.5em;
    background-repeat: no-repeat;
    background-position: left center;

}
.productBuyBlockLast{
    display: grid;
    grid-template-columns: 4fr 3fr;
    grid-gap: 2.5em;
    margin: 2em auto;
}
.addToCartBtn{
    background-color: transparent;
    color: var(--bodyColor);
    text-transform: uppercase;
    text-align: center;
    font-size: 1rem;
    line-height: 1em;
    padding: 1.4em 2em;
    white-space: nowrap;
}
.addToCartBtn:hover{
    background-color: var(--pinkColor);
    color: #fff;
    border-color: var(--pinkColor);
}
.productInfoBlock:first-child{
    margin-top: 5em;
}
.productBuyBlockSafe{
    font-size: 0.875em;
    line-height: 1em;
}
.productBuyBlockSafeIcons{
    display: grid;
    grid-auto-flow: column;
    grid-gap: 0.5em;
    margin-top: 1em;
    width: min-content;
}
.productBuyBlockSafeIcons div{
    background-size: contain;
    width: 5rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: center;
}

/* ECOM */

.ecomSteps{
    display: grid;
    grid-auto-flow: column;
    grid-gap: 2.5em;

}
.ecomStep{
    text-transform: uppercase;
    font-size: 0.875em;
    line-height: 1em;
    font-weight: bold;
    padding: 1em;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: auto 2.375em;
    padding-top: 3em;
    text-align: center;
}
.ecomStep:not(.selected){
    opacity: 0.2;
}

.cartItem{
    display: grid;
    grid-template-columns: 5.8em 1fr 10em 10em;
    align-items: center;
    grid-gap: 1.5em;
}
.orderPage .cartItem{
    grid-template-columns: 5.8em 1fr 10em;
}
.cartItem:not(:first-child){
    margin-top: 1em;
}
.cartItemImage {
    background-size: cover;
    background-position: center;
    width: 100%;
    aspect-ratio: 1;
    align-self: start;
}
.cartItemTitle{
    font-size: 1.1875em;
    font-weight: bold;
}
.cartItemPrice{
    font-size: 1.5em;
    line-height: 1em;
    font-weight: 600;
}
.cartMoreOrLess{
    display: block;
    margin-left: auto;
    margin-right: 0;
}

.ecomGrid{
    display: grid;
    grid-template-columns: 1fr 19em;
    grid-gap: 1.3125em;
}
.orderRecapContent{
    position: sticky;
    top: 9em;
}
.orderRecapTitle{
    font-size: 1.24em;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
.orderRecapTitle:not(:first-child) {
    margin-top: 2em;
}
.orderRecapTable {
    /* padding: 0 1.3125em; */
    margin: 1em auto;
}
.orderRecapRow{
    display: grid;
    grid-template-columns: 1fr 6em;
}
.orderRecapValue {
    text-align: right;
}
.orderRecapTotal{
    font-weight: bold;
    margin: 0.5em auto;
}
.orderRecapBtns .defaultBtn{
    padding: 1em;
    margin: 1em auto;
    display: block;
}
.infoRecap{
    margin: 4em auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5em;
    padding-left: 7.3em;
}
.discountCodeInput{
    margin: 0.5em auto;
}

/* SIZE CHART */

.sizeChart{
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.sizeChart tr:nth-child(even) {
    background: #fff;
}
.sizeChart td {
    padding: 1em;
}

/* CONTATTI */

.contactsGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5em;
}
.contactsGrid h1,
.contactsGrid h2{
    text-align: left;
}
.contactsGrid2{
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 1.5em;
}

/* ORDINE */

.ordersItemHeader{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 1em;
    border-bottom: 1px solid #A0A0A0;
    cursor: pointer;
}
.ordersItemDetailsRow{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.ordersItem{
    text-align: left;
    border-bottom: 1px solid #A0A0A0;
}
.ordersItemDetails{
    font-size: 80%;
    padding: 1em;
}
.ordersItemHeader div:last-child,
.ordersItemDetailsRow div:last-child{
    text-align: right;
}
.ordersItemBtns{
    text-align: right;
    margin: 1em auto;
}

/* LANG ADJUSTMENTS */
html[lang='jp'] .personalShopperBubbleContent {
    font-size: 0.6em;
    width: 10em;
}

/* PLUGIN ADJUSTMENTS */

.splide__arrow{
    background-color: transparent;
}
.splide__arrow svg {
    fill: var(--pinkColor);
}