* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f3f6fb;
    color: #111;
}


/* PAGE */

.beauty-detail-page {
    min-height: 100vh;
    padding: 60px 20px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(40, 130, 255, 0.10),
            transparent 30%
        ),
        #f3f6fb;
}


/* CONTAINER */

.beauty-container {
    width: 100%;
    max-width: 1450px;
    margin: auto;
}


/* BACK BUTTON */

.beauty-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 30px;

    color: #222;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: .3s;
}

.beauty-back:hover {
    color: #1677ff;
}


/* MAIN CARD */

.beauty-grid {
    display: grid;

    grid-template-columns:
        48% 52%;

    align-items: center;

    min-height: 600px;

    padding: 55px;

    background: #fff;

    border-radius: 38px;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.10);

    overflow: hidden;
}


/* IMAGE */

.beauty-image {
    height: 480px;

    padding: 35px;

    border-radius: 35px;

    background: #e5efff;

    perspective: 1000px;

    transition: transform .4s ease;
}

.beauty-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 5px;

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, .20);

    transition:
        transform .5s ease;
}


/* 3D IMAGE */

.beauty-image:hover img {
    transform:
        scale(1.04)
        translateZ(20px);
}


/* CONTENT */

.beauty-content {
    padding: 30px 60px;
}


/* NUMBER */

.beauty-number {
    font-size: 72px;

    line-height: 1;

    font-weight: 800;

    color: #1677ff;

    margin-bottom: 15px;
}


/* LABEL */

.beauty-label {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #777;
}


/* HEADING */

.beauty-content h1 {
    margin-top: 15px;

    margin-bottom: 20px;

    font-size:
        clamp(40px, 4vw, 62px);

    line-height: 1.05;

    font-weight: 800;
}

.beauty-content h1 em {
    display: block;

    color: #637783;

    font-family:
        Georgia,
        serif;

    font-weight: 400;
}


/* BLUE LINE */

.beauty-line {
    width: 190px;

    height: 5px;

    border-radius: 10px;

    background: #1677ff;

    margin-bottom: 20px;
}


/* TEXT */

.beauty-content p {
    max-width: 650px;

    margin-bottom: 15px;

    color: #5e6875;

    font-size: 18px;

    line-height: 1.8;
}


/* BUTTON */

.beauty-button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 20px;

    padding: 16px 27px;

    border-radius: 50px;

    background: #1677ff;

    color: white;

    text-decoration: none;

    font-weight: 700;

    box-shadow:
        0 12px 25px
        rgba(22,119,255,.25);

    transition:
        transform .3s,
        box-shadow .3s;
}

.beauty-button span {
    font-size: 20px;
}

.beauty-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 35px
        rgba(22,119,255,.35);
}


/* MOBILE */

@media(max-width: 900px) {

    .beauty-grid {
        grid-template-columns: 1fr;

        padding: 30px;

        gap: 40px;
    }

    .beauty-content {
        padding: 20px;
    }

    .beauty-image {
        height: 400px;
    }

    .beauty-content h1 {
        font-size: 45px;
    }
}


@media(max-width: 550px) {

    .beauty-detail-page {
        padding: 30px 15px;
    }

    .beauty-grid {
        padding: 20px;
        border-radius: 25px;
    }

    .beauty-image {
        height: 300px;
        padding: 20px;
    }

    .beauty-content {
        padding: 10px;
    }

    .beauty-number {
        font-size: 55px;
    }

    .beauty-content h1 {
        font-size: 38px;
    }

    .beauty-content p {
        font-size: 16px;
    }
}