
* {
    box-sizing: border-box;
}

:root {
    --main-white: #F5F7F8; /* #EBEDEE */
    --bg-white: #EBEDEE;
    --main-green: #205e59; /*008f64 - 27aa83*/
    --light-green: #75F5CD;
    --main-gradient: linear-gradient(180deg, #74F2CE 0%, #7CFFCB 100%);
    --text-grey: #666666;
    --text-green: #1c4f4b; /*1E8566 - original: 28196C*/
    --stroke-grey: #AAAAAA;
    --alt-btn: #D4E8E1;
    --alt-btn-hover: #C7F5E6;
    --light-purple: #cff1e9; /*E6E3F3*/
}

/*  Header Text
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.truculenta-<uniquifier> {
  font-family: "Truculenta", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
*/

/*  Body Text
// <weight>: Use a value from 200 to 800 - regular 400
// <uniquifier>: Use a unique and descriptive class name

.bricolage-grotesque-<uniquifier> {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
*/

body {
    background-color: var(--bg-white);
    /* background: linear-gradient(0deg, #74F2CE, #7CFFCB); #74F2CE #7CFFCB */
    margin: 0px;
    height: 100vh;
    font-family: "Bricolage Grotesque", Arial, Helvetica, sans-serif;
}

/* Text */
h1, .h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 32px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 24px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100; 
}

p, span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.p-24 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 20px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.p-20 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 20px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.p-20-r {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.p-14 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.p-12 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 12px;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.p-medium {
    font-weight: 500;
}

.grey-text {
    color: var(--text-grey);
}


#wrapper {
    /* position: relative; */
    width: 100%;
    max-width: 2560px;
    height: auto;
    margin: 0px auto;
    position: relative;
}

/* JS Popup */

#overlayPopup {
    display: none;
    position: fixed;
    inset: 0;
    background-color: #00000034;
    z-index: 999998;
}

#popup {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 400px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--main-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 14px 24px 0px rgba(0,0,0,0.25);
    z-index: 999999;
}

#popup * {
    margin: 0px;
}

#popup-close {
    position: absolute;
    display: block;
    top: 20px;
    right: 20px;
    border-radius: 6px;
    cursor: pointer;
}
#popup-close:hover {
    border: 1px solid var(--main-green);
    background-color: #205e5918; /*#3f27aa18*/
}

.popup-img {
    display: block;
    width: 100%;
    height: 300px;
    background-image: url("images/popup.webp");
    background-size: cover;
    background-position: right;
    padding: 0px;
}

#popup-form {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
}

#popup-form h3 {
    color: var(--text-green);
}

#popup-form input {
    padding: 0px 36px 0px 20px;
}

#popupConfirmation {
    width: 100%;
    height: 46px;
    padding-left: 20px;
    display: none;
    justify-content: flex-start;
    align-items: center;
    color: var(--main-green);
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

/* End JS Popup */


header {
    width: 100%;
    height: 60px;
    background-color: var(--main-white);
    position: fixed;
    top: 0;
    z-index: 99999;
}

section {
    width: 100%;
    height: auto;
}

.content-wrapper {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0px auto;
    background-color: rgba(255, 0, 0, 0);
    padding: 0px 20px;
}

#header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#back-to-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    background-color: var(--main-green);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 1px 3px 12px 0px rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#back-to-top > img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -52%);
}
#back-to-top.visible {
    opacity: 50;
}
#back-to-top.visible:hover {
    opacity: 100%;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
#desktop-nav {
    display: none;
}

a {
    text-decoration: none;
}

.nav-link {
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 20px;
    color: rgba(0,0,0,1);
}

.d-nav {
    position: relative;
    display: flex;
    padding-bottom: 8px;
}

.text-clip {
    display: inline-block;
    overflow: hidden;
}

.nav-text {
    display: inline-block;
    text-shadow: 0px 1.2em 0px var(--main-green);
    transition: all 0.24s ease;
}
.d-nav:hover > .text-clip > .nav-text {
    transform: translate(0px, -1.2em);
}

