/* =========================================
   AFTERGLOW
========================================= */

:root {
    --pink: #f6b7cb;
    --light-pink: #ffdce7;
    --brown: #b79076;
    --dark: #050304;
    --soft-dark: #0d080b;
    --text: #fff2f5;
    --muted: #9c898f;
    --border: rgba(247, 184, 204, 0.14);
}


/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    background: var(--dark);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}


a {
    color: inherit;
}


/* =========================================
   STAR BACKGROUND
========================================= */

#star-background {
    position: fixed;
    inset: 0;
    z-index: -5;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(129, 49, 78, 0.17),
            transparent 40%
        ),
        #030203;

    transition: transform 0.1s linear;
}


.star {
    position: absolute;

    width: var(--size);
    height: var(--size);

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 5px #ffffff,
        0 0 12px rgba(255, 170, 205, 0.7);

    animation:
        twinkle var(--speed)
        ease-in-out
        infinite;

    animation-delay: var(--delay);
}


@keyframes twinkle {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(0.7);
    }

    50% {
        opacity: 1;
        transform: scale(1.4);
    }

}


/* =========================================
   ANNOUNCEMENT
========================================= */

.announcement-bar {
    height: 38px;

    display: flex;
    align-items: center;

    overflow: hidden;

    white-space: nowrap;

    background: var(--pink);
    color: #2a171e;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.announcement-track {
    display: flex;

    min-width: max-content;

    gap: 80px;

    animation:
        announcementMove
        25s
        linear
        infinite;
}


@keyframes announcementMove {

    to {
        transform: translateX(-50%);
    }

}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
    width: 100%;
    height: 90px;

    padding: 0 35px;

    display: grid;

    grid-template-columns:
        70px
        1fr
        130px;

    align-items: center;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.03);

    position: relative;

    z-index: 30;
}


.nav-logo-icon {
    color: var(--pink);

    font-size: 25px;

    text-decoration: none;
}


.nav-links {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: clamp(
        20px,
        3.2vw,
        55px
    );
}


.nav-links a {
    color: #f9e9ed;

    text-decoration: none;

    font-size: 12px;
    letter-spacing: 1.4px;

    position: relative;

    transition: 0.25s;
}


.nav-links a:hover,
.nav-links a.active {
    color: var(--pink);
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    width: 0;
    height: 1px;

    background: var(--pink);

    transform: translateX(-50%);

    transition: 0.25s;
}


.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}


.nav-actions {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    gap: 15px;
}


.header-icon {
    border: none;

    background: transparent;

    color: var(--pink);

    font-size: 22px;

    cursor: pointer;
}


.header-cart {
    position: relative;

    text-decoration: none;

    font-size: 20px;
}


.cart-count {
    position: absolute;

    top: -7px;
    right: -9px;

    width: 17px;
    height: 17px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pink);
    color: #2b161e;

    font-size: 8px;
    font-weight: 700;
}


.mobile-menu-button,
.mobile-navigation {
    display: none;
}


/* =========================================
   BUTTONS
========================================= */

.primary-button,
.secondary-button {
    display: inline-block;

    padding:
        15px
        25px;

    border-radius: 100px;

    text-decoration: none;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;

    transition: 0.3s;
}


.primary-button {
    background: var(--pink);
    color: #2b161e;
}


.secondary-button {
    border: 1px solid
        rgba(247, 184, 204, 0.28);

    color: var(--pink);
}


.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-3px);
}


/* =========================================
   HOME HERO
========================================= */

.home-hero {
    min-height:
        calc(100vh - 128px);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 60px 20px;

    position: relative;
}


.home-glow {
    position: absolute;

    width: 70vw;
    height: 400px;

    background:
        radial-gradient(
            ellipse,
            rgba(247, 184, 204, 0.15),
            transparent 67%
        );

    filter: blur(25px);
}


.home-logo-wrap {
    width: min(
        1100px,
        90vw
    );

    position: relative;
}


.home-logo {
    width: 100%;

    position: relative;
    z-index: 3;

    filter:
        drop-shadow(
            0 0 25px
            rgba(247, 184, 204, 0.25)
        );

    animation:
        logoFloat
        5s
        ease-in-out
        infinite;
}


@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


.logo-sparkle {
    position: absolute;

    z-index: 4;

    color: var(--pink);

    font-size: 27px;

    text-shadow:
        0 0 15px var(--pink);

    animation:
        sparkle
        3s
        ease-in-out
        infinite;
}


.logo-sparkle-one {
    top: 10%;
    right: 18%;
}


.logo-sparkle-two {
    bottom: 20%;
    left: 20%;

    animation-delay: 1s;
}


.logo-sparkle-three {
    top: 45%;
    right: 3%;

    animation-delay: 2s;
}


@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.4);
    }

}


.home-tagline {
    margin-top: 10px;

    color: #a9949a;

    font-size: 10px;

    letter-spacing: 4px;
}


.home-buttons {
    display: flex;

    gap: 12px;

    margin-top: 30px;
}


/* =========================================
   GENERAL HEADINGS
========================================= */

.section-label {
    color: var(--pink);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}


.page-hero {
    width: min(
        1100px,
        90%
    );

    margin: auto;

    padding:
        110px
        20px
        75px;

    text-align: center;
}


