/*=========================================================
        WHITEHEADS — COMPLETE PAGE CSS
        SAME DESIGN SYSTEM AS ACNE PAGE
=========================================================*/


/*=========================================================
        SECTION 1 — HERO
=========================================================*/

.wh-hero{

    min-height:100vh;

    padding-top:120px;
    padding-inline:5%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        180deg,
        #fffdfc 0%,
        #fff8fb 100%
    );

    margin-bottom:30px;

}

.wh-hero-container{

    width:100%;
    max-width:1400px;

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:70px;

}

.wh-hero-content{

    flex:1;
    max-width:520px;

}

.wh-hero-eyebrow{

    display:inline-block;

    padding:10px 18px;

    margin-bottom:26px;

    border-radius:999px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-family:var(--ff-paragraph);

    font-size:.72rem;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.wh-hero-title{

    font-size:clamp(3.5rem,4vw,4.8rem);

    line-height:1.08;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:30px;

}

.wh-hero-text{

    font-family:var(--ff-paragraph);

    font-size:1.08rem;

    line-height:1.9;

    color:var(--clr-text);

    max-width:520px;

    margin-bottom:18px;

}

.wh-hero-text:last-of-type{

    margin-bottom:42px;

}

.wh-hero-button{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    height:58px;

    padding:0 34px;

    border-radius:999px;

    background:var(--clr-primary-light);

    color:var(--clr-white);

    font-family:var(--ff-paragraph);

    font-size:.98rem;

    font-weight:500;

    transition:.35s ease;

}

.wh-hero-button:hover{

    background:var(--clr-primary-hover-light);

    transform:translateY(-4px);

}

.wh-hero-button span{

    transition:.35s;

}

.wh-hero-button:hover span{

    transform:translateY(3px);

}

.wh-hero-visual{

    flex:1;

    position:relative;

    display:flex;

    justify-content:center;
    align-items:center;

    margin-top:30px;

}

.wh-hero-visual::before{

    content:"";

    position:absolute;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(255,214,224,.75),
        transparent 70%
    );

    filter:blur(35px);

    animation:pulse 6s ease-in-out infinite;

}

.wh-hero-image{

    width:200%;
    max-width:650px;

    position:relative;

    z-index:2;

    animation:float 4s ease-in-out infinite;

}


/*=========================================================
        HERO RESPONSIVE
=========================================================*/

@media(max-width:1024px){

    .wh-hero{

        min-height:auto;

        padding-top:110px;

        padding-inline:40px;

    }

    .wh-hero-container{

        gap:40px;

    }

    .wh-hero-title{

        font-size:3.4rem;

    }

    .wh-hero-image{

        max-width:430px;

    }

}

@media(max-width:768px){

    .wh-hero{

        padding-top:90px;

        padding-inline:20px;

    }

    .wh-hero-container{

        flex-direction:column-reverse;

        text-align:center;

        gap:35px;

    }

    .wh-hero-text{

        margin-inline:auto;

    }

    .wh-hero-button{

        width:100%;
        max-width:300px;

        margin:auto;

    }

    .wh-hero-image{

        max-width:340px;

    }

    .wh-hero-visual::before{

        width:360px;
        height:360px;

    }

}

@media(max-width:480px){

    .wh-hero-title{

        font-size:2.4rem;

    }

    .wh-hero-text{

        font-size:.95rem;

    }

    .wh-hero-image{

        max-width:260px;

    }

}


/*=========================================================
        COMMON SECTION LABEL
=========================================================*/

.wh-section-label{

    display:inline-block;

    padding:10px 18px;

    margin-bottom:26px;

    border-radius:999px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-family:var(--ff-paragraph);

    font-size:.82rem;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}


/*=========================================================
        SECTION 2 — WHAT ARE WHITEHEADS?
=========================================================*/

.wh-what{

    margin-top:100px;

    margin-bottom:100px;

    padding:30px 5%;

    background:var(--clr-white);

}

.wh-what-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1.15fr;

    gap:70px;

    align-items:center;

}

.wh-what-visual{

    display:flex;

    justify-content:center;

    align-items:center;

}

.wh-what-image{

    width:100%;

    max-width:520px;

    display:block;

    transition:.4s ease;

    animation:float 4s ease-in-out infinite;

}

.wh-what-visual:hover .wh-what-image{

    transform:scale(1.03);

}

