:root {
    --old-rws-red: #C31E38;
    --rws-red: rgba(255, 0, 51, 1);
    --rws-gray: rgba(35, 32, 38, 1);
    --body-bg: rgba(242, 242, 242, 1);
    --clr-light-gray: #C2C9D1;
    --clr-white: #FFFFFF;
    --text-clr: #232026;
    --gutter: clamp(1.25rem, -1.058rem + 6.41vw, 3.75rem);
    --section-spacing: clamp(3.75rem, -0.587rem + 9.036vw, 5.625rem);
}

@font-face {
    font-family: "PPNeueMontreal Medium";
    font-weight: normal;
    font-style: normal;
    src: url("/fonts/PPNeueMontreal-Medium.woff");
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.5;
    font-family: 'PPNeueMontreal Medium', Arial, sans-serif;
    background-color: var(--body-bg) !important;
    color: var(--text-clr);
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.nowrap {
    white-space: nowrap;
    color: inherit;
}

.header {
    border-bottom: 1px solid var(--clr-light-gray);
    padding: calc(var(--gutter) / 3) var(--gutter);
}

.header__logo {
    width: 65px;
    height: auto;

    @media screen and (max-width: 768px) {
        width: 20px;
    }
}

.hero {
    background-image: url(/images/Fall2025/hero-bg.png);
    background-size: 100% 100%;
    background-position: center;
    padding: var(--section-spacing) var(--gutter);
    text-align: center;
}

.hero--promotion {
    background-image: radial-gradient(ellipse at bottom left, transparent 32%, var(--body-bg) 42%), url(/images/Fall2025/grid-graph.png), url(/images/Fall2025/hero-bg.png);
    padding-block-end: 0;

}

.hero__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.hero__callout-wrapper {
    text-align: left;
    width: 70%;
    max-width: 769px;
    margin: 0 auto;

    @media screen and (max-width: 768px) {
        max-width: 70%;
    }
}

.hero__lockup {
    width: 100%;
    height: auto;
}

.hero--promotion .hero__lockup {
    margin-block-end: 10%;
}

.hero__lede {
    font-family: "PPNeueMontreal Medium", sans-serif;
    font-size: clamp(0.938rem, -1.688rem + 7vw, 3.125rem);
    margin-bottom: 1rem;
}

.hero__media-wrapper {
    margin-block-start: -4rem;

    @media screen and (max-width: 768px) {
        margin-block-start: -2rem;
    }
}

.hero__media-wrapper--promotion {
    width: 100vw;
    max-width: calc(100vw - (100vw - 100%) / 2);
    position: relative;
    aspect-ratio: 1106/543;
    right: 7px;

    @media screen and (max-width: 768px) {
       left: 0px;
    }
}

.hero__media {
    width: 100%;
    height: auto;
}

.hero__media--promotion {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
}

.hero__form-wrapper {
    max-width: 866px;
    margin: 0 auto;
}

.hero__form-lede {
    font-size: clamp(1rem, -0.95rem + 5.2vw, 2.625rem);
    color: var(--rws-red);
    line-height: 1.1;
}

.hero__form-instruction {
    font-size: clamp(0.75rem, -0.525rem + 3.4vw, 1.813rem);
    color: var(--rws-red);
    line-height: 1.1;
}

.hero__form-exception {
    font-size: clamp(0.75rem, -0.525rem + 3.4vw, 1.813rem);
}

.hero__email-signup {
    display: flex;
    flex-direction: column;
    grid-gap: 0;
    align-items: center;
    margin-block-start: 3rem;
}

.hero__email-signup .error {
    display: none;
    color: #f00;
    font-style: italic;
    padding: 10px 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
}

.post-code {
    width: 90%;
}

.email-capture__input-wrapper,
.post-code__input-wrapper {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-gap: 0;
    align-items: center;
    width: 100%;
    /* @media screen and (max-width: 768px) {
        grid-template-columns: 1fr;
    } */
}

.email-capture__input,
.post-code__input {
    /* flex: 1; */
    padding: 0.75rem;
    font-size: clamp(0.75rem, -0.75rem + 4vw, 2rem);
    border: 3px solid var(--clr-light-gray);
}

.post-code__input {
    font-size: clamp(1rem, 0.711rem + 0.602vw, 1.125rem);
}

.email-capture__input::placeholder,
.post-code__input::placeholder {
    color: var(--text-clr);
}

.email-capture__submit,
.post-code__submit {
    width: fit-content;
    background: var(--text-clr);
    color: var(--clr-white);
    padding: 0.75rem 3em;
    font-size: clamp(0.75rem, -0.75rem + 4vw, 2rem);
    border: 3px solid var(--text-clr);

    @media screen and (max-width: 768px) {
        width: 100%;
    }
}

.post-code__submit {
    padding: 0.75rem 2rem;
    font-size: clamp(1rem, 0.711rem + 0.602vw, 1.125rem);
}

.right-fit {
    background-color: var(--rws-gray);
    background-image: url(/images/Fall2025/line-graph.png);
    background-position: top left;
    background-repeat: no-repeat;
    padding: 4rem var(--gutter);
    color: var(--clr-white);
    padding-bottom: 1.5rem;

    @media screen and (max-width: 768px) {
        background-image: none;
        padding-bottom:4rem;
    }
}

.right-fit__inner {
    max-width: 1030px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 6rem;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        grid-gap: 3rem;
        padding-left: 2rem;
        padding-right: 1.5rem;
    }
}