.page-hero h1,
.night-hero h1 {
    margin-top: 12px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            55px,
            7vw,
            100px
        );

    font-weight: 500;

    line-height: 0.95;
}


.page-hero h1 span,
.night-hero h1 span {
    display: block;

    color: var(--pink);

    font-style: italic;
}


.page-hero > p:last-child,
.night-hero > div:first-child > p:not(.section-label) {
    max-width: 580px;

    margin-top: 28px;

    color: var(--muted);

    line-height: 1.9;
}


/* =========================================
   HOME SECTIONS
========================================= */

.home-intro {
    width: min(
        950px,
        90%
    );

    margin: auto;

    padding:
        130px
        20px
        80px;

    text-align: center;
}


.home-intro h2,
.values-section h2,
.story-section h2,
.final-cta h2,
.night-routine h2,
.related-section h2,
.faq-section h2 {
    margin-top: 12px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            44px,
            6vw,
            78px
        );

    line-height: 1;

    font-weight: 500;
}


.home-intro h2 span,
.values-section h2 span,
.story-section h2 span,
.final-cta h2 span,
.night-routine h2 span,
.related-section h2 span,
.faq-section h2 span {
    display: block;

    color: var(--pink);

    font-style: italic;
}


.home-intro > p:last-child {
    max-width: 600px;

    margin:
        25px
        auto
        0;

    color: var(--muted);

    line-height: 1.8;
}


.home-category-grid {
    width: min(
        1200px,
        92%
    );

    margin:
        0
        auto
        130px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.home-category-card {
    min-height: 310px;

    padding:
        40px
        30px;

    border:
        1px solid var(--border);

    border-radius: 28px;

    background:
        rgba(255, 255, 255, 0.018);

    text-decoration: none;

    transition: 0.3s;
}


.home-category-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(247, 184, 204, 0.4);
}


.home-category-card > span {
    color: var(--pink);

    font-size: 45px;
}


.home-category-card h3 {
    margin-top: 40px;

    color: var(--brown);

    font-size: 12px;

    letter-spacing: 2px;
}


.home-category-card p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


.home-category-card strong {
    display: block;

    margin-top: 28px;

    color: var(--pink);

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================
   PINK BANNER
========================================= */

.home-banner {
    width: min(
        1250px,
        92%
    );

    min-height: 380px;

    margin:
        0
        auto
        130px;

    padding:
        55px
        50px;

    border-radius: 35px;

    display: flex;

    justify-content: space-around;
    align-items: center;

    text-align: center;

    color: #452631;

    background:
        linear-gradient(
            135deg,
            #f7bfd0,
            #d589a2
        );
}


.home-banner > span {
    font-size: 50px;
}


.home-banner h2 {
    margin: 10px 0 28px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            42px,
            6vw,
            75px
        );

    line-height: 1;
}


.home-banner h2 em {
    display: block;
}


.home-banner a {
    padding:
        13px
        22px;

    border:
        1px solid rgba(54, 27, 37, 0.4);

    border-radius: 100px;

    color: #452631;

    text-decoration: none;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}


.dark-label {
    color: #6b3e4e;
}


/* =========================================
   PRODUCTS
========================================= */

.product-filter {
    display: flex;

    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 60px;
}


.filter-button {
    padding:
        11px
        20px;

    border-radius: 100px;

    border:
        1px solid var(--border);

    background: transparent;

    color: #a58f95;

    font-size: 9px;

    letter-spacing: 1.5px;

    cursor: pointer;
}


.active-filter,
.filter-button:hover {
    background: var(--pink);

    color: #2b161e;
}


.product-grid {
    width: min(
        1400px,
        94%
    );

    margin:
        0
        auto
        140px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        55px
        20px;
}


.product-card {
    transition: 0.3s;
}


.product-card:hover {
    transform: translateY(-6px);
}


.product-link {
    text-decoration: none;
}


.product-image {
    width: 100%;

    aspect-ratio: 4 / 5;

    border-radius: 25px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.07);
}


.pink-background {
    background:
        radial-gradient(
            circle,
            #ffe8ef,
            #d797ac,
            #6d4351
        );
}


.brown-background {
    background:
        radial-gradient(
            circle,
            #f2d9c8,
            #b88b74,
            #584035
        );
}


.cream-background {
    background:
        radial-gradient(
            circle,
            #fff2ea,
            #d6afa2,
            #74524c
        );
}


.product-badge {
    position: absolute;

    top: 17px;
    left: 17px;

    padding:
        8px
        12px;

    border-radius: 100px;

    background:
        rgba(8, 5, 6, 0.8);

    color: var(--pink);

    font-size: 7px;

    letter-spacing: 1.3px;
}


.fake-bottle,
.fake-serum,
.fake-spray,
.fake-lip {
    background:
        linear-gradient(
            145deg,
            #fff7fa,
            #e9b1c3
        );

    color: #8e5367;

    box-shadow:
        0
        35px
        60px
        rgba(54, 24, 35, 0.28);

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    font-family:
        "Playfair Display",
        serif;

    letter-spacing: 2px;
}


.fake-bottle {
    width: 42%;
    height: 48%;

    border-radius:
        20px
        20px
        45px
        45px;
}


.fake-serum {
    width: 34%;
    height: 54%;

    border-radius: 18px;
}