.wh-what-content{

    width:100%;

}

.wh-what-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:24px;

}

.wh-what-text{

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.9;

    color:var(--clr-text);

    margin-bottom:22px;

}


/*=========================================================
        WHITEHEADS NOTE
=========================================================*/

.wh-note{

    margin-top:40px;

    padding:28px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    border-radius:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.wh-note:hover{

    transform:translateY(-6px);

}

.wh-note-icon{

    width:58px;

    height:58px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--clr-hover-soft);

    color:var(--clr-primary-light);

    font-size:1.3rem;

}

.wh-note-content strong{

    display:block;

    font-family:var(--ff-paragraph);

    font-size:1rem;

    font-weight:600;

    color:var(--clr-heading);

    margin-bottom:8px;

}

.wh-note-content p{

    margin:0;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.9;

    color:var(--clr-text);

}

@media(max-width:1024px){

    .wh-what-container{

        grid-template-columns:1fr;

        gap:55px;

    }

    .wh-what-content{

        text-align:center;

    }

    .wh-note{

        text-align:left;

    }

}

@media(max-width:768px){

    .wh-what{

        padding:70px 20px;

    }

    .wh-what-title{

        font-size:2.2rem;

    }

    .wh-what-text{

        font-size:.98rem;

    }

    .wh-note{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:24px;

    }

}


/*=========================================================
        SECTION 3 — HOW DO WHITEHEADS FORM?
=========================================================*/

.wh-form{

    padding:80px 5%;

    background:var(--clr-white);

}

.wh-form-container{

    max-width:1300px;

    margin:auto;

}

.wh-form-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.wh-form-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

}

.wh-form-intro{

    max-width:620px;

    margin:auto;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}

.wh-form-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:22px;

}

.wh-form-card{

    background:var(--clr-white);

    border-radius:30px;

    padding:34px 26px;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s ease;

    cursor:default;

}

.wh-form-card:hover{

    transform:translateY(-8px);

    box-shadow:0 24px 55px rgba(0,0,0,.08);

}

.wh-form-number{

    width:58px;

    height:58px;

    margin-bottom:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-family:var(--ff-paragraph);

    font-weight:700;

    font-size:1.05rem;

    transition:.35s;

}

.wh-form-card:hover .wh-form-number{

    background:var(--clr-primary-light);

    color:var(--clr-white);

    transform:scale(1.08);

}

.wh-form-card h3{

    font-size:1.3rem;

    font-weight:600;

    font-family:var(--ff-paragraph);

    color:var(--clr-heading);

    margin-bottom:16px;

}

.wh-form-card p{

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.8;

}

@media(max-width:1100px){

    .wh-form-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:1024px){

    .wh-form-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .wh-form{

        padding:70px 20px;

    }

    .wh-form-heading{

        margin-bottom:50px;

    }

    .wh-form-title{

        font-size:2.2rem;

    }

    .wh-form-intro{

        font-size:.95rem;

    }

    .wh-form-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .wh-form-card{

        padding:28px 24px;

    }

}


/*=========================================================
        SECTION 4 — WHAT DO WHITEHEADS LOOK LIKE?
=========================================================*/

.wh-appearance{

    padding:80px 5%;

    background:var(--clr-white);

}

.wh-appearance-container{

    max-width:1300px;

    margin:auto;

}

.wh-appearance-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.wh-appearance-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

}

.wh-appearance-intro{

    max-width:620px;

    margin:auto;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}

.wh-appearance-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.wh-appearance-card{

    display:flex;

    align-items:flex-start;

    gap:22px;

    padding:28px;

    background:var(--clr-white);

    border-radius:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s ease;

    border:2px solid transparent;

}

.wh-appearance-card:hover{

    transform:translateY(-8px);

    border-color:rgba(214,170,210,.4);

    box-shadow:0 20px 45px rgba(223,184,216,.22);

}

.wh-appearance-icon{

    width:78px;

    height:78px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-size:1.4rem;

    transition:.35s;

}

.wh-appearance-card:hover .wh-appearance-icon{

    transform:scale(1.08);

    background:#fff3fb;

}

.wh-appearance-card h3{

    font-size:1.35rem;

    font-weight:600;

    color:var(--clr-heading);

    font-family:var(--ff-paragraph);

    margin-bottom:10px;

    transition:.3s;

}