.d-nav-line {
    position: absolute;
    width: 0%;
    height: 4px;
    bottom: 1px;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: var(--main-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.d-nav.active > .d-nav-line {
    width: 100%;
}
.d-nav:hover > .d-nav-line {
    width: 100%;
}

#bag, .logo-link {
    line-height: 0px;
}

/* Bag */
#bag {
    position: relative;
}

#bag-count {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 17px;
    height: 18px;
    top: 5px;
    right: -5px;
    background-color: var(--main-green);
    color: var(--main-white);
    font-size: 10px;
    border-radius: 50%;
}

/* End Bag */

.logo {
    width: 100px;
    height: 52px;
}

#menuClose, #menuOpen {
    cursor: pointer;
}

#menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 260px;
    height: 100vh;
    z-index: 99998;
    background-color: var(--main-white);
    transition: 300ms ease-out;
}

#menu-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    margin-top: 100px;
}

#menu-nav .nav-link {
    display: flex;
    width: 100%;
    height: auto;
    padding: 14px 20px;
}

#menu-nav .nav-link:hover {
    background-color: #C4C4C4;
}

#overlayShadow {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 99988;
}

#menu.show {
    left: 0;
}

#main {
    width: 100%;
    height: auto;
    padding: 90px 0px 0px 0px;
    /* background-color: #ba121234; */
}

.button {
    display: inline-flex;
    padding: 12px 18px;
    justify-content: center;
    align-items: center;
    background-color: #205e59; /*205e59 - 1c4d49 - 62e7b6*/
    border-style: none;
    border-radius: 12px;
    color: #ffffff; /*254934*/
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 16px;
    transition: background-color 0.2s ease;
    &:hover {
        background-color: #8df8d1; /*8df8d1 - 5238c5*/
    }
}

.btn-text {
    display: inline-block;
    text-shadow: 0px 1.2em 0px #254934; /*var(--main-white)*/
    transition: all 0.24s ease;
}
.button:hover .btn-text {
    transform: translate(0px, -1.2em);
}

.btn-alt {
    background-color: var(--main-white);
    border: 2px solid var(--main-green);
    color: var(--main-green);
    &:hover {
        background-color: var(--main-white);
    }
    & .btn-text {
        text-shadow: 0px 1.2em 0px var(--main-green);
    }
}

#goop {
    display: block;
    /* box-shadow: 0px 0px 0px 6px rgb(255, 0, 0); */
    width: 100%;
    aspect-ratio: 1/1;
    grid-column: 1/2;
    grid-row: 2/3;
}

#heroSection {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

#gradient-bg {
    display: block;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    /* background-color: #C4C4C4; */
    background-image: url("./images/bg-shader.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-promotion {
    display: grid;
    grid-template-columns: 50% auto;
    grid-template-rows: min-content, auto;
    width: 100%;
}

.h-promotion-header > * {
    margin: 0px;
}
.h-promotion-header {
    /* background-color: #3903fa4b; */
    grid-column: 1/3;
    grid-row: 1/2;
    padding: 20px 0px 0px 0px;
    text-align: center;
}

.promoDetails {
    /* background-color: #eaff0055; */
    grid-column: 2/3;
    grid-row: 2/3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.promoDetails > * {
    margin: 0px;
}
.promoDetails > .button {
    margin-top: 15px;
}

#bannerSlider {
    position: relative;
    background-color: #0000002a;
    width: 100%;
    height: 50vh;
    height: 50svh;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
}

#heroPrev, #heroNext {
    position: absolute;
    width: 40px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}
#heroPrev {
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    border-radius: 0px 16px 16px 0px;
}
#heroNext {
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
    border-radius: 16px 0px 0px 16px;
}
#heroPrev:hover, #heroNext:hover {
    background-color: var(--main-green); /* #3f27aa  -  rgba(0, 0, 0, 1) */
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}
.slide1, .slide2 {
    background-color: rgba(0, 0, 0, 0.25);
    background-image: url("images/moisturizer-banner.webp");
    background-size: cover;
    background-position: right;
}
.slide2 {
    display: none;
    background-image: url("images/banner-3.webp");
}