.fake-spray {
    width: 32%;
    height: 55%;

    border-radius: 15px;
}


.fake-lip {
    width: 22%;
    height: 57%;

    border-radius: 50px;
}


.fake-bottle small,
.fake-serum small,
.fake-spray small {
    margin-top: 8px;

    font-family: "DM Sans";

    font-size: 6px;

    letter-spacing: 1px;
}


.symbol-product {
    display: flex;

    flex-direction: column;

    align-items: center;

    color: #ffe4ed;

    font-size: 115px;

    text-shadow:
        0 0 35px
        rgba(255, 215, 229, 0.5);
}


.symbol-product small {
    font-family: "DM Sans";

    font-size: 8px;

    letter-spacing: 2px;
}


.product-card h3 {
    color: var(--brown);

    font-size: 14px;

    margin-bottom: 7px;
}


.product-price {
    color: var(--brown);

    font-size: 13px;
}


.product-description {
    color: #827177;

    font-size: 11px;

    line-height: 1.7;

    margin-top: 7px;
}


.add-to-cart-button {
    width: 100%;

    margin-top: 14px;

    padding: 13px;

    border-radius: 100px;

    border:
        1px solid
        rgba(247, 184, 204, 0.3);

    background: transparent;

    color: var(--pink);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.7px;

    cursor: pointer;

    transition: 0.25s;
}


.add-to-cart-button:hover {
    background: var(--pink);

    color: #2a161d;

    transform: translateY(-2px);
}


/* =========================================
   CART MESSAGE
========================================= */

.cart-message {
    position: fixed;

    bottom: 25px;
    right: 25px;

    z-index: 100;

    padding:
        14px
        20px;

    border-radius: 100px;

    background: var(--pink);

    color: #2b161e;

    font-size: 11px;

    font-weight: 700;

    opacity: 0;

    pointer-events: none;

    transform: translateY(20px);

    transition: 0.3s;
}


.cart-message.show {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   BUNDLES
========================================= */

.bundle-list {
    width: min(
        1300px,
        92%
    );

    margin:
        20px
        auto
        140px;

    display: flex;

    flex-direction: column;

    gap: 110px;
}


.bundle-card {
    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    gap: 70px;

    align-items: center;
}


.bundle-card:nth-child(even)
.bundle-visual {
    order: 2;
}


.bundle-card:nth-child(even)
.bundle-info {
    order: 1;
}


.bundle-visual {
    min-height: 560px;

    border-radius: 35px;

    display: flex;

    justify-content: center;
    align-items: center;

    position: relative;
}


.bundle-box {
    width: 58%;

    aspect-ratio: 1 / 0.72;

    border-radius: 25px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #f5b8cc,
            #d68aa3
        );

    color: #754053;

    box-shadow:
        0
        35px
        70px
        rgba(51, 23, 33, 0.3);

    transform: rotate(-3deg);
}


.bundle-box > span {
    font-size: 50px;
}


.bundle-box strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 35px;
}


.bundle-box small {
    margin-top: 8px;

    font-size: 7px;

    letter-spacing: 2px;
}


.brown-box {
    background:
        linear-gradient(
            145deg,
            #e5c2ae,
            #b27c65
        );
}


.cream-box {
    background:
        linear-gradient(
            145deg,
            #fff2ea,
            #d4a99a
        );
}


.bundle-info h2 {
    margin-top: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            44px,
            5vw,
            67px
        );

    font-weight: 500;
}


.bundle-info > p:not(.section-label) {
    margin-top: 20px;

    color: var(--muted);

    line-height: 1.8;
}


.bundle-price {
    margin-top: 25px;

    color: var(--brown);

    font-size: 25px;
}


.bundle-price del {
    margin-left: 10px;

    color: #6f6065;

    font-size: 13px;
}


.bundle-price span {
    margin-left: 10px;

    padding:
        6px
        10px;

    border-radius: 100px;

    background:
        rgba(247, 184, 204, 0.08);

    color: var(--pink);

    font-size: 8px;
}


.bundle-info details {
    margin-top: 25px;

    padding:
        18px
        0;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    color: #a59197;
}


.bundle-info summary {
    color: var(--pink);

    cursor: pointer;

    font-size: 9px;

    letter-spacing: 2px;
}


.bundle-info details p {
    margin-top: 12px;

    font-size: 11px;
}


/* =========================================
   NIGHT HERO
========================================= */

.night-hero {
    width: min(
        1350px,
        94%
    );

    min-height: 700px;

    margin: auto;

    padding:
        70px
        30px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 60px;
}


.night-hero .primary-button,
.night-hero .secondary-button {
    margin-top: 28px;
}


.moon-display {
    min-height: 550px;

    position: relative;

    display: flex;

    justify-content: center;
    align-items: center;
}


.giant-moon {
    position: relative;

    z-index: 3;

    color: var(--pink);

    font-size:
        clamp(
            240px,
            28vw,
            420px
        );

    text-shadow:
        0 0 60px
        rgba(247, 184, 204, 0.35);

    animation:
        moonFloat
        6s
        ease-in-out
        infinite;
}


@keyframes moonFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-3deg);
    }

    50% {
        transform:
            translateY(-13px)
            rotate(2deg);
    }

}