.wh-appearance-card:hover h3{

    color:var(--clr-primary);

}

.wh-appearance-card p{

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.8;

}

@media(max-width:1024px){

    .wh-appearance-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .wh-appearance{

        padding:70px 20px;

    }

    .wh-appearance-heading{

        margin-bottom:50px;

    }

    .wh-appearance-title{

        font-size:2.2rem;

    }

    .wh-appearance-intro{

        font-size:.95rem;

    }

    .wh-appearance-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .wh-appearance-card{

        padding:24px;

        gap:18px;

    }

    .wh-appearance-icon{

        width:60px;

        height:60px;

    }

    .wh-appearance-card h3{

        font-size:1.2rem;

    }

}

@media(max-width:480px){

    .wh-appearance-card{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

}


/*=========================================================
        SECTION 5 — WHERE DO WHITEHEADS APPEAR?
=========================================================*/

.wh-areas{

    padding:90px 5%;

    background:#ffffff;

}

.wh-areas-container{

    max-width:1350px;

    margin:auto;

}

.wh-areas-heading{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.wh-areas-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

}

.wh-areas-intro{

    max-width:620px;

    margin:auto;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}

.wh-areas-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:70px;

}

.wh-area-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:24px;

    background:#ffffff;

    border-radius:26px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    border:2px solid transparent;

    transition:.35s ease;

}

.wh-area-card:hover{

    transform:translateY(-6px);

    border-color:rgba(223,184,216,.45);

    box-shadow:0 22px 45px rgba(223,184,216,.20);

}

.wh-area-icon{

    width:72px;

    height:72px;

    flex-shrink:0;

    border-radius:18px;

    background:#fff3fa;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--clr-primary);

    font-size:1.3rem;

    transition:.35s;

}

.wh-area-card:hover .wh-area-icon{

    transform:scale(1.08);

    background:#fdebf5;

}

.wh-area-card h3{

    font-size:1.25rem;

    font-weight:600;

    font-family:var(--ff-paragraph);

    color:var(--clr-heading);

    margin-bottom:8px;

    transition:.3s;

}

.wh-area-card:hover h3{

    color:var(--clr-primary);

}

.wh-area-card p{

    font-family:var(--ff-paragraph);

    font-size:.95rem;

    line-height:1.7;

    color:var(--clr-text);

}

@media(max-width:1024px){

    .wh-areas-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .wh-areas{

        padding:70px 20px;

    }

    .wh-areas-grid{

        grid-template-columns:1fr;

        gap:22px;

        margin-top:50px;

    }

    .wh-area-card{

        padding:18px;

    }

    .wh-area-icon{

        width:55px;

        height:55px;

    }

}

@media(max-width:480px){

    .wh-area-card{

        flex-direction:column;

        text-align:center;

        gap:14px;

    }

}


/*=========================================================
        SECTION 6 — WHITEHEADS VS BLACKHEADS
=========================================================*/

.wh-comparison{

    padding:90px 5%;

    background:#fffafc;

}

.wh-comparison-container{

    max-width:1300px;

    margin:auto;

}

.wh-comparison-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.wh-comparison-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

}

.wh-comparison-intro{

    max-width:620px;

    margin:auto;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}

.wh-comparison-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.wh-comparison-card{

    background:#ffffff;

    border-radius:32px;

    padding:35px;

    box-shadow:0 18px 40px rgba(0,0,0,.05);

    border:2px solid transparent;

    transition:.35s ease;

}

.wh-comparison-card:hover{

    transform:translateY(-8px);

    border-color:#edd6e3;

    box-shadow:0 25px 55px rgba(223,184,216,.18);

}

.wh-comparison-card-top{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:20px;

}

.wh-comparison-icon{

    width:70px;

    height:70px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-size:1.4rem;

    transition:.35s;

}

.wh-comparison-card:hover .wh-comparison-icon{

    transform:scale(1.08);

    background:#fff3fb;

}

.wh-comparison-card h3{

    font-size:1.55rem;

    font-weight:600;

    color:var(--clr-heading);

    font-family:var(--ff-paragraph);

    transition:.3s;

}

.wh-comparison-card:hover h3{

    color:var(--clr-primary);

}

.wh-comparison-subtitle{

    display:block;

    margin-bottom:18px;

    font-family:var(--ff-paragraph);

    font-size:.95rem;

    font-weight:600;

    color:var(--clr-primary);

}

