html {
    scroll-behavior: smooth;
}
*:focus {
    outline: none;
}
*{
    font-family: "Figtree", sans-serif;
    margin: 0;
    padding: 0;
}

/*  TYPOGRAPHY  */

.ivyP {
    font-family: "IvyPresto Headline";
}

.regular {
    font-weight: regular;
}
.semi {
    font-weight: 400;
}
.bold {
    font-weight: 500;
}
.italic {
    font-style: italic;
}
.orange {
    color: #EA6852;
}

/*  TYPOGRAPHY END  */

/*    MOBILE    */

/*  COVER  */
.cover {
    background: url("../../assets/hero/catalog-hero-mobile.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100svh;
    position: relative;
    margin: 0 0 50px 0;
}
.cover .coverHeadline {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    color: white;
    position: absolute;
    bottom: 0;
    padding: 25px;
}
/*  COVER END  */

/*  PRODUCT CONTENT                     */
.overviewFrame {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: #8C9B9E;
    padding: 25px;
    display: flex;
    flex-direction: column;
    row-gap: 25px;

}
/*  PRODUCT CONTENT END                 */



/*  CONTENT  */
.orange {
    color: var(--orange) !important;
    padding: 30px 0 25px 0;
}
.midGrey {
    color: var(--midGrey);
}
.midGrey {
    color: var(--darkGrey);
}
.title {
    display: inline-block;
    color: var(--darkBlue);
    font-size: var(--fs-subheading);
    padding: 25px 0;
}
.content {
    display: flex;
    flex-direction: column;
}
.content .contentTitle {
    padding: 15px;
}

.content .contentTitle span {
    font-size: var(--fs-overview);
    padding: 10px 0;
    display: block;
    color: var(--midGrey);
    text-transform: uppercase;
}
.content .contentBody {
    padding: 0 15px
}
.content .contentBody p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    padding: 0 0 25px 0;
}
.content .contentBody img.wideImage {
    width: 100%;
    padding: 25px 0;
}
.tableofcontents {
    display: none;
}
/*  CONTENT END  */



/*  COLLECTION FORM FILTER  */
.collectionFormFilter {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    padding: 25px;
}
label.search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    width: 100%;
    border: 1px solid #8C9B9E;
    border-radius: 50px;
}
label.search input {
    border: none;
    background: none;
    padding: 0 20px;
    width: 100%;
}
label.search img {
    width: 25px;
    height: 25px;
    padding: 10px;
}
.filterOptions {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    justify-content: space-between;
  
}
.filterOptions label {
    width: calc(50% - 10px);
    border: 1px solid #8C9B9E;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
label select {
    border: none;
    background: none;
    padding: 10px;
    width: 90%;
    color: var(--midGrey);
}
/*  COLLECTION FORM FILTER END  */

/*  COLLECTION GRID  */
.grid {
    display: flex;
    row-gap: 50px;
    flex-wrap: wrap;
    justify-content: left;
    margin: 50px 0;
}

.grid .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100%/2);
}

.grid .item img {
    width: 100%;
    padding: 0 0 50px 0;
}
.item:hover img {
    transform: scale(1.15);
}
.grid .item span {
    text-align: center;
    font-size: var(--fs-body);
    font-weight: bold;
    padding: 25px 0 0 0;
    color: #26373D;
}
.grid .item a {
    text-decoration: none;
    color: #7E898F;
    font-size: var(--fs-body)
}


.bottleColorPicker {
    border-radius: 10px;
    padding: 5px;
   
    display: flex;
    column-gap: 10px;
    /*    padding: 5px;*/
    /*    border: 1px solid var(--midGrey);*/
    /*    border-radius: 10px;*/
    }
    .bottleColorPicker span.transparent {
    background: #efefef;
    }
    .bottleColorPicker span.blue {
    background: aliceblue;
    }
    .bottleColorPicker span {
    padding: 0 !important;
    display: inline-block;
    border: 1px solid var(--darkGrey);
    width: 20px;
    height: 20px;
    border-radius: 50px;
    }

    .bottleColorPicker span.active {
    border: 1px groove #00a4ff;
    }

/*  COLLECTION GRID END  */

/*    LARGE SCREEN    */
@media only screen and (min-width: 650px) 
{
    /*  COVER        */
    .cover {
        background: url("../../assets/hero/catalog-hero.jpg");
        background-size: cover;
        background-repeat: no-repeat;
    }


    .cover .coverHeadline {
    }
    /*  COVER END    */


/*  CONTENT  */
    .content {
        flex-direction: row;
    }
    .contentTitle {
        width: 30%;
        padding: 0 0 0 25px !important;
    }
    .contentBody {
        width: 70%;
    }
    .content .contentBody p {
        width: 85%;
        font-size: var(--fs-body);
        line-height: var(--lh-body);
    }
    .title {
        font-size: 1.8em;
    }
    .content .contentTitle span {
        font-size: var(--fs-body);
        text-transform: uppercase;
    }
    .tableofcontents {
        display: block;
        position: sticky;
        top: 100px;
    }
/*    .tocActive {
        color: var(--darkGrey) !important;
    }*/
    .content .contentTitle span.active {
        color: var(--darkBlue);
    }
    /*  CONTENT END  */

    /*  CONTENT  */
    .content {
        flex-direction: row;
    }
    .contentTitle {
        width: 30%;
        padding: 0 0 0 25px !important;
    }
    .contentBody {
        width: 70%;
    }
    .content .contentBody p {
        width: 85%;
        font-size: var(--fs-body);
        line-height: var(--lh-body);
    }
    .title {
        font-size: 1.8em;
    }
    .content .contentTitle span {
        font-size: var(--fs-overview);
        text-transform: uppercase;
    }
    .tableofcontents {
        display: block;
        position: sticky;
        top: 100px;
    }
/*    .tocActive {
        color: var(--darkGrey) !important;
    }*/
    .content .contentTitle span.active {
        color: var(--darkBlue);
    }
    /*  CONTENT END  */
    

    /*  PRODUCT CONTENT                     */
    .overviewFrame {
        flex-direction: row;
    }
    .overviewFrame .backToCollection {
        width: 350px;
    }
    .overviewFrame .productOverview {
        width: 768px;
    }
    /*  PRODUCT CONTENT END                 */

    /*  COLLECTION FORM FILTER  */
    .collectionFormFilter {
        flex-direction: row;
        column-gap: 10px;
    }
    label.search {
        width: 30%;
    }
    .filterOptions {
        width: 100%;
        flex-wrap: nowrap;
        flex-direction: row;
      
    }

    /*  COLLECTION FORM FILTER END  */

    /*  COLLECTION GRID  */
.grid {
    flex-direction: row;
    row-gap: 100px;
    flex-wrap: wrap;
    justify-content: left;
    padding: 10px 5%;
    width: calc(100% - 10%);
}

.grid .item {
    width: calc((100%/4));
}

/* 
    .grid .item {
        width: 15%;
    } */
    /*  COLLECTION GRID END  */

    .catalogDefaultImage{
/*        height: 190.1px;*/
/*        width: 350px !important;*/
    }
    
}