.moon-orbit {
    position: absolute;

    border:
        1px solid
        rgba(247, 184, 204, 0.16);

    border-radius: 50%;
}


.orbit-a {
    width: 500px;
    height: 270px;

    transform: rotate(-25deg);
}


.orbit-b {
    width: 370px;
    height: 510px;

    transform: rotate(55deg);
}


.floating-sparkle {
    position: absolute;

    color: var(--pink);

    font-size: 28px;

    animation:
        sparkle
        3s
        infinite;
}


.f1 {
    top: 15%;
    right: 15%;
}


.f2 {
    bottom: 18%;
    left: 15%;
}


/* NIGHT LIGHT */

.night-light-background {
    background:
        radial-gradient(
            circle,
            #fce2e9,
            #af6d82 55%,
            #3b252d
        );
}


.night-light {
    display: flex;

    flex-direction: column;

    align-items: center;

    color: #ffe1eb;

    text-shadow:
        0 0 20px #ffd2e1,
        0 0 65px #ef8eaf;
}


.night-light span {
    font-size: 150px;

    animation:
        lightPulse
        3s
        ease-in-out
        infinite;
}


.night-light small {
    font-size: 8px;

    letter-spacing: 3px;
}


@keyframes lightPulse {

    0%,
    100% {
        filter: brightness(0.8);
        transform: scale(0.95);
    }

    50% {
        filter: brightness(1.35);
        transform: scale(1.05);
    }

}


/* =========================================
   ROUTINE
========================================= */

.night-routine {
    width: min(
        1200px,
        92%
    );

    margin:
        0
        auto
        140px;

    text-align: center;
}


.routine-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 50px;
}


.routine-grid article {
    min-height: 230px;

    padding:
        35px
        25px;

    text-align: left;

    border-radius: 23px;

    background:
        rgba(255, 255, 255, 0.018);

    border:
        1px solid var(--border);
}


.routine-grid article > span {
    color: var(--pink);

    font-family:
        "Playfair Display",
        serif;

    font-size: 37px;
}


.routine-grid h3 {
    margin-top: 30px;

    color: var(--brown);

    font-size: 10px;

    letter-spacing: 2px;
}


.routine-grid p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================
   ABOUT
========================================= */

.story-section,
.values-section,
.final-cta {
    width: min(
        1200px,
        92%
    );

    margin:
        0
        auto
        140px;
}


.story-section {
    padding-top: 60px;
}


.story-columns {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;

    margin-top: 45px;
}


.story-columns p {
    color: var(--muted);

    line-height: 1.9;

    font-size: 13px;
}


.values-section {
    text-align: center;
}


.values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;

    margin-top: 55px;
}


.values-grid article {
    min-height: 330px;

    padding:
        40px
        28px;

    text-align: left;

    border:
        1px solid var(--border);

    border-radius: 26px;

    background:
        rgba(255, 255, 255, 0.018);
}


.values-grid article > span {
    color: var(--pink);

    font-size: 50px;
}


.values-grid h3 {
    margin-top: 45px;

    color: var(--brown);

    font-size: 11px;

    letter-spacing: 2px;
}


.values-grid p {
    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}


.final-cta {
    text-align: center;

    padding:
        80px
        20px;
}


.final-cta > div {
    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 30px;
}


/* =========================================
   CONTACT
========================================= */

.contact-layout {
    width: min(
        1200px,
        92%
    );

    margin:
        0
        auto
        140px;

    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr;

    gap: 20px;
}


.contact-form-card {
    padding:
        45px
        40px;

    border:
        1px solid var(--border);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.02);
}


.contact-form-card h2 {
    margin:
        10px
        0
        30px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 50px;

    font-weight: 500;
}


.form-two-column {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 13px;
}


.form-field {
    margin-bottom: 17px;
}


.form-field label {
    display: block;

    margin-bottom: 9px;

    color: var(--brown);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding:
        15px
        15px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    outline: none;

    background:
        rgba(255, 255, 255, 0.025);

    color: white;

    font-family:
        "DM Sans",
        sans-serif;
}


.form-field select option {
    background: #120b0e;
}


.form-field textarea {
    min-height: 150px;

    resize: vertical;
}


.contact-submit {
    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 100px;

    background: var(--pink);

    color: #2b161e;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    cursor: pointer;
}


.contact-success {
    display: none;

    margin-top: 17px;

    text-align: center;

    color: var(--pink);
}


.contact-success.show {
    display: block;
}


.contact-cards {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.contact-cards article {
    flex: 1;

    padding:
        30px
        27px;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.018);
}


.contact-cards article > span {
    color: var(--pink);

    font-size: 35px;
}


.contact-cards h3 {
    margin-top: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 26px;
}


.contact-cards article > p:not(.section-label) {
    margin-top: 10px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}


.contact-cards a {
    display: inline-block;

    margin-top: 15px;

    color: var(--pink);

    font-size: 10px;
}


.faq-section {
    width: min(
        850px,
        90%
    );

    margin:
        0
        auto
        140px;

    text-align: center;
}


.faq-section details {
    padding:
        20px
        0;

    text-align: left;

    border-bottom:
        1px solid var(--border);
}


.faq-section details:first-of-type {
    margin-top: 45px;

    border-top:
        1px solid var(--border);
}