.right-fit__media-wrapper {
    width: 100%;
    max-width: 427px;

    @media screen and (max-width: 768px) {
        max-width: 60%;
        min-width: 270px;
    }
}

.right-fit__media {
    width: 100%;
    height: auto;
}

.right-fit__title {
    /*font-size: clamp(2rem, 2.289rem + -0.602vw, 1.875rem);*/
    font-size: 30px;
    margin-block-end: 1rem;
    font-weight: 500;
    line-height: 1.1;
    color: #F2F2F2;
}

@media (max-width: 768px) {
    .right-fit__title {
        font-size: 32px;
    }
}

.right-fit__description {
    margin-block-end: 1rem;
    color: #F2F2F2;
}

.right-fit__benefits-list {
    list-style: square; /*Original is disc*/
    padding-inline-start: 2rem; /*Original 1.5rem*/
    line-height: 1.5;
    color: #F2F2F2;
}

.right-fit__benefits-list li {
    padding: 0.3rem;
}

.promotion {
    background: var(--rws-gray);
    padding: var(--section-spacing) var(--gutter);
}

.promotion__inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.promotion-card {
    background: var(--clr-white);
    border-radius: 20px;
    overflow: clip;
}

.promotion-card__media-wrapper {
    aspect-ratio: 600/244;
    position: relative;
}

.promotion-card__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    inset: 0;
}