.slide-text-container1 {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0%, -50%);
}

.dot-container {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translate(-50%, 0%);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.dot {
    width: 14px;
    height: 14px;
    background-color: rgba(160, 160, 160, 0.5);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background-color: rgba(201, 201, 201, 0.75);
}
.dot:hover {
    background-color: rgb(157, 156, 176);
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 0.5s;
    animation-name: fade;
    animation-duration: 0.5s;
}
@-webkit-keyframes fade {
    from {opacity: 0.6;}
    to {opacity: 1;}
}
@keyframes fade {
    from {opacity: 0.6;}
    to {opacity: 1;}
}

/* Product Section (Home) */

#productSection {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 60px;
}

.products-container {
    width: 96%;
    height: auto;
    background-color: var(--main-white);
    border-radius: 16px;
    padding: 20px;
    & > a {
        display: block;
        width: 100%;
        text-align: center;
        color: var(--text-green);
        margin-bottom: 10px;
        &:hover {
            color: var(--main-green);
            text-decoration: underline;
        }
    }
}

.products-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.products-header * {
    text-align: center;
}

.products-tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 5px;
    flex-wrap: wrap;
    padding: 0px 20px;
    border-bottom: 2px solid var(--main-green);
}

.p-tab {
    display: flex;
    padding: 10px 14px;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    font-size: 16px;
    background: linear-gradient(180deg, #74F2CE 0%, #7CFFCB 100%);
    cursor: pointer;
}
.p-tab:hover {
    background: var(--main-green);
    color: #FFFFFF;
}
.p-tab.active {
    border-bottom: 2px solid var(--main-green);
    font-weight: 500;
}

.products-cards {
    width: 100%;
    height: auto;
    display: flex;
    padding: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.card {
    display: block;
    width: 280px;
    height: 400px;
    color: #000000;
}
.card * {
    margin: 0px;
}

.card-img {
    width: 100%;
    height: 220px;
    /* background-image: url("images/moisturizer-banner.webp");
    background-size: cover;
    background-position: right; */
    overflow: hidden;
    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
        transition: transform 0.3s ease;
    }
}

.card:hover img {
    transform: scale(1.03);
}
.card:hover h4 {
    color: var(--text-green);
    text-decoration: underline;
    /* text-underline-offset: 25%; */
}

.card > *:nth-child(2) {
    margin-top: 30px;
}

.card > *:nth-child(3) {
    margin-top: 7px;
}

.card > *:nth-child(4) {
    margin-top: 14px;
}

.card > *:nth-child(5) {
    margin-top: 16px;
}

.card-button {
    width: 100%;
    border-radius: 0px;
    border-style: none;
    cursor: pointer;
}

.carousel-card {
    width: 100%;
    height: auto;
}

/* End Product Section (Home) */

/* Dermatologist Section (home) */

#dermatologistSection {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 60px;
    background-color: var(--main-white);
}

.dermatologist-container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    gap: 60px;
    padding: 60px;
    & .h1 {
        color: var(--main-green);
    }
}

.derm-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    & .h1 {
        font-size: 3rem;
    }
    & .p-20 {
        font-size: 1.5rem;
    }
}
.derm-section * {
    margin: 0px;
    text-align: center;
}


/* End Dermatologist Section (home) */

/* Highlight Sectio (home) */

#highlightSection {
    position: relative;
    background: var(--main-gradient);
}

.highlight-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px 20px 60px 20px;
}

.highlight-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.highlight-section:last-child {
    flex-direction: row-reverse;
}

.highlight-content {
    max-width: 600px;
}
.highlight-content * {
    margin: 0px;
}
.highlight-content > h1 {
    padding-bottom: 12px;
}
.highlight-content > p {
    padding-bottom: 30px;
}

.highlight-img {
    width: 460px;
    aspect-ratio: 460/400;
    background-color: #bcb7d3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
}