.wh-comparison-list{

    margin:0;

    padding:0;

    list-style:none;

}

.wh-comparison-list li{

    position:relative;

    padding-left:28px;

    margin-bottom:14px;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.7;

}

.wh-comparison-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    color:#d38cad;

    font-weight:700;

}

.wh-comparison-note{

    margin-top:40px;

    padding:28px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    border-radius:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.wh-comparison-note:hover{

    transform:translateY(-6px);

}

.wh-comparison-note-icon{

    width:58px;

    height:58px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--clr-hover-soft);

    color:var(--clr-primary-light);

    font-size:1.3rem;

}

.wh-comparison-note strong{

    display:block;

    font-family:var(--ff-paragraph);

    font-size:1rem;

    font-weight:600;

    color:var(--clr-heading);

    margin-bottom:8px;

}

.wh-comparison-note p{

    margin:0;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.9;

}

@media(max-width:768px){

    .wh-comparison{

        padding:70px 20px;

    }

    .wh-comparison-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .wh-comparison-card{

        padding:30px;

    }

    .wh-comparison-note{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

}


/*=========================================================
        SECTION 7 — CAUSES OF WHITEHEADS
=========================================================*/

.wh-causes{

    padding:80px 5%;

    background:var(--clr-white);

}

.wh-causes-container{

    max-width:1300px;

    margin:auto;

}

.wh-causes-heading{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.wh-causes-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

}

.wh-causes-intro{

    max-width:620px;

    margin:auto;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}

.wh-causes-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:60px;

}

.wh-cause-card{

    background:var(--clr-white);

    border-radius:30px;

    padding:35px;

    box-shadow:0 18px 40px rgba(0,0,0,.05);

    transition:.35s ease;

}

.wh-cause-card:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 55px rgba(223,184,216,.18);

}

.wh-cause-icon{

    width:78px;

    height:78px;

    margin-bottom:26px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:22px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-size:1.4rem;

    transition:.35s ease;

}

.wh-cause-card:hover .wh-cause-icon{

    transform:scale(1.08);

    background:#fff3fb;

}

.wh-cause-card h3{

    font-size:1.45rem;

    font-weight:600;

    color:var(--clr-heading);

    margin-bottom:16px;

    transition:.3s;

    font-family:var(--ff-paragraph);

}

.wh-cause-card:hover h3{

    color:var(--clr-primary);

}

.wh-cause-card p{

    font-family:var(--ff-paragraph);

    font-size:1rem;

    line-height:1.8;

    color:var(--clr-text);

}

@media(max-width:1024px){

    .wh-causes-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .wh-causes{

        padding:70px 20px;

    }

    .wh-causes-grid{

        grid-template-columns:1fr;

        gap:22px;

        margin-top:45px;

    }

    .wh-cause-card{

        padding:28px;

    }

    .wh-cause-icon{

        width:68px;

        height:68px;

    }

    .wh-cause-card h3{

        font-size:1.3rem;

    }

    .wh-cause-card p{

        font-size:.95rem;

    }

}


/*=========================================================
        SECTION 8 — WHAT CAN MAKE WHITEHEADS WORSE?
=========================================================*/

.wh-worsen{

    padding:90px 5%;

    background:#fffafc;

}

.wh-worsen-container{

    max-width:1300px;

    margin:auto;

}

.wh-worsen-heading{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.wh-worsen-title{

    font-size:clamp(2.8rem,4vw,4rem);

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

    line-height:1.15;

}

.wh-worsen-intro{

    max-width:620px;

    margin:auto;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.9;

    color:var(--clr-text);

}

.wh-worsen-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

    margin-top:60px;

}

.wh-worsen-card{

    display:flex;

    align-items:flex-start;

    gap:22px;

    padding:28px;

    background:#ffffff;

    border-radius:28px;

    border:2px solid transparent;

    box-shadow:0 16px 40px rgba(0,0,0,.05);

    transition:.35s ease;

}

.wh-worsen-card:hover{

    transform:translateY(-8px);

    border-color:#f1d7e4;

    box-shadow:0 24px 50px rgba(223,184,216,.18);

}

.wh-worsen-icon{

    width:80px;

    height:80px;

    flex-shrink:0;

    border-radius:20px;

    background:#fef2f8;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#cf679d;

    font-size:1.5rem;

    transition:.35s;

}

