html {
    font-family: 'Nunito', Arial, sans-serif;
    color: #1f1a17;
    background: #fffaf3;
}

body {
    margin: 0;
}

.GiftCardsPage {
    min-height: 100vh;
    color: #1f1a17;
    background: #fffaf3;
}

.GiftCardsHero {
    min-height: 520px;
    display: grid;
    align-items: end;
    padding: clamp(32px, 7vw, 86px);
    background:
        linear-gradient(90deg, rgba(20, 17, 15, 0.78), rgba(20, 17, 15, 0.2)),
        url('/Images/Home/boutiquebruxelles04.jpg') center / cover no-repeat;
    color: #fff;
}

.GiftCardsHero_Content {
    width: min(820px, 100%);
}

.GiftCardsHomeLink {
    display: inline-flex;
    margin-bottom: 26px;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.GiftCardsHomeLink:hover,
.GiftCardsHomeLink:focus {
    color: #f7c45f;
}

.GiftCardsHero_Eyebrow,
.GiftCardTier_Label,
.GiftCardsIntro_Callout span {
    margin: 0 0 12px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.GiftCardsHero h1 {
    margin: 0;
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
}

.GiftCardsHero p {
    width: min(680px, 100%);
    margin: 20px 0 0;
    font-size: 1.32rem;
    font-weight: 650;
    line-height: 1.45;
}

.GiftCardsHero_Actions,
.GiftCardsContact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.GiftCardsHero_Actions form,
.GiftCardTier form {
    margin: 0;
}

.GiftCardsButton {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 2px solid #1f1a17;
    color: #1f1a17;
    background: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    text-decoration: none;
}

.GiftCardsButton:hover,
.GiftCardsButton:focus {
    color: #1f1a17;
    background: #f7c45f;
    border-color: #f7c45f;
    text-decoration: none;
}

.GiftCardsButton_Primary {
    border-color: #f7c45f;
    background: #f7c45f;
}

.GiftCardsIntro,
.GiftCardsDetails {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
}

.GiftCardsIntro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 28px;
    padding: 62px 0 38px;
    align-items: center;
}

.GiftCardsIntro_Text h2,
.GiftCardsDetails h2 {
    margin: 0 0 14px;
    color: #c46d18;
    font-size: 2rem;
    font-weight: 850;
    text-transform: uppercase;
}

.GiftCardsIntro_Text p,
.GiftCardsDetails li,
.GiftCardTier p {
    font-size: 1.08rem;
    line-height: 1.55;
}

.GiftCardsIntro_Callout {
    padding: 22px;
    border-left: 5px solid #f7c45f;
    background: #fff;
}

.GiftCardsIntro_Callout strong {
    display: block;
    font-size: 1.25rem;
}

.GiftCardsTiers {
    width: min(1120px, calc(100% - 36px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 0 auto;
    padding: 30px 0 48px;
}

.GiftCardTier {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    border: 2px solid #1f1a17;
    background: #fff;
}

.GiftCardTier_Featured {
    border-color: #c46d18;
    box-shadow: 8px 8px 0 #f7c45f;
}

.GiftCardTier h2 {
    margin: 0;
    color: #1f1a17;
    font-size: 3.5rem;
    font-weight: 900;
}

.GiftCardTier p {
    margin: 12px 0 0;
}

.GiftCardsDetails {
    padding: 16px 0 72px;
}

.GiftCardsDetails ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    margin: 0;
    padding-left: 20px;
}

.GiftCardsContact {
    margin-top: 28px;
}

@media only screen and (max-width: 760px) {
    .GiftCardsHero {
        min-height: 460px;
        padding: 32px 18px;
    }

    .GiftCardsHero h1 {
        font-size: 2.7rem;
        line-height: 1.04;
    }

    .GiftCardsHero p {
        font-size: 1.08rem;
    }

    .GiftCardsIntro,
    .GiftCardsTiers,
    .GiftCardsDetails ul {
        grid-template-columns: 1fr;
    }

    .GiftCardsIntro {
        padding-top: 42px;
    }

    .GiftCardTier {
        min-height: 0;
        padding: 24px;
    }

    .GiftCardTier h2 {
        font-size: 2.7rem;
    }

    .GiftCardsButton {
        width: 100%;
    }
}