.gentle-cleanser {
    background-image: url("images/gentle-cleanser.webp");
}

.serum-img {
    background-image: url("images/serum-img.webp");
}

.clinically-tested {
    background-image: url("images/clinically-tested.webp");
}

.sensitive-skin {
    background-image: url("images/sensitive-skin.webp");
}

/* End Highlight Section (home) */

/* Cart */

.cart-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 40px;
    padding: 0px;
}

.checkout-wrapper {
    flex-direction: column-reverse;
}

.cart-list {
    & h1 {
        text-align: center;
        margin: 0px;
    }
}

.nothing-cart {
    display: flex;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
}

#cart-items {
    list-style-type: none;
    padding-left: 0px;
}

#cart-items > li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 0px;
    border-top: 1px solid var(--stroke-grey);
}

.cart-thumb {
    max-width: 300px;
    min-width: 160px;
    aspect-ratio: 14/11;
    object-fit: cover;
    flex: 1 1 160px;
}

.cart-info {
    flex: 2 2 150px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    & * {
        margin: 0px;
    }
}

.cart-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
}

.ca-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid var(--stroke-grey);
    border-radius: 6px;
    gap: 8px;
}

.qty-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 36px;
    color: var(--main-green);
    background-color: rgba(255,255,255,0);
    padding: 8px;
    cursor: pointer;
    & img {
        display: block;
    }
}

.remove-btn {
    color: var(--text-green);
    cursor: pointer;
    &:hover {
        color: var(--main-green);
        text-decoration: underline;
    }
}

.order-summary, .cart-list {
    flex: 1 0 270px;
    background-color: var(--main-white);
    padding: 26px 20px;
    border-radius: 16px;
}
.cart-list {
    flex: 2;
}

.os-container {
    display: flex;
    max-width: 460px;
    flex-direction: column;
    gap: 20px;
    margin: 0px auto;
    & * {
        margin: 0px;
    }
}

.os-flex {
    display: flex;
    justify-content: space-between;
}

.checkout {
    & h1 {
        text-align: center;
    }
}

.mar-b {
    margin-bottom: 60px;
}

/* End Cart */

/* Checkout */



/* End Checkout */

/* Footer */

footer {
    position: relative;
    background-color: var(--main-white);
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px 12px 20px;
}
.footer p, .footer h3 {
    margin: 0px;
}

.footer-contents {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 30px;
    width: 100%;
}
.footer-contents > * {
    justify-self: center;
}
.footer-contents > a {
    grid-row: 3/4;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-link-list a {
    color: #000000;
}
.footer-link-list a:hover {
    color: var(--main-green);
    text-decoration: underline;
}

#footer-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 430px;
    grid-row: 1/2;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--stroke-grey);
}

#footerConfirmation, #contactConfirmation {
    width: 100%;
    height: 46px;
    padding-left: 20px;
    display: none;
    justify-content: flex-start;
    align-items: center;
    color: var(--main-green);
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

/* EndFooter */

/* Forms */

.input-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

input, select {
    width: 100%;
    height: 46px;
    background-color: var(--main-white);
    border: 1px solid var(--stroke-grey);
    border-radius: 6px;
    padding: 0px 20px;
    transition: border 0.1s ease;
    font-family: "Bricolage Grotesque", sans-serif;
}

input:hover, select:hover {
    border: 1px solid var(--main-green);
}
input:focus, select:focus {
    border: 1px solid var(--main-green);
    outline: 1px solid var(--main-green);
}

textarea {
    width: 100%;
    min-height: 15em;
    field-sizing: content;
    background-color: var(--main-white);
    border: 1px solid var(--stroke-grey);
    border-radius: 6px;
    padding: 20px;
    transition: border 0.1s ease;
    font-family: "Bricolage Grotesque", sans-serif;
}
textarea:hover {
    border: 1px solid var(--main-green);
}
textarea:focus {
    border: 1px solid var(--main-green);
    outline: 1px solid var(--main-green);
}