.wh-worsen-card:hover .wh-worsen-icon{

    transform:scale(1.08);

    background:#fde9f3;

}

.wh-worsen-card h3{

    font-size:1.35rem;

    font-weight:600;

    color:var(--clr-heading);

    margin-bottom:12px;

    transition:.3s;

    font-family:var(--ff-paragraph);

}

.wh-worsen-card:hover h3{

    color:var(--clr-primary);

}

.wh-worsen-card p{

    font-family:var(--ff-paragraph);

    font-size:1rem;

    line-height:1.8;

    color:var(--clr-text);

}

@media(max-width:1024px){

    .wh-worsen-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .wh-worsen{

        padding:70px 20px;

    }

    .wh-worsen-grid{

        gap:20px;

        margin-top:45px;

    }

    .wh-worsen-card{

        padding:24px;

        gap:18px;

    }

    .wh-worsen-icon{

        width:56px;

        height:56px;

    }

    .wh-worsen-card h3{

        font-size:1.2rem;

    }

    .wh-worsen-card p{

        font-size:.95rem;

    }

}

@media(max-width:480px){

    .wh-worsen-card{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

}


/*=========================================================
        SECTION 9 — INGREDIENTS
=========================================================*/

.wh-ingredients{

    padding:90px 5%;

    background:#ffffff;

}

.wh-ingredients-container{

    max-width:1300px;

    margin:auto;

}

.wh-ingredients-heading{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.wh-ingredients-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

}

.wh-ingredients-intro{

    max-width:620px;

    margin:auto;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}

.wh-ingredients-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.wh-ingredient-card{

    background:#ffffff;

    border-radius:32px;

    padding:35px;

    text-align:center;

    border:2px solid transparent;

    box-shadow:0 18px 45px rgba(0,0,0,.05);

    transition:.35s ease;

}

.wh-ingredient-card:hover{

    transform:translateY(-10px);

    border-color:#edd6e3;

    box-shadow:0 25px 55px rgba(223,184,216,.18);

}

.wh-ingredient-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-size:1.5rem;

    transition:.35s;

}

.wh-ingredient-card:hover .wh-ingredient-icon{

    transform:scale(1.08);

    background:#fff3fb;

}

.wh-ingredient-card h3{

    font-size:1.45rem;

    font-weight:600;

    color:var(--clr-heading);

    font-family:var(--ff-paragraph);

    line-height:1.4;

    margin-bottom:18px;

    transition:.3s;

}

.wh-ingredient-card:hover h3{

    color:var(--clr-primary);

}

.wh-ingredient-card p{

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.9;

}

.wh-ingredients-note{

    margin-top:40px;

    padding:28px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    border-radius:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.wh-ingredients-note:hover{

    transform:translateY(-6px);

}

.wh-ingredients-note-icon{

    width:58px;

    height:58px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--clr-hover-soft);

    color:var(--clr-primary-light);

    font-size:1.3rem;

}

.wh-ingredients-note strong{

    display:block;

    font-family:var(--ff-paragraph);

    font-size:1rem;

    font-weight:600;

    color:var(--clr-heading);

    margin-bottom:8px;

}

.wh-ingredients-note p{

    margin:0;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.9;

}

@media(max-width:1024px){

    .wh-ingredients-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .wh-ingredients{

        padding:70px 20px;

    }

    .wh-ingredients-grid{

        grid-template-columns:1fr;

        gap:24px;

        margin-top:45px;

    }

    .wh-ingredient-card{

        padding:30px;

    }

    .wh-ingredient-icon{

        width:75px;

        height:75px;

    }

    .wh-ingredient-card h3{

        font-size:1.3rem;

    }

    .wh-ingredient-card p{

        font-size:.95rem;

    }

    .wh-ingredients-note{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:24px;

    }

}


/*=========================================================
        SECTION 10 — SIMPLE ROUTINE
=========================================================*/

.wh-routine{

    padding:90px 5%;

    background:#fffafc;

}

.wh-routine-container{

    max-width:1300px;

    margin:auto;

}

.wh-routine-heading{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.wh-routine-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

}

.wh-routine-intro{

    max-width:620px;

    margin:auto;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}

.wh-routine-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:24px;

    margin-top:60px;

}