.faq-section summary {
    cursor: pointer;

    color: #eadbe0;
}


.faq-section details p {
    margin-top: 15px;

    color: var(--muted);

    line-height: 1.8;

    font-size: 12px;
}


/* =========================================
   SINGLE PRODUCT
========================================= */

.single-product {
    width: min(
        1300px,
        92%
    );

    margin: auto;

    padding:
        90px
        0
        130px;

    display: grid;

    grid-template-columns:
        1fr
        0.9fr;

    gap: 80px;

    align-items: start;
}


.single-product-image {
    width: 100%;

    aspect-ratio: 1 / 1.05;

    border-radius: 35px;

    display: flex;

    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle,
            #ffeaf0,
            #d997ad,
            #67404d
        );
}


.large-product-bottle {
    width: 43%;
    height: 53%;

    border-radius:
        28px
        28px
        55px
        55px;

    background:
        linear-gradient(
            145deg,
            #fff7fa,
            #eeb6c8
        );

    color: #8e5266;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow:
        0
        40px
        80px
        rgba(57, 25, 38, 0.3);

    animation:
        logoFloat
        5s
        ease-in-out
        infinite;
}


.large-product-bottle strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

    letter-spacing: 2px;
}


.large-product-bottle small {
    margin-top: 12px;

    font-size: 7px;

    line-height: 1.6;

    letter-spacing: 1.5px;
}


.single-product-right {
    padding-top: 10px;
}


.back-link {
    display: inline-block;

    margin-bottom: 35px;

    color: #79676d;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 1.5px;
}


.single-product-right h1 {
    margin-top: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            52px,
            6vw,
            82px
        );

    font-weight: 500;

    line-height: 0.95;
}


.single-product-right h1 span {
    display: block;

    color: var(--pink);

    font-style: italic;
}


.single-price {
    margin-top: 25px;

    color: var(--brown);

    font-size: 24px;

    font-weight: 600;
}


.rating {
    margin-top: 13px;

    color: var(--pink);

    letter-spacing: 2px;
}


.rating span {
    color: var(--muted);

    font-size: 10px;
}


.single-description {
    margin-top: 25px;

    color: var(--muted);

    line-height: 1.9;

    white-space: pre-line;
}


.single-benefits {
    margin-top: 25px;

    padding:
        20px
        0;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


.single-benefits p {
    margin: 10px 0;

    color: #ac979d;

    font-size: 9px;

    letter-spacing: 1.4px;
}


.quantity-section {
    margin-top: 25px;
}


.quantity-section label {
    display: block;

    margin-bottom: 10px;

    color: var(--brown);

    font-size: 8px;

    letter-spacing: 2px;
}


.quantity-control {
    width: 130px;
    height: 44px;

    border:
        1px solid
        rgba(247, 184, 204, 0.3);

    border-radius: 100px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    overflow: hidden;
}


.quantity-control button {
    width: 42px;
    height: 100%;

    border: none;

    background: transparent;

    color: var(--pink);

    font-size: 18px;

    cursor: pointer;
}


.single-add-button,
.buy-now-button {
    width: 100%;

    padding: 16px;

    border-radius: 100px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    cursor: pointer;
}


.single-add-button {
    margin-top: 27px;

    border: none;

    background: var(--pink);

    color: #2b161e;
}


.buy-now-button {
    margin-top: 10px;

    border:
        1px solid
        rgba(247, 184, 204, 0.3);

    background: transparent;

    color: var(--pink);
}


.delivery-message {
    margin:
        17px
        0
        25px;

    color: #76656a;

    text-align: center;

    font-size: 8px;

    letter-spacing: 1.5px;
}


.product-details details {
    padding:
        19px
        0;

    border-top:
        1px solid var(--border);
}


.product-details details:last-child {
    border-bottom:
        1px solid var(--border);
}


.product-details summary {
    cursor: pointer;

    color: #dfcfd4;

    font-size: 9px;

    letter-spacing: 2px;
}


.product-details details p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;
}


.related-section {
    width: min(
        1200px,
        92%
    );

    margin:
        0
        auto
        140px;

    text-align: center;
}


.related-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;

    margin-top: 45px;

    text-align: left;
}


.related-grid a {
    text-decoration: none;
}


.related-image {
    aspect-ratio: 4 / 5;

    border-radius: 24px;

    display: grid;

    place-items: center;

    margin-bottom: 15px;

    background:
        radial-gradient(
            circle,
            #f6d2dc,
            #bd7e94,
            #54343f
        );

    color: #754859;

    font-family:
        "Playfair Display",
        serif;

    font-size: 23px;
}


.related-grid h3,
.related-grid p {
    color: var(--brown);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: min(
        1400px,
        94%
    );

    margin: auto;

    padding:
        70px
        20px
        30px;

    border-top:
        1px solid var(--border);

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 40px;
}


.footer-brand {
    color: var(--pink);

    font-family:
        "Playfair Display",
        serif;

    font-size: 35px;
}


.site-footer h4 {
    margin-bottom: 18px;

    color: var(--brown);

    font-size: 9px;

    letter-spacing: 2px;
}


.site-footer a {
    display: block;

    margin-bottom: 10px;

    color: #86747a;

    text-decoration: none;

    font-size: 11px;
}