.promotion-card__content-wrapper {
    font-family: "PPNeueMontreal Medium", sans-serif;
    padding: calc(var(--gutter) / 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.promotion-card__title {
    font-family: "PPNeueMontreal Medium", sans-serif;
    font-size: 2rem;
    line-height: 1.0; /*modified to 1.0 --Original is 1.2*/
    font-weight: 500;
    color: var(--rws-red);
    margin: 0;
}

.promotion-card__lede {
    font-family: "PPNeueMontreal Medium", sans-serif;
    margin-block-start: calc((1.5rem / 2) * -1);
    font-size: 1.125rem;
}

.promotion-card__barcode {
    max-width: 100%;
    height: auto;
}

.promotion-card__terms {
    font-family: "PPNeueMontreal Medium", sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
}

.promotion-card__terms-link {
    color: inherit;
}

.promotion-card__button {
    font-family: "PPNeueMontreal Medium", sans-serif;
    color: var(--clr-white);
    background: var(--text-clr);
    padding: 0.75rem 2rem;
    text-transform: capitalize;
    text-decoration: none;
}

/*.store-locator {
    padding: var(--section-spacing) var(--gutter);
}

.store-locator__inner {
    max-width: 1070px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;

    @media screen and (max-width: 768px) {
        gap: 1.5rem;
    }
}

.store-locator__search-container {
    max-width: 486px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-gap: 1.5rem;
}

.store-locator__title {
    font-size: clamp(1.75rem, -0.274rem + 4.217vw, 2.625rem);
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

.store-locator__location-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 0;
    width: 100%;

    @media screen and (max-width: 768px) {
        grid-template-columns: 1fr;
    }
}

.store-locator__location-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-locator__location-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .625rem .5rem;
    font-size: 1.125rem;
    background: var(--clr-white);
    position: relative;
}

    .store-locator__location-item:nth-child(odd) {
        background: var(--body-bg);
    }

.store-locator__map-link {
    color: var(--rws-red);
    text-decoration: none;
}

    .store-locator__map-link::after {
        position: absolute;
        width: 100%;
        height: 100%;
        content: '';
        inset: 0;
    }

.store-locator__map-icon {
    width: 12px;
    height: 12px;
}

.store-locator__location-map-wrapper {
    position: relative;

    @media screen and (max-width: 768px) {
        aspect-ratio: 1/1;
    }
}

.store-locator__location-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
}*/

.footer {
    padding-inline: var(--gutter);
    padding-block: calc(var(--section-spacing) / 2);

    @media screen and (max-width: 768px) {
        padding-block-start: 0;
    }
}

.footer__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-block-start: 2.25rem;
    border-top: 1px solid var(--clr-light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        align-items: flex-start;
        border-top: none;
    }
}

.footer__content-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.75rem;
    flex-shrink: 0;
}

.footer__logo {
    width: 81px;
    height: auto;
}

.footer__address {
    text-transform: uppercase;
    line-height: 1;
    color: #000000;
}

.footer__disclaimer {
    max-width: 781px;
}

.footer__disclaimer-text {
    font-size: .75rem;
    line-height: 1.2;
    color: #000000;
}