.wh-routine-card{

    position:relative;

    background:#ffffff;

    border-radius:32px;

    padding:36px 28px;

    text-align:center;

    box-shadow:0 18px 40px rgba(0,0,0,.05);

    border:2px solid transparent;

    transition:.35s ease;

}

.wh-routine-card:hover{

    transform:translateY(-10px);

    border-color:rgba(224,183,206,.45);

    box-shadow:0 25px 55px rgba(223,184,216,.20);

}

.wh-routine-number{

    position:absolute;

    top:20px;

    right:22px;

    font-family:var(--ff-paragraph);

    font-size:.8rem;

    font-weight:700;

    color:#d3a4bd;

}

.wh-routine-icon{

    width:78px;

    height:78px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:var(--clr-hover-soft);

    color:var(--clr-primary);

    font-size:1.4rem;

    transition:.35s;

}

.wh-routine-card:hover .wh-routine-icon{

    transform:scale(1.08);

    background:#fff3fb;

}

.wh-routine-card h3{

    font-size:1.35rem;

    font-weight:600;

    color:var(--clr-heading);

    font-family:var(--ff-paragraph);

    margin-bottom:16px;

    transition:.3s;

}

.wh-routine-card:hover h3{

    color:var(--clr-primary);

}

.wh-routine-card p{

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.8;

}

@media(max-width:1100px){

    .wh-routine-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:1024px){

    .wh-routine-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .wh-routine{

        padding:70px 20px;

    }

    .wh-routine-grid{

        grid-template-columns:1fr;

        gap:24px;

        margin-top:45px;

    }

    .wh-routine-card{

        padding:30px;

    }

    .wh-routine-card h3{

        font-size:1.3rem;

    }

    .wh-routine-card p{

        font-size:.95rem;

    }

}


/*=========================================================
        SECTION 11 — SHOULD YOU POP A WHITEHEAD?
=========================================================*/

.wh-pop{

    padding:90px 5%;

    background:#ffffff;

}

.wh-pop-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.wh-pop-content{

    width:100%;

}

.wh-pop-title{

    font-size:clamp(2.8rem,4vw,4rem);

    color:var(--clr-heading);

    line-height:1.15;

    font-weight:500;

    margin-bottom:24px;

}

.wh-pop-intro{

    max-width:580px;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:30px;

}

.wh-pop-text{

    max-width:580px;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:22px;

}

.wh-pop-visual{

    display:flex;

    justify-content:center;

    align-items:center;

}

.wh-pop-image{

    width:100%;

    max-width:500px;

    display:block;

    animation:float 4s ease-in-out infinite;

    transition:.35s;

}

.wh-pop-visual:hover .wh-pop-image{

    transform:scale(1.03);

}

.wh-pop-note{

    margin-top:40px;

    padding:28px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#fff;

    border-radius:28px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.wh-pop-note:hover{

    transform:translateY(-6px);

}

.wh-pop-note-icon{

    width:58px;

    height:58px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--clr-hover-soft);

    color:var(--clr-primary-light);

    font-size:1.3rem;

}

.wh-pop-note strong{

    display:block;

    font-family:var(--ff-paragraph);

    font-size:1rem;

    font-weight:600;

    color:var(--clr-heading);

    margin-bottom:8px;

}

.wh-pop-note p{

    margin:0;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.9;

}

@media(max-width:1024px){

    .wh-pop-container{

        grid-template-columns:1fr;

        gap:55px;

    }

    .wh-pop-content{

        text-align:center;

    }

    .wh-pop-intro,

    .wh-pop-text{

        margin-inline:auto;

    }

}

@media(max-width:768px){

    .wh-pop{

        padding:70px 20px;

    }

    .wh-pop-title{

        font-size:2.2rem;

    }

    .wh-pop-intro,

    .wh-pop-text{

        font-size:.95rem;

    }

    .wh-pop-image{

        max-width:320px;

    }

    .wh-pop-note{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:24px;

    }

}


/*=========================================================
        SECTION 12 — MYTHS VS FACTS
=========================================================*/

.wh-myths{

    padding:90px 5%;

    background:#fffafc;

}

.wh-myths-container{

    max-width:1300px;

    margin:auto;

}