.site-footer a:hover {
    color: var(--pink);
}


.footer-bottom {
    grid-column:
        1 / -1;

    padding-top: 25px;

    margin-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    color: #625359;

    font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 9px;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .bundle-card {
        grid-template-columns: 1fr;
    }

    .bundle-card:nth-child(even)
    .bundle-visual,
    .bundle-card:nth-child(even)
    .bundle-info {
        order: initial;
    }

    .night-hero {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .night-hero > div:first-child > p:not(.section-label) {
        margin-left: auto;
        margin-right: auto;
    }

    .routine-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .story-columns {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .single-product {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .navbar {
        height: 70px;

        grid-template-columns:
            1fr
            auto;

        padding:
            0
            18px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;

        border: none;

        background: transparent;

        color: var(--pink);

        font-size: 24px;
    }

    .mobile-navigation.open {
        display: flex;

        flex-direction: column;

        position: absolute;

        top: 108px;
        left: 0;

        width: 100%;

        z-index: 100;

        padding: 25px;

        gap: 18px;

        background:
            rgba(5, 3, 4, 0.98);

        border-bottom:
            1px solid var(--border);
    }

    .mobile-navigation a {
        color: white;

        text-decoration: none;

        font-size: 11px;

        letter-spacing: 2px;
    }

    .home-category-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap:
            35px
            10px;
    }

    .product-image {
        border-radius: 17px;
    }

    .product-description {
        display: none;
    }

    .home-banner {
        min-height: 300px;

        padding:
            45px
            20px;
    }

    .home-banner > span {
        display: none;
    }

    .bundle-visual {
        min-height: 400px;
    }

    .routine-grid {
        grid-template-columns: 1fr;
    }

    .form-two-column {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding:
            30px
            20px;
    }

    .related-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .site-footer {
        grid-template-columns:
            1fr
            1fr;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

}

/* =========================================
   CART PAGE
========================================= */

.cart-page {
    width: min(1350px, 94%);
    margin: auto;
    padding: 80px 0 140px;
}


.cart-page-header {
    text-align: center;
    margin-bottom: 70px;
}


.cart-page-header h1 {
    margin-top: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(55px, 7vw, 95px);

    font-weight: 500;
    line-height: 0.95;
}


.cart-page-header h1 span {
    display: block;

    color: var(--pink);
    font-style: italic;
}


.cart-page-header > p:last-child {
    margin-top: 20px;

    color: var(--muted);
}


.cart-layout {
    display: grid;

    grid-template-columns:
        1.35fr
        0.65fr;

    gap: 50px;

    align-items: start;
}


/* ITEMS SIDE */

.cart-products-area {
    min-height: 400px;
}


.cart-products-heading {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-bottom: 18px;

    border-bottom:
        1px solid var(--border);
}


.cart-products-heading h2 {
    color: var(--brown);

    font-size: 11px;

    letter-spacing: 2px;
}


.cart-products-heading span {
    color: #716066;

    font-size: 9px;

    letter-spacing: 1.5px;
}


/* CART ITEM */

.cart-page-item {
    display: grid;

    grid-template-columns:
        135px
        1fr
        auto;

    gap: 22px;

    padding:
        25px
        0;

    border-bottom:
        1px solid var(--border);

    align-items: center;
}


.cart-page-item-image {
    width: 135px;
    height: 155px;

    border-radius: 20px;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle,
            #ffe6ee,
            #ce8ca2,
            #62404c
        );

    color: #734556;

    font-family:
        "Playfair Display",
        serif;

    font-size: 12px;

    text-align: center;
}


.cart-page-item-info h3 {
    color: var(--brown);

    font-size: 15px;
}


.cart-page-item-info > p {
    margin-top: 6px;

    color: #77666c;

    font-size: 10px;
}


.cart-page-remove {
    margin-top: 14px;

    border: none;

    background: transparent;

    color: #7e6b71;

    text-decoration: underline;

    font-size: 9px;

    cursor: pointer;
}


.cart-page-remove:hover {
    color: var(--pink);
}


/* QUANTITY */

.cart-page-quantity {
    width: 115px;
    height: 38px;

    margin-top: 16px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    border:
        1px solid var(--border);

    border-radius: 100px;

    overflow: hidden;
}


.cart-page-quantity button {
    width: 36px;
    height: 100%;

    border: none;

    background: transparent;

    color: var(--pink);

    font-size: 16px;

    cursor: pointer;
}


.cart-page-quantity span {
    font-size: 11px;
}


.cart-page-item-price {
    color: var(--brown);

    font-size: 15px;

    white-space: nowrap;
}


/* EMPTY CART */

.cart-page-empty {
    display: none;

    min-height: 450px;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}


.cart-page-empty.show {
    display: flex;
}


.cart-page-empty > span {
    color: var(--pink);

    font-size: 110px;

    text-shadow:
        0 0 35px
        rgba(247, 184, 204, 0.35);

    animation:
        moonFloat
        5s
        ease-in-out
        infinite;
}


.cart-page-empty h2 {
    margin-top: 20px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 35px;
}


.cart-page-empty p {
    margin:
        10px
        0
        25px;

    color: var(--muted);
}


/* SUMMARY */

.order-summary {
    position: sticky;

    top: 25px;

    padding:
        35px
        30px;

    border:
        1px solid var(--border);

    border-radius: 27px;

    background:
        rgba(255, 255, 255, 0.02);
}


.order-summary h2 {
    margin-top: 8px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 37px;

    font-weight: 500;
}


.cart-delivery-box {
    margin:
        25px
        0;

    padding:
        17px;

    border-radius: 15px;

    background:
        rgba(247, 184, 204, 0.045);

    border:
        1px solid
        rgba(247, 184, 204, 0.1);
}


.cart-delivery-text {
    color: #a69197;

    font-size: 10px;

    line-height: 1.5;
}


.cart-progress {
    width: 100%;
    height: 5px;

    margin-top: 12px;

    background:
        rgba(255, 255, 255, 0.08);

    border-radius: 100px;

    overflow: hidden;
}


.cart-progress-fill {
    width: 0%;
    height: 100%;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            #d989a4,
            #ffd9e4
        );

    transition: 0.35s;
}


.summary-row {
    display: flex;

    justify-content: space-between;

    margin:
        17px
        0;

    color: #a8949a;

    font-size: 11px;
}


.summary-row strong {
    color: var(--brown);
}


.summary-divider {
    height: 1px;

    background: var(--border);

    margin: 20px 0;
}


.summary-total {
    font-size: 15px;
}


.summary-total strong {
    font-size: 21px;
}


.cart-checkout-link {
    width: 100%;

    margin-top: 25px;

    padding: 16px;

    display: block;

    border-radius: 100px;

    background: var(--pink);

    color: #2b161e;

    text-align: center;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    transition: 0.25s;
}


.cart-checkout-link:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(247, 184, 204, 0.16);
}