/* In Store Styles */
.in-store {
    background-image: url(/images/Fall2025/in-store-footer-gradient.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
}

.in-store-acc .hero {
    background-image: url(/images/Fall2025/measurement-bg.png), url(/images/Fall2025/in-store-hero.png);
    background-position: -45px 20px, top left;
    background-size: 434px 34px, auto;
    background-repeat: repeat-x, no-repeat;
    padding-block-end: 0;
}

.in-store .hero__form-lede {
    color: var(--text-clr);
}

.in-store .hero__email-signup {
    margin-block-start: 2em;
}

.in-store .email-capture__input {
    border-color: var(--text-clr);
}

.in-store .promotion-card {
    background: transparent;
    border-radius: 0;
    margin-block-start: 2em;
}

.in-store .promotion-card__media-wrapper {
    aspect-ratio: unset;
    max-width: 737px;
    margin: 0 auto;
}

.in-store .promotion-card__media {
    position: static;
}

.in-store .promotion-card__title {
    color: var(--text-clr);
    text-transform: uppercase;
}

.in-store .promotion-card__terms {
    color: var(--text-clr);
}


/*Added below for overlay function when clicking "Email Me This Offer"*/
.email-text {
    background: #EDE8DD;
    position: fixed;
    padding: 15px 20px;
    opacity: 0;
    transition: all .25s;
    pointer-events: none;
    width: 315px;
    box-sizing: border-box;
    margin-top: -50px;
    height: 0;
    overflow: hidden;
    z-index: 101;
    left: calc(50% - 155px);
    top: calc(50% - 220px) !important;
    font-family: 'PPNeueMontreal Medium', sans-serif;
}

@media (min-width: 768px) {
    .email-text {
        width: 400px;
        left: 0;
        padding: 21px 36px;
        position: fixed;
        left: calc(50% - 200px);
        top: calc(50% - 245px) !important;
        margin: 0;
    }
}

.open .email-text {
    opacity: 1;
    pointer-events: all;
    height: 440px;
    width: 315px;
}

@media (min-width: 768px) {
    .open .email-text {
        height: 490px;
        width: 400px;
    }
}

.email-text a.close {
    position: absolute;
    top: 15px;
    right: 20px;
}

    .email-text a.close:focus {
        border: 1px dotted #000;
    }

@media (min-width: 768px) {
    .email-text a.close {
        top: 21px;
        right: 36px;
    }
}

.email-text a.close img {
    width: 18px;
}

.email-text p {
    font-size: 18px !important;
    line-height: 20px !important;
    color: #252828 !important;
    text-transform: uppercase;
    width: calc(100% - 30px) !important;
    text-align: left;
    margin: 0 0 20px !important;
    font-family: "PPNeueMontreal Medium", sans-serif;
}

@media (min-width: 768px) {
    .email-text p {
        font-size: 22px !important;
        line-height: 26px !important;
        width: calc(100% - 38px) !important;
    }
}

.email-text p.or {
    width: 100% !important;
    text-align: center;
}

    .email-text p.or:before, .email-text p.or:after {
        content: "";
        display: inline-block;
        width: calc(50% - 50px);
        border: 1px solid #000;
        position: relative;
        top: -6px;
        margin: 0 12px;
    }

.email-text form {
    margin: 0;
}

    .email-text form label {
        font-size: 14px;
        color: #252828;
        text-transform: uppercase;
        display: block;
        text-align: left;
        margin-bottom: 8px;
        height: 30px;
        font-family: "PPNeueMontreal Medium", sans-serif;
    }

    .email-text form input[type="text"] {
        background: #FFFFFF;
        border: 1px solid #D8D8D8;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
        padding: 10px 20px;
        height: 50px;
        display: inline-block;
        box-sizing: border-box;
        margin: 0 -10px 15px 0;
        width: calc(100% - 90px);
        transition: all .25s;
        font-family: 'PPNeueMontreal Medium', sans-serif;
    }

    .email-text form input[type="submit"] {
        text-transform: uppercase;
        color: #fff;
        font-family: "PPNeueMontreal Bold", sans-serif;
        background: #C8102E;
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        padding: 10px 20px;
        height: 50px;
        display: inline-block;
        box-sizing: border-box;
        margin-bottom: 30px;
        border: 0;
        font-size: 16px;
        border: 1px solid #D8D8D8;
    }

        .email-text-loading {
            background-color: black !important;
        }

    .email-text form p.fine-print {
        font-size: 12px !important;
        line-height: 17px !important;
        text-transform: none;
        width: 100% !important;
    }

        .email-text form p.fine-print a {
            color: #C8102E;
        }

.overlay {
    display: none;
    background: #000;
    opacity: .8;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.open .overlay {
    display: block;
}

.errorMessage {
    display: none;
    color: #f00;
    font-size: 12px;
    font-style: italic;
}

.email-text form input[type="text"].success {
    background: #7e7;
}

.triggerLink {
    cursor: pointer;
}

.offer1 img {
    max-width: 100%;
}


/* Special override to ensure overlay elements are fixed */
.overlay.no-print {
    position: fixed !important;
    display: none !important;
    z-index: 100 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.email-text.no-print {
    position: fixed !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    overflow: hidden !important;
    z-index: 101 !important;
}

body.open .overlay.no-print {
    display: block !important;
}

body.open .email-text.no-print {
    opacity: 1 !important;
    pointer-events: all !important;
    height: 440px !important;
    width: 315px !important;
}

@media (min-width: 768px) {
    body.open .email-text.no-print {
        height: 490px !important;
        width: 400px !important;
    }
}

.store-locator-ufe {
    padding: var(--section-spacing) var(--gutter);
    max-width: 1200px;
    margin: 0 auto;
}
.store-locator
{
    margin-bottom:0px !important;
}

.store-container-col div:nth-child(odd) {
    background-color: #FFFFFF;
}

.store-locator__search-container {
    max-width: 486px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-gap: 1.5rem;
}

.store-locator__title {
    font-size: clamp(1.75rem, -0.274rem + 4.217vw, 2.625rem);
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    color: #252828;
}

a.walletBtn {
    font-family: "PPNeueMontreal Medium", sans-serif;
}