.wh-myths-heading{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.wh-myths-title{

    font-size:clamp(2.8rem,4vw,4rem);

    line-height:1.15;

    font-weight:500;

    color:var(--clr-heading);

    margin-bottom:22px;

}

.wh-myths-intro{

    max-width:620px;

    margin:auto;

    font-family:var(--ff-paragraph);

    font-size:1.05rem;

    line-height:1.8;

    color:var(--clr-text);

}

.wh-myths-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.wh-myth-card{

    background:#ffffff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 18px 40px rgba(0,0,0,.05);

    transition:.35s ease;

    border:2px solid transparent;

}

.wh-myth-card:hover{

    transform:translateY(-8px);

    border-color:#efd4e2;

    box-shadow:0 25px 55px rgba(223,184,216,.18);

}

.wh-myth-label{

    background:#fdecef;

    color:#d15772;

    font-weight:600;

    padding:14px 28px;

    font-family:var(--ff-paragraph);

    font-size:.95rem;

}

.wh-myth-text{

    padding:24px 28px;

    font-family:var(--ff-paragraph);

    font-size:1.45rem;

    font-weight:600;

    color:var(--clr-heading);

    line-height:1.5;

}

.wh-fact-divider{

    width:100%;

    height:1px;

    background:#f1e7ec;

}

.wh-fact-label{

    background:#eef8f0;

    color:#4f8d62;

    font-weight:600;

    padding:14px 28px;

    font-family:var(--ff-paragraph);

    font-size:.95rem;

}

.wh-fact-text{

    padding:24px 28px 30px;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    font-size:1rem;

    line-height:1.9;

}

@media(max-width:1024px){

    .wh-myths-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .wh-myths{

        padding:70px 20px;

    }

    .wh-myths-grid{

        gap:22px;

        margin-top:45px;

    }

    .wh-myth-text{

        font-size:1.25rem;

        padding:20px;

    }

    .wh-fact-text{

        padding:20px 20px 26px;

        font-size:.95rem;

    }

    .wh-myth-label,

    .wh-fact-label{

        padding:12px 20px;

    }

}


/*=========================================================
        SECTION 13 — DERMATOLOGIST
=========================================================*/

.wh-dermatologist{

    padding:90px 5%;

    background:#fffafc;

}

.wh-dermatologist-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.wh-dermatologist-content{

    width:100%;

}

.wh-dermatologist-title{

    font-size:clamp(2.8rem,4vw,4rem);

    color:var(--clr-heading);

    line-height:1.15;

    font-weight:500;

    margin-bottom:24px;

}

.wh-dermatologist-intro{

    max-width:580px;

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.9;

    font-size:1.05rem;

    margin-bottom:45px;

}

.wh-dermatologist-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.wh-dermatologist-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:24px 28px;

    background:#ffffff;

    border-radius:28px;

    border:2px solid transparent;

    box-shadow:0 16px 38px rgba(0,0,0,.05);

    transition:.35s ease;

}

.wh-dermatologist-item:hover{

    transform:translateY(-6px);

    border-color:#edd5e2;

    box-shadow:0 24px 50px rgba(223,184,216,.18);

}

.wh-dermatologist-icon{

    width:60px;

    height:60px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:#fff3f8;

    color:var(--clr-primary);

    font-size:1.2rem;

    transition:.35s;

}

.wh-dermatologist-item:hover .wh-dermatologist-icon{

    background:#fdeaf4;

    transform:scale(1.08);

}

.wh-dermatologist-item h3{

    font-size:1.3rem;

    color:var(--clr-heading);

    margin-bottom:10px;

    transition:.3s;

    font-family:var(--ff-paragraph);

}

.wh-dermatologist-item:hover h3{

    color:var(--clr-primary);

}

.wh-dermatologist-item p{

    font-family:var(--ff-paragraph);

    color:var(--clr-text);

    line-height:1.8;

}

.wh-dermatologist-visual{

    display:flex;

    justify-content:center;

    align-items:center;

}

.wh-dermatologist-image{

    width:120%;

    max-width:880px;

    display:block;

    animation:float 4s ease-in-out infinite;

    transition:.35s;

}

.wh-dermatologist-visual:hover .wh-dermatologist-image{

    transform:scale(1.03);

}

@media(max-width:1024px){

    .wh-dermatologist-container{

        grid-template-columns:1fr;

        gap:55px;

    }

    .wh-dermatologist-content{

        text-align:center;

    }

    .wh-dermatologist-intro{

        margin-inline:auto;

    }

}