.continue-shopping-link {
    display: block;

    margin-top: 15px;

    text-align: center;

    color: #7d6b71;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 1px;
}


.continue-shopping-link:hover {
    color: var(--pink);
}


.secure-checkout {
    margin-top: 25px;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    color: #65565b;

    font-size: 8px;

    letter-spacing: 1.5px;
}


/* =========================================
   CHECKOUT
========================================= */

.checkout-header {
    max-width: 1300px;

    height: 100px;

    margin: auto;

    padding:
        0
        30px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    border-bottom:
        1px solid var(--border);
}


.checkout-header img {
    width: 190px;

    max-height: 75px;

    object-fit: contain;
}


.checkout-header > a:last-child {
    color: #8f7b82;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 1.5px;
}


.checkout-page {
    width: min(1250px, 92%);

    margin: auto;

    padding:
        70px
        0
        120px;

    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    gap: 70px;

    align-items: start;
}


.checkout-form-section h1 {
    margin-top: 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            50px,
            6vw,
            78px
        );

    font-weight: 500;

    line-height: 0.95;
}


.checkout-form-section h1 span {
    display: block;

    color: var(--pink);

    font-style: italic;
}


.checkout-form-section form {
    margin-top: 50px;
}


.checkout-section {
    margin-bottom: 45px;
}


.checkout-section h2 {
    margin-bottom: 20px;

    color: var(--brown);

    font-family:
        "Playfair Display",
        serif;

    font-size: 29px;

    font-weight: 500;
}


.checkout-field {
    margin-bottom: 15px;
}


.checkout-field label {
    display: block;

    margin-bottom: 8px;

    color: var(--brown);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.checkout-field input,
.checkout-field select {
    width: 100%;

    padding:
        15px
        16px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    outline: none;

    background:
        rgba(255, 255, 255, 0.025);

    color: white;
}


.checkout-field select option {
    background: #120a0d;
}


.checkout-field input:focus,
.checkout-field select:focus {
    border-color:
        rgba(247, 184, 204, 0.6);
}


/* DELIVERY */

.delivery-option {
    width: 100%;

    padding:
        18px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    border:
        1px solid
        rgba(247, 184, 204, 0.35);

    border-radius: 15px;

    background:
        rgba(247, 184, 204, 0.035);
}


.delivery-option > div {
    display: flex;

    align-items: center;

    gap: 12px;
}


.delivery-option input {
    accent-color: var(--pink);
}


.delivery-option span {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.delivery-option strong {
    color: #e9d9de;

    font-size: 11px;
}


.delivery-option small {
    color: #75646a;

    font-size: 9px;
}


/* PAYMENT PLACEHOLDER */

.payment-placeholder {
    padding:
        35px
        25px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.018);
}


.payment-placeholder > span {
    color: var(--pink);

    font-size: 45px;
}


.payment-placeholder h3 {
    margin-top: 13px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 26px;
}


.payment-placeholder p {
    max-width: 430px;

    margin:
        10px
        auto
        0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;
}


.place-order-button {
    width: 100%;

    padding: 17px;

    border: none;

    border-radius: 100px;

    background: var(--pink);

    color: #2b161e;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    cursor: pointer;
}


.checkout-warning {
    margin-top: 12px;

    text-align: center;

    color: #6c5c61;

    font-size: 9px;
}


/* CHECKOUT SUMMARY */

.checkout-order-summary {
    position: sticky;

    top: 25px;

    padding:
        35px
        30px;

    border:
        1px solid var(--border);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, 0.02);
}