#footer-form input {
    padding: 0px 36px 0px 20px;
}

.footer-button {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 6px;
    bottom: 8px;
    width: 30px;
    height: 30px;
    padding: 0px;
    margin: 0px;
    border: none;
    background-color: rgba(255,255,255,0);
    border-radius: 6px;
    cursor: pointer;
}
.footer-button:hover {
    border: 1px solid var(--main-green);
    background-color: #205e5918; /*#3f27aa18*/
}

.error {
    color: #dc0000;
    font-family: "Bricolage Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.radio-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.checkbox-flex {
    justify-content: flex-start;
}

.radio, .checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--main-green);
}

/* End Forms */

/* Confirmation Page */

#confirmationSection {
    display: flex;
    align-items: center;
    min-height: auto;
    padding-bottom: 10vh;
}

.confirmation-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0px auto;
    padding: 0px 20px;
    & > p {
        margin: 0px;
    }
}

.c-h1 {
    font-size: 40px;
    margin: 0px;
}

.confirmation-goop {
    max-width: 300px;
    margin: auto;
}

.confirmation-list {
    width: 100%;
    height: auto;
    background-color: var(--main-white);
    padding: 26px 20px;
    border-radius: 16px;
    & h1 {
        text-align: center;
    }
    & .t-center {
        text-align: center;
    }
}

/* End Confirmation Page */

/* Shopping Categories */

#shopCategory {
    padding: 20px;
}

.shop-wrapper {
    width: 100%;
    max-width: 1250px;
    height: auto;
    margin: auto;
    & > h1 {
        margin: 10px 0px;
    }
}

.filter {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    height: auto;
    border-top: 1px solid var(--stroke-grey);
    border-bottom: 1px solid var(--stroke-grey);
    padding: 20px 0px;
    & * {
        margin: 0px;
    }
}

.filter-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    background-color: var(--alt-btn);
    border-radius: 12px;
    color: #000000;
    font-size: 14px;
    &:hover {
        background-color: var(--alt-btn-hover);
    }
    &.active {
        border: 1px solid var(--main-green);
    }
}

.shop-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 40px;
    padding: 40px 0px;
}

/* End Shopping Categories */

/* Product Page */

#moisturizerSection {
    padding-bottom: 40px;
}

.product-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.product-images-wrapper {
    flex-basis: 60%;
}

.product-images {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.product-image-main {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
}

.product-image-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 0px;
}

.product-image-small {
    width: 80px;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
}

.product-details {
    display: flex;
    flex-basis: 40%;
    align-self: flex-start;
    max-width: 800px;
    flex-direction: column;
    background-color: var(--main-white);
    border-radius: 16px;
    padding: 20px;
    gap: 20px;
    & * {
        margin: 0px;
    }
}

#productFaq {
    display: flex;
    justify-content: center;
}

.faq-container {
    display: flex;
    width: 100%;
    max-width: 800px;
    height: auto;
    flex-direction: column;
    gap: 10px;
    padding: 60px 0px;
}

.faq-tab {
    position: relative;
    /* border-top: 1px solid var(--stroke-grey); */
    /* border-bottom: 1px solid var(--stroke-grey); */
}

.question {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 60px 20px 20px;
    background-color: var(--main-white);
    border-radius: 12px;
    cursor: pointer;
    &::before {
        content: '+';
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0%, -50%);
        font-size: 1.5em;
    }
}

.faq-tab.active .question::before {
    content: '-';
}

.answer {
    position: relative;
    height: 0px;
    background-color: var(--light-purple);
    border-radius: 12px;
    margin: 4px 0px;
    padding-left: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    & * {
        margin: 0px;
    }
}

.faq-tab.active .answer {
    height: auto;
    padding: 20px;
}

/* End Product Page */

/* Contact Page */

.contact-faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.contact-img {
    max-width: 500px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

#contactSection {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    height: auto;
    gap: 20px;
    background-color: var(--main-white);
    border-radius: 16px;
    padding: 20px 26px;
    & > * {
        margin: 0px;
    }
}