@media(max-width:768px){

    .wh-dermatologist{

        padding:70px 20px;

    }

    .wh-dermatologist-item{

        padding:22px;

        gap:18px;

    }

    .wh-dermatologist-icon{

        width:54px;

        height:54px;

    }

    .wh-dermatologist-item h3{

        font-size:1.15rem;

    }

    .wh-dermatologist-item p{

        font-size:.95rem;

    }

    .wh-dermatologist-image{

        max-width:320px;

    }

}

@media(max-width:480px){

    .wh-dermatologist-item{

        flex-direction:column;

        align-items:center;

        text-align:center;

    }

}


/*=========================================================
        SECTION 14 — MIMII'S TIP
        SAME STYLE AS ACNE .mk-note-panel
=========================================================*/

.wh-tip{

    padding:90px 5%;

    background:#ffffff;

}

.wh-tip-container{

    max-width:1300px;

    margin:auto;

}

.wh-tip-panel{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:90px;

    background:linear-gradient(
        135deg,
        #fff8fc,
        #ffffff,
        #fff6fb
    );

    border:1px solid #f4dde7;

    border-radius:32px;

    padding:25px 50px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:0 14px 40px rgba(236,177,201,.12);

}

.wh-tip-panel:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 48px rgba(236,177,201,.18);

}


/*=========================================================
        MIMII CHARACTER
=========================================================*/

.wh-tip-character{

    width:100%;

    max-width:400px;

    flex-shrink:0;

}

.wh-tip-character-image{

    width:80%;

    display:block;

    animation:float 4s ease-in-out infinite;

}


/*=========================================================
        MIMII CONTENT
=========================================================*/

.wh-tip-content{

    flex:1;

}

.wh-tip-label{

    display:inline-block;

    font-family:var(--ff-heading);

    font-size:1.7rem;

    font-weight:500;

    color:#cf679d;

    margin-bottom:18px;

}

.wh-tip-title{

    font-family:var(--ff-heading);

    font-size:2.1rem;

    font-weight:400;

    color:#3d3238;

    line-height:1.2;

    margin-bottom:20px;

}

.wh-tip-text{

    max-width:560px;

    font-family:var(--ff-paragraph);

    font-size:1.02rem;

    line-height:1.9;

    color:#666;

    margin-bottom:24px;

}

.wh-tip-signature{

    display:inline-block;

    font-family:var(--ff-paragraph);

    font-size:.95rem;

    font-weight:600;

    color:#bf7296;

}


/*=========================================================
        DECORATION
=========================================================*/

.wh-tip-decoration{

    width:95px;

    flex-shrink:0;

}

.wh-tip-decoration img{

    width:100%;

    display:block;

}


/*=========================================================
        MIMII TIP RESPONSIVE
=========================================================*/

@media(max-width:1024px){

    .wh-tip-panel{

        gap:50px;

        padding:35px;

    }

    .wh-tip-character{

        max-width:280px;

    }

}

@media(max-width:768px){

    .wh-tip{

        padding:70px 20px;

    }

    .wh-tip-panel{

        flex-direction:column;

        text-align:center;

        gap:35px;

        padding:35px 28px;

    }

    .wh-tip-character{

        max-width:250px;

    }

    .wh-tip-text{

        margin-inline:auto;

    }

    .wh-tip-decoration{

        display:none;

    }

}

@media(max-width:480px){

    .wh-tip-panel{

        padding:28px 22px;

        border-radius:24px;

    }

    .wh-tip-character{

        max-width:210px;

    }

    .wh-tip-label{

        font-size:1.45rem;

    }

    .wh-tip-title{

        font-size:1.7rem;

    }

    .wh-tip-text{

        font-size:.95rem;

        line-height:1.8;

    }

}


/*=========================================================
        SAFETY — IMAGE DISPLAY
=========================================================*/

.wh-hero-image,
.wh-what-image,
.wh-pop-image,
.wh-dermatologist-image,
.wh-tip-character-image{

    object-fit:contain;

}


/*=========================================================
        OPTIONAL GLOBAL ANIMATIONS
        Included here so this page doesn't depend on
        another CSS file for the animations.
=========================================================*/

@keyframes float{

    0%,
    100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

@keyframes pulse{

    0%,
    100%{

        transform:scale(1);

        opacity:.75;

    }

    50%{

        transform:scale(1.08);

        opacity:1;

    }

}