/*
Theme Name:   Derma Korea
Author: 6weeks.marketing
Author URI: https://6weeks.marketing/
*/

html
{
    box-sizing: border-box;
}

body
{
    font-family: "Montserrat", "sans-serif";
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
    font-size: 16px;
    letter-spacing: 1.2px;
}

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

a,
a:hover,
a:focus
{
    text-decoration: none;
    color: inherit;
}

ul
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.container
{
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 10px;
}

.footer-container {
	padding-bottom: 1em;
}

.pre-header
{
    background: rgba(123,102,80,.89);
    color: #fff;
    padding: .5em;
}

.pre-header__content
{
    text-align: center;
}

.header
{
    padding: 16px 0;
}

.header__inner
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.header__inner .nav
{
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.header__inner .nav__list
{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.link--whatsapp svg
{
    width: 28px;
    height: 28px;
}

.link--whatsapp svg path
{
    transition: fill .3s, stroke .3s;
}

.btn
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    border: 2px solid #ba946f;
    color: rgba(123,102,80);
    background: transparent;

    transition: color .3s, background .3s;
}

.btn:hover
{
    color: #fff;
    background: #ba946f;
}

.btn svg path
{
    fill: rgba(123,102,80);
}

.btn:hover svg path
{
    fill: #fff;
}

.promo__inner
{
    min-height: 70vh;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.promo__action
{
    flex-basis: 54%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.promo__text
{
    flex-basis: 40%;
}

.promo__title
{
    font-size: 40px;
    font-weight: 800;
    color: #ea5397;
    margin: 0 0 32px;
}

.promo__subtitle
{
    font-size: 26px;
    font-weight: 600;
}

.promo__text
{
    line-height: 24px;
}

.link--shop
{
    width: max-content;

    border: none;
    border-radius: 10% / 90%;
    background-color: #ea5397;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 2px 1px rgba(48, 48, 48, .29);
    box-shadow: -500px -500px 0 -100px rgba(3, 7, 18, .01);
    transition: all .3s;
}

.link--shop:hover
{
    background-color: #cd4180;
}

.link *
{
    user-select: none;
}

@media screen and (max-width: 760px)
{
    .promo__inner
    {
        flex-direction: column;
        padding: 64px 0 32px;
    }
}

@media screen and (max-width: 580px)
{
    .link--whatsapp
    {
        padding: 16px 8px;
    }

    .header__logo svg
    {
        width: 128px;
        height: 128px;
    }
}

@media screen and (max-width: 510px)
{
    .header__inner
    {
        flex-direction: column;
    }

    .header__inner .nav__list
    {
        justify-content: center;
    }
}