/* End Contact Page */

/* About Page */

#aboutBanner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    /* background-image: url(""); */
    background-color: #bcb7d3;
    margin-top: -30px;
    background-image: url("images/about-banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-wrapper {
    width: 100%;
    max-width: 800px;
    height: auto;
    padding: 20px;
    & h1 {
        text-align: center;
    }
}

/* End About Page */



@media screen and (min-width: 600px) {
    header {
        height: 80px;
    }
    .logo {
        width: 126px;
        height: 66px;
    }
    .nav-link {
        font-size: 24px;
    }
    #menu {
        max-width: 470px;
    }
    #main {
        padding: 110px 0px 0px 0px;
    }
    h1, .h1 {
        font-size: 40px;
    }
    p, span {
        font-size: 20px;
    }
    .p-24 {
        font-size: 24px;
    }
    .p-20-r {
        font-size: 20px;
    }
    .button {
        font-size: 20px;
    }
    .hero-promotion {
        grid-template-columns: 40% auto;
    }
    .promoDetails > .button {
        margin-top: 20px;
    }
    .products-tabs {
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        width: auto;
        padding: 0px;
    }
    .p-tab {
        border-radius: 10px 10px 0px 0px;
        font-size: 20px;
    }
    .highlight-container {
        gap: 80px;
        padding: 80px 20px 80px 20px;
    }
    .highlight-section {
        gap: 60px;
    }
    .footer-contents {
        grid-template-rows: auto auto;
        grid-template-columns: 190px auto;
        gap: 30px;
    }
    .footer-contents > a {
        justify-self: auto;
        align-self: center;
        grid-row: 1/3;
        grid-column: 1/2;
    }
    #footer-form {
        grid-column: 2/3;
    }
    #cart-items > li {
        flex-direction: row;
    }
    .cart-info {
        flex: 2 2 200px;
    }
    .confirmation-list {
        padding: 26px 40px;
    }
    .c-h1 {
        font-size: 48px;
    }
    .filter-link {
        font-size: 16px;
    }
    .faq-container {
        padding: 80px 0px;
    }
}

@media screen and (min-width: 900px) {
    header {
        height: 100px;
    }
    #desktop-nav {
        display: flex;
    }
    #menuOpen {
        display: none;
    }
    .nav-link {
        font-size: 20px;
    }
    #menu {
        display: none;
    }
    #main {
        padding: 130px 0px 0px 0px;
    }
    .hero-content {
        flex-direction: row;
    }
    .hero-promotion {
        width: 40%;
        grid-template-columns: 50% auto;
    }
    #bannerSlider {
        width: 60%;
        height: 50vh;
        height: 50svh;
    }
    .promoDetails > .button {
        margin-top: 30px;
    }
    .h-promotion-header {
        text-align: left;
    }
    .products-tabs {
        padding: 0px 30px;
    }
    .highlight-container {
        gap: 100px;
        padding: 100px 20px 100px 20px;
    }
    .footer-contents {
        grid-template-rows: auto;
        grid-template-columns: 190px 1fr 1fr;
    }
    .footer-contents > a {
        align-self: center;
        grid-row: 1/2;
        grid-column: 1/2;
    }
    #footer-form {
        grid-row: 1/2;
        grid-column: 3/4;
        border-bottom: none;
    }
    .cart-wrapper {
        flex-direction: row;
    }
    .cart-fit {
        flex-direction: column;
    }
    .order-summary {
        flex: 1 0 290px;
        align-self: flex-start;
    }
    .cart-list {
        flex: 2;
    }
    .os-sticky {
        position: sticky;
        top: 130px;
    }
    .shop-cards {
        column-gap: 40px;
        row-gap: 60px;
    }
    .product-section {
        flex-direction: row;
    }
    .product-details {
        position: sticky;
        top: 130px;
    }
    .contact-faq {
        flex-direction: row;
    }
}

@media screen and (min-width: 1000px) {
    .cart-fit {
        flex-direction: row;
    }
}


.hide {
    display: none;
}