.checkout-item {
    display: grid;

    grid-template-columns:
        75px
        1fr
        auto;

    gap: 13px;

    align-items: center;

    padding:
        16px
        0;

    border-bottom:
        1px solid
        rgba(247, 184, 204, 0.08);
}


.checkout-item-image {
    width: 75px;
    height: 82px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        radial-gradient(
            circle,
            #ffe5ed,
            #ce8ba1,
            #62404c
        );

    color: #754858;

    font-size: 8px;

    text-align: center;
}


.checkout-item h3 {
    color: var(--brown);

    font-size: 11px;
}


.checkout-item p {
    margin-top: 4px;

    color: #77666b;

    font-size: 9px;
}


.checkout-item-price {
    color: var(--brown);

    font-size: 11px;
}


.checkout-summary-divider {
    height: 1px;

    margin:
        20px
        0;

    background: var(--border);
}


/* TABLET */

@media (max-width: 900px) {

    .cart-layout,
    .checkout-page {
        grid-template-columns: 1fr;
    }


    .order-summary,
    .checkout-order-summary {
        position: static;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .cart-page-item {
        grid-template-columns:
            90px
            1fr;
    }


    .cart-page-item-image {
        width: 90px;
        height: 110px;
    }


    .cart-page-item-price {
        grid-column: 2;

        margin-top: -10px;
    }


    .checkout-header img {
        width: 140px;
    }


    .checkout-header {
        padding:
            0
            15px;
    }

}

/* =========================================
   DYNAMIC PRODUCT PAGE
========================================= */

.dynamic-product-visual {
    width: 43%;
    height: 53%;

    border-radius:
        28px
        28px
        50px
        50px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;

    background:
        linear-gradient(
            145deg,
            #fff8fa,
            #eeb7c8
        );

    color: #8e5266;

    box-shadow:
        0
        40px
        80px
        rgba(
            57,
            25,
            38,
            0.3
        );

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

    letter-spacing: 2px;

    animation:
        logoFloat
        5s
        ease-in-out
        infinite;
}


.dynamic-product-visual span {
    display: block;

    margin-top: 10px;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 8px;

    letter-spacing: 2px;

    line-height: 1.5;
}


/* SIZE */

.product-size-section {
    margin-top: 25px;
}


.product-size-section label {
    display: block;

    margin-bottom: 10px;

    color: var(--brown);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;
}


.product-size-buttons {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}


.product-size-buttons button {
    width: 48px;
    height: 42px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        transparent;

    color: #bba7ad;

    cursor: pointer;

    transition: 0.2s;
}


.product-size-buttons button:hover,
.product-size-buttons button.selected {
    background: var(--pink);

    color: #2b161e;

    border-color: var(--pink);
}


/* PRODUCT LINK */

.product-link {
    display: block;

    text-decoration: none;
}


.product-link h3 {
    transition: 0.2s;
}


.product-link:hover h3 {
    color: var(--pink);
}


/* SPECIAL PRODUCT VISUALS */

.dynamic-product-visual.serum-shape {
    width: 33%;
    height: 55%;

    border-radius: 18px;
}


.dynamic-product-visual.spray-shape {
    width: 31%;
    height: 57%;

    border-radius: 15px;
}


.dynamic-product-visual.lip-shape {
    width: 20%;
    height: 60%;

    border-radius: 50px;
}


.dynamic-product-visual.mask-shape {
    width: 58%;
    height: 66%;

    border-radius: 35px;

    font-size: 50px;
}


.dynamic-product-visual.symbol-shape {
    width: 55%;
    height: 55%;

    border-radius: 35px;

    font-size: 100px;

    background:
        rgba(
            255,
            218,
            230,
            0.18
        );

    color: #ffe8f0;

    text-shadow:
        0
        0
        30px
        rgba(
            255,
            213,
            229,
            0.6
        );
}


.dynamic-product-visual.light-shape {
    width: 55%;
    height: 55%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #ffe8f0,
            rgba(
                247,
                184,
                204,
                0.45
            ) 45%,
            transparent 70%
        );

    color: #ffe2ec;

    font-size: 130px;

    text-shadow:
        0
        0
        30px
        rgba(
            255,
            220,
            232,
            0.9
        ),
        0
        0
        80px
        rgba(
            247,
            184,
            204,
            0.7
        );
}

/* =========================================
   PAYMENT RESULT PAGES
========================================= */

.payment-result {

    min-height:
        calc(
            100vh - 38px
        );

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding:
        50px
        20px;

}


.payment-result > div {

    max-width:
        800px;

}


.payment-result > div > span {

    display: block;

    margin-bottom:
        20px;

    color:
        var(--pink);

    font-size:
        80px;

    text-shadow:

        0 0 40px

        rgba(
            247,
            184,
            204,
            0.35
        );

}


.payment-result h1 {

    margin-top:
        12px;

    font-family:
        "Playfair Display",
        serif;

    font-size:

        clamp(
            55px,
            8vw,
            100px
        );

    font-weight:
        500;

    line-height:
        0.95;

}


.payment-result h1 em {

    display:
        block;

    color:
        var(--pink);

    font-weight:
        500;

}


.payment-result p:not(
    .section-label
) {

    max-width:
        520px;

    margin:

        25px
        auto
        30px;

    color:
        var(--muted);

    line-height:
        1.8;

}