html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Kanit', sans-serif;
    box-sizing: border-box;
    background-color:#fff;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.hu-product-hero {
    width: 100%;
    height: 100vh;
    background-image: url('../img/elixir-bg.webp');
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 5%;
}

.hu-product-hero h1 {
    font-size: 6rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 10px 0;
}

.hu-product-hero .lead {
    font-size: 1.5rem;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 1px;
}

.hu-product-hero .text {
    margin-top: 30px;
    max-width: 500px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
}

.hu-product-hero a {
    display: flex;
    align-items: center;
    justify-content:center;
    width: 250px;
    padding: 15px 0;
    margin-top: 30px;
    background-color: rgba(0,0,0,0.8);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    text-align: center;
    border-radius: 10px;
}

.hu-product-features {
    background: linear-gradient(#222222, #0C0C0C);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hu-product-features-column-left {
    width: 50%;
    height: 100vh;
    background-image: url('../img/about-bg.webp');
    background-size: 170%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #FFF;
}

.hu-product-features-column-right {
    width: 50%;
    height: 100vh;
    padding: 120px 5% 0 5%;
}

.hu-product-features-column-right h2 {
    font-size: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 10px 0;
}

.hu-product-features-column-right .feature h3 {
    padding-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    border-bottom: rgba(255,255,255,0.8) 1px solid;
}

.hu-features {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hu-product-features-column-right .feature .text {
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 1.5;
    margin-top: -10px;
    padding: 0;
}

.hu-line-container {
    width: 100%;
    height: 500px;
    margin-top: 156px;

    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;

    margin-left: 10%;
}

.hu-line {
    width: 370px;
    height: 1;
    border-top: rgba(255,255,255,0.8) 1px solid;

    z-index: 10;
}

.hu-line1 {
    width: 450px;
    transform: rotate(5deg);
    margin-bottom: 96px;
}

.hu-line2 {
    width: 450px;
    transform: rotate(15deg);
    margin-bottom: 77px;
    margin-right: -7px;
}

.hu-line3 {
    width: 550px;
    transform: rotate(25deg);
    margin-bottom: 150px;
    margin-right: -25px;
}

.hu-line1::before,
.hu-line2::before,
.hu-line3::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: rgba(255,255,255,0.8) 1px solid; 
    border-radius: 50%;
    left: -14px;
    top: -7px;
}

.hu-product-faqs {
    width: 100%;
    min-height: 100vh;
    padding: 50px 0;
    background: linear-gradient(#B1A29D, #947D75);  
    display: flex;
    align-items: center;
}

.hu-product-faqs-column-left {
    width: 50%;
    padding: 0 5%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hu-product-faqs-column-right {
    width: 50%;
    padding: 0 5%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.hu-product-faqs-column-left .lead {
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin: 10px 0;
}

.hu-product-faqs-column-left h2 {
    font-size: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 10px 0;
}

.hu-product-faqs-column-right {
    display: flex;
    gap: 30px;
}

.hu-faq {
    width: 100%;
}

.hu-faq h3 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 10px 0;
}

.hu-faq div {
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 1.5;
}

.color-light {
    color: rgba(255,255,255,0.7);
}

.color-dark {
    color: rgba(17,17,17,0.8);
}

.hidden-content {
    display: none;
}

@media (max-width: 768px) {

    .hu-navigation,
    .hu-cart,
    .hu-hero-stamp,
    .hu-about-stamp {
        display: none;
    }

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

    .hu-menu-icon {
        display: block;
        z-index: 120;
    }

    .hu-mega-menu {
        display: none;
    }

    .hu-product-hero {
        background-size: 190vh;
        background-position: 65% top;
        padding: 20px 5%;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .hu-product-hero h1 {
        font-size: 3rem;
        color:rgba(0,0,0,0.8);
    }
    
    .hu-product-hero .lead {
        font-size: 1.2rem;
        color:rgba(0,0,0,0.8);
    }

    .hu-product-hero .sub-lead {
        display: none;
    }
    
    .hu-product-hero .text {
        margin-top: 10px;
        text-align: left;
        font-size: 0.9rem;
        font-weight: 200;
        color:rgba(0,0,0,1);
    }

    .hu-product-hero a {
        width: 100%;
        margin-top: 20px;
    }

    .hu-product-features {
        height: auto;
        flex-direction: column-reverse;
    }

    .hu-line {
        display: none;
    }

    .hu-features {
        margin-top: 20px;
    }

    .hu-product-features-column-right {
        width: 100%;
        padding: 50px 5%;
        height: auto;
    }

    .hu-product-features-column-left {
        width: 100%;
        height: 50vh;
        background-size: cover;
        background-position: center;
    }

    .hu-product-faqs {
        flex-direction: column;
    }

    .hu-product-faqs-column-left {
        width: 100%;
        min-height: 45vh;
    }

    .hu-product-faqs-column-right {
        width: 100%;
        height: auto;
    }
}