
@font-face {
    font-family: 'Fellix';
    font-display: fallback;
    src: url('/synchrony/fonts/Fellix-Regular.woff2') format('woff2'),
         url('/synchrony/fonts/Fellix-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Fellix';
    font-display: fallback;
    src: url('/synchrony/fonts/Fellix-Medium.woff2') format('woff2'),
         url('/synchrony/fonts/Fellix-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Fellix';
    font-display: fallback;
    src: url('/synchrony/fonts/Fellix-Bold.woff2') format('woff2'),
         url('/synchrony/fonts/Fellix-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Fellix';
    font-display: fallback;
    src: url('/synchrony/fonts/Fellix-Black.woff2') format('woff2'),
         url('/synchrony/fonts/Fellix-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
body * {
    font-family: "Fellix", "Season Sans", "Synchrony Sans", Helvetica, sans-serif !important;
}
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    
    }

sup {
    font-size: 11px;
    line-height: 0;
    vertical-align: super;
   } 


/* === Nav Bar — Base / Mobile (below 767px) === */
.lowes-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: 'Fellix';
    overflow: visible;
}

.lowes-nav__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.9375rem;
    max-width: 1440px;
    margin: 0 auto;
    height: 56px;
    box-sizing: border-box;
}

.lowes-nav__logos {
    display: flex;
    align-items: center;
    height: 26px;
}

.lowes-nav__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.lowes-nav__logo-img {
    height: 26px;
    width: auto;
}

.lowes-nav__desktop-menu {
    display: none;
    align-items: center;
    margin-left: auto;
}

.lowes-nav__links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
}

.lowes-nav__link {
    color: #071D49;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.lowes-nav__link:hover {
    color: #012169;
    text-decoration: underline;
}

.lowes-nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lowes-nav__lang-toggle {
    display: none;
    align-items: center;
    position: relative;
    width: 114px;
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #90A1B9;
    border-radius: 9999px;
    box-sizing: border-box;
    flex-shrink: 0;
    padding: 0;
}

.lowes-nav__lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 28px;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.35px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    background: transparent;
    color: #071D49;
    text-decoration: none;
}

.lowes-nav__lang-btn--active {
    background: #071D49;
    color: #FFFFFF;
}

.lowes-nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.lowes-nav__hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #012169;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lowes-nav__hamburger[aria-expanded="true"] .lowes-nav__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lowes-nav__hamburger[aria-expanded="true"] .lowes-nav__hamburger-line:nth-child(2) {
    opacity: 0;
}

.lowes-nav__hamburger[aria-expanded="true"] .lowes-nav__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lowes-nav__mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #E0E0E0;
    z-index: 99;
    overflow: hidden;
}

.lowes-nav__mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 2.5rem;
}

.lowes-nav__mobile-menu[aria-hidden="false"] {
    display: flex;
}

.lowes-nav__mobile-link {
    display: block;
    padding: 0.75rem 0;
    color: #012169;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
    border-bottom: 1px solid #F0F0F0;
}

.lowes-nav__mobile-link:last-child {
    border-bottom: none;
}

.lowes-nav__mobile-link:hover {
    color: #F0B323;
}

.lowes-nav__mobile-divider {
    width: 100%;
    margin: 1rem 0;
    border: 0;
    border-top: 1px solid #D6DCE5;
}

.lowes-nav__mobile-lang-link {
    color: #012169;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: underline;
}

.lowes-nav__mobile-lang-link:hover {
    color: #071D49;
}

/* === Nav — Tablet (768px to 991px) === */
@media (min-width: 768px) and (max-width: 991px) {
    .lowes-nav__container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1.375rem 2.8125rem;
        height: auto;
        min-height: 88px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex-wrap: nowrap;
        gap: 0;
    }

    .lowes-nav__logos {
        position: relative;
        width: 420px;
        height: 44px;
        flex: none;
        order: 0;
        flex-grow: 0;
    }

    /* Synchrony logo — left, absolute */
    .lowes-nav__logos > a:first-child {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 195px;
        height: 44px;
        display: block;
    }

    .lowes-nav__logos > a:first-child .lowes-nav__logo-img {
        width: 195px;
        height: 44px;
        object-fit: contain;
    }

    /* Separator — absolutely positioned, CSS bar replaces the img */
    .lowes-nav__logos > div {
        position: absolute;
        left: 217px;
        top: 2px;
        width: 4px;
        height: 40px;
        background: #D1D5DC;
        border-radius: 9999px;
    }

    .lowes-nav__logo-separator {
        display: none;
    }

    /* Lowe's logo — right, absolute */
    .lowes-nav__logos > a:last-child {
        position: absolute;
        left: 246px;
        top: 2px;
        width: 175px;
        height: 40px;
        display: block;
    }

    .lowes-nav__logos > a:last-child .lowes-nav__logo-img {
        width: 175px;
        height: 40px;
        object-fit: contain;
    }

    .lowes-nav__desktop-menu {
        display: none;
    }

    .lowes-nav__links,
    .lowes-nav__lang-toggle {
        display: none;
    }

    .lowes-nav__actions {
        gap: 0;
    }

    .lowes-nav__hamburger {
        display: flex;
    }

    .lowes-nav__mobile-menu {
        display: none;
    }
}

/* === Nav — Desktop (992px+) === */
@media (min-width: 992px) {
    .lowes-nav__container {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 22px clamp(20px, 4.4vw, 64px);
        gap: clamp(20px, 5vw, 151px);
        width: 100%;
        max-width: 1440px;
        height: 88px;
        align-self: stretch;
        z-index: 0;
        box-sizing: border-box;
    }

    .lowes-nav__logos {
        gap: 26px;
        flex-shrink: 0;
    }

    .lowes-nav__logo-img {
        height: 44px;
    }

    .lowes-nav__desktop-menu {
        display: flex;
        flex: 1;
        min-width: 0;
        justify-content: flex-end;
    }

    .lowes-nav__links {
        display: flex;
        flex: 1;
        min-width: 0;
        height: 30px;
        gap: clamp(10px, 1.8vw, 31.5px);
        align-items: center;
        margin-left: 0;
        flex-wrap: nowrap;
    }

    .lowes-nav__link {
        font-size: clamp(13px, 1.25vw, 20px);
        line-height: 1.4;
        font-weight: 500;
        font-family: "Fellix", "Season Sans", "Synchrony Sans", Helvetica, sans-serif;
        white-space: nowrap;
    }

    .lowes-nav__actions {
        display: none;
    }

    .lowes-nav__lang-toggle {
        display: flex;
        margin-left: clamp(10px, 1.5vw, 30px);
        flex-shrink: 0;
    }

    .lowes-nav__hamburger {
        display: none;
    }

    .lowes-nav__mobile-menu {
        display: none !important;
    }
}

.lowes-banner {
    height: 600px;
    padding: 1rem 0;
    margin-bottom: 2rem;
    background-color: #071d49;
    box-sizing: border-box;
    background-image: linear-gradient(180deg, #071d49 0%, #012169cc 25%, #9bcbeb66 100%);
}

.lowes-inner-banner-section {
    display: grid;
    grid-template-columns: 37% 1fr;
    gap: 1.5rem;
    align-items: flex-end;
    color: white;
    height: 100%;
    margin-bottom: 30px;
}

.lowes-hero-card-wrapper {
    align-self: center;
    perspective: 1000px;
}

.lowes-hero-card-wrapper img {
    transition: transform 300ms cubic-bezier(0.03, 0.98, 0.52, 0.99);
    will-change: transform;
    transform-style: preserve-3d;
}

.lowes-banner-left-section {
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lowes-banner-left-section img {
    max-width: 100%;
    height: auto;
    display: block;
}




.lowes-banner-right-section {
    height: 100%;
    margin-left: -3rem;
    align-self: flex-end;
    overflow: hidden;
}

.lowes-banner-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    height: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lowes-banner-track::-webkit-scrollbar {
    display: none;
}

.lowes-banner-slide {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    justify-content: flex-end;
    align-items: flex-start;
    padding-inline: 0;
    padding-left: 1.75rem;
    overflow: hidden;
    box-sizing: border-box;
}

.lowes-heading-period {
    font-size: 36px;
}

.lowes-benefits-grid {
    display: grid;
    grid-template-columns: 25fr 22fr 23fr 30fr;
    gap: 6px;
    max-width: 880px;
    margin-left: 3rem;
}

.lowes-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lowes-benefit-title {
    font-weight: 700;
    font-size: 20px;
    margin-top: 4px;
    margin-bottom: 8px;
    text-align: center;
    max-width: 132px;
}

.lowes-benefit-desc {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    max-width: 188px;
    margin: 0;
}

@media (min-width: 1201px) {
    .lowes-banner-slide:nth-child(2) .lowes-benefit-item:nth-child(1) .lowes-benefit-desc {
        max-width: 11.75rem;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-item:nth-child(2) .lowes-benefit-desc {
        max-width: 10.5rem;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-item:nth-child(3) .lowes-benefit-desc {
        max-width: 11.25rem;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-item:nth-child(4) .lowes-benefit-desc {
        max-width: 14.75rem;
    }
    .lowes-banner-slide:nth-child(2) .lowes-benefit-item:nth-child(1) .lowes-benefit-title {
        max-width: 7.75rem;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-item:nth-child(2) .lowes-benefit-title {
        max-width: 10rem;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-item:nth-child(3) .lowes-benefit-title {
        max-width: 7rem;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-item:nth-child(4) .lowes-benefit-title {
        max-width: 7.75rem;
    }
}

.lowes-benefits-cta {
    display: flex;
    max-width: 880px;
    width: 100%;
    justify-content: center;
    padding-bottom: 14px;
    margin-top: -1rem;
    margin-left: 3rem;
}

.lowes-benefits-button {
    display: inline-block;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    padding: 0.5rem 1.75rem;
    cursor: pointer;
    border-radius: 0.5rem;
    background-color: #ffffff;
    color: #071D49;
    text-decoration: none;
    transition: background-color 300ms;
}

.lowes-benefits-button:hover {
    background-color: #e2e8f0;
}

/* Carousel Controls */
.lowes-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;

}

.lowes-slider-play-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #808080;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 300ms;
}

.lowes-slider-play-btn:hover {
    background-color: #333333;
}

.lowes-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    background-color: #808080;
    padding: 8px 10px;
}

.lowes-slider-dot {
    position: relative;
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

.lowes-slider-dot-inner {
    display: block;
    border-radius: 50%;
    background-color: #ffffff;
    width: 12px;
    height: 12px;
    opacity: 0.5;
    transition: all 300ms;
}

.lowes-slider-dot.active .lowes-slider-dot-inner {
    width: 24px;
    height: 24px;
    opacity: 1;
}

.lowes-main-heading {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 912px;
    font-weight: 900;
    margin: 0;
}

.lowes-img-container {
    display: grid;
    padding-right: 1.5rem;
    margin-left: 3rem;
    max-width: 100%;
    grid-template-columns: 55% 45%;
    gap: 0.5rem;
    box-sizing: border-box;
}

.lowes-img-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.lowes-img-section-1 {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 0.5rem;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    max-width: 635px;
}

.lowes-img-section-2 {
    display: grid;
    grid-template-columns: 58.5% 41.5%;
    gap: 4%;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    max-width: 515px;
}

.lowes-below-content {
    display: flex;
    margin-left: 3rem;
    font-size: 0.75rem;
    line-height: 1rem;
    padding-right: 1.5rem;
    padding-bottom: 10px;
    gap: 1rem;
    max-width: 60rem;
    flex-direction: column;
}

.lowes-rewards-section-col-1 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 800;
    display: block;
}

.lowes-rewards-section-col-2 {
    font-size: 60px;
    line-height: 60px;
    margin-left: 24px;
    text-align: right;
    font-weight: 900;
    display: block;
    color: #fff;
}

.lowes-font-bold {
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.lowes-font-bold:hover {
    text-decoration: underline;
}

.lowes-text-nowrap {
    text-wrap: nowrap;
}

.lowes-highlited-text {
    font-weight: 700;
}

/* // lowes-frame-section */
.lowes-card {
    margin-inline: 1.25rem;
}

.lowes-card-component {
    max-width: 93.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: auto;
    padding-block: 3rem;
    padding-inline: 2rem;
    color: #ffffff;
    border-radius: 1rem;
    background-color: #071d49;
    background-image: linear-gradient(180deg, #071d49 0%, #012169cc 15%, #9bcbeb66 100%);
}

.lowes {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.lowes-card-title {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
    font-weight: 900;
}

.lowes-card-logo {
    width: 248px;
    height: 115px;
}
.lowes-card-title-text {
    line-height: 2rem;
    font-size: 30px;
}


.lowes-card-title-highlight {
    font-size: 53px;
    text-align: right;
}

.lowes-card-row {
    display: flex;
    gap: 4rem;
    justify-content: center;
    max-width: 75rem;
    width: 100%;
    margin-top: 80px;
}

.lowes-card-benefit {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    max-width: 352px;
}

.lowes-card-icon-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 72px;
}

.lowes-card-benefit-text {
    line-height: 24px;
    font-size: 19px;
    text-align: center;
    margin-top: 20px;
}

.lowes-shipping-details {
    max-width: 216px;
}

.lowes-discount {
    max-width: 288px;
}

.lowes-members {
    max-width: 240px;
}

.lowes-card-cta-prompt {
    font-weight: 700;
    font-size: 19px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

.lowes-card-disclaimers {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1rem;
    max-width: 75.5rem;
    margin-top: 4rem;
    text-align: left;
    padding-inline: 28px;
    box-sizing: border-box;
    font-weight: 400;
}

.lowes-hexagon {
    translate: -50% -50%;
    z-index: -1;
    left: 0px;
    top: 0px;
    position: absolute;
}

.lowes-card-button {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: #071d49;
    background-color: #ffffff;
    text-align: center;
    padding-block: 0.5rem;
    padding-inline: 1.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.lowes-card-button:hover {
    background-color: var(--color-slate-200, #e2e8f0);
}

/* ========== Points Slider Section ========== */

.lowes-points-section {
    margin-inline: auto;
    color: #071D49;
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 77.5rem;
    margin-top: 64px;
}

.lowes-points-header {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: center;
    color: #071D49;
}

.lowes-points-header-left {
    flex: 1;
}

.lowes-points-header-right {
    width: 280px;
    display: flex;
    justify-content: flex-end;
    align-self: flex-start;
}

.lowes-points-heading {
    max-width: 512px;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-weight: 900;
    margin: 0;
}

.lowes-points-subtitle {
    font-size: 28px;
    line-height: 37.33px;
}

.lowes-points-title {
    margin-left: 1.5rem;
    text-align: right;
    font-size: 48px;
    line-height: 54px;
}

.lowes-points-period {
    font-size: 28px;
}

.lowes-points-desc {
    font-size: 19px;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: #071D49;
}

.lowes-points-desc sup {
    font-size: 9px;
}

.lowes-points-box {
    width: 280px;
    min-height: 141px;
    background: #071D49;
    border-radius: 16px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px 24px 8px 53px;
    box-sizing: border-box;
}

.lowes-points-box-label {
    margin: 0;
    width: 174px;
    min-height: 42px;
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
}

.lowes-points-box-value {
    margin: 0;
    width: 167px;
    min-height: 75px;
    font-size: 50px;
    font-weight: 700;
    line-height: 75px;
    text-align: center;
}

/* Slider cards container */
.lowes-points-sliders {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 23px;
}

.lowes-points-slider-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #071D49;
}

.lowes-points-slider-info {
    font-size: 19px;
    text-align: center;
}

.lowes-points-slider-bold {
    font-weight: 700;
    text-align: center;
    line-height: 24px;
    margin: 0;
}

.lowes-points-slider-bold sup {
    font-size: 12px;
}

.lowes-points-slider-text {
    font-weight: 400;
    text-align: center;
    line-height: 24px;
    margin: 0;
}

/* Slider row: track + value */
.lowes-points-slider-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    /* gap: 2rem; */
    align-items: center;
}

.lowes-points-slider-track {
    position: relative;
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    flex: 1;
}

.lowes-points-slider-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    background: #F3D03E;
    border-radius: 9999px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.lowes-points-slider-value {
    min-width: 176px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lowes-points-slider-amount {
    font-size: 50px;
    font-weight: 700;
    color: #071D49;
    line-height: 56px;
    text-align: center;
    margin: 0;
}

.lowes-points-slider-label {
    font-size: 19px;
    font-weight: 400;
    color: #071D49;
    line-height: 24px;
    text-align: center;
    margin: 0;
}

/* Footer & disclaimer */
.lowes-points-slider-footer {
    font-size: 19px;
    color: #071D49;
    text-align: center;
}

.lowes-points-slider-footer-text {
    text-align: center;
    line-height: 24px;
    margin: 0;
}

.lowes-points-slider-disclaimer {
    max-width: 836px;
    color: #071D49;
    margin-inline: auto;
    margin-top: 2rem;
}

.lowes-points-slider-disclaimer-text {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}

.lowes-points-slider-disclaimer-text sup {
    font-size: 0.75em;
    line-height: 0;
    vertical-align: super;
}

/* Range input styling */
.lowes-range-input {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    width: 100%;
    height: 24px;
    background: transparent;
    outline: none;
    cursor: pointer;
    padding-inline: 0.75rem;
}

.lowes-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 36px;
    height: 40px;
    border: none;
    background: url('/sites/syc/img/hexagon_blue.png') no-repeat center / contain;
    background-color: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
    filter: none;
    border-radius: 0;
    cursor: pointer;
}

.lowes-range-input::-moz-range-thumb {
    width: 36px;
    height: 40px;
    border: none;
    background: url('/sites/syc/img/hexagon_blue.png') no-repeat center / contain;
    background-color: transparent;
    box-shadow: none;
    filter: none;
    border-radius: 0;
    cursor: pointer;
}

.lowes-range-input::-moz-range-track {
    height: 8px;
    border-radius: 9999px;
    background: transparent;
}

.lowes-range-input::-moz-range-progress {
    height: 8px;
    border-radius: 9999px;
    background: transparent;
}

/* ========== Save 5% Section ========== */

.lowes-save-section {
    color: #1d4ed8;
    padding-bottom: 3rem;
    padding-top: 5rem;
    padding-inline: 1.25rem;
    gap: 3rem;
    align-items: center;
    flex-direction: column;
    max-width: 75rem;
    display: flex;
    margin-bottom: 3rem;
    margin-inline: auto;
    color: #071D49;
}

.lowes-save-heading {
    max-width: 920px;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-weight: 900;
    margin: 0;
}

.lowes-save-title {
    font-size: 53px;
    line-height: 60px;
}

.lowes-save-subtitle {
    margin-left: 1.5rem;
    text-align: right;
    font-size: 30px;
    line-height: 36px;
}

.lowes-save-desc {
    max-width: 900px;
    font-size: 19px;
    font-weight: 500;
    line-height: 26px;
    margin: 0;
}

.lowes-save-disclaimers {
    max-width: 840px;
}

.lowes-save-disclaimer-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin: 0 0 8px;
}

.lowes-save-disclaimer-text sup {
    font-size: 9px;
}

.lowes-save-link {
    color: #071D49;
    text-decoration: none;
}

.lowes-save-link:hover {
    text-decoration: underline;
}


/* lowes credit center section */

.lowes-credit-center-section {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    padding: 72px 80px;
    margin-inline: auto;
    color: #071D49;
    align-items: center;
    gap: 60px;
}

.lowes-credit-center-heading {
    display: flex;
    flex-direction: column;
    font-weight: 900;
    max-width: 912px;
    width: 100%;
    margin: 0;
}

.lowes-credit-center-title-main {
    line-height: 40px;
    font-size: 30px;
    transform: rotate(0deg);
    opacity: 1;
}

.lowes-credit-center-title-sub {
    text-align: right;
    margin-left: 24px;
    font-size: 52.5px;
    line-height: 58.89px;
}

.lowes-credit-center-grid {
    max-width: 1040px;
    width: 100%;
    display: grid;
    row-gap: 32px;
    column-gap: 97px;
    justify-content: space-between;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lowes-credit-center-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 260px;
    width: 100%;
    margin-inline: auto;
    gap:35px
}

.lowes-credit-center-icon-wrapper {
    height: 80px;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.lowes-credit-center-text {
    height: 48px;
    font-weight: bold;
    text-align: center;
    font-size: 19px;
    line-height: 24px;
}

.lowes-credit-center-text-billing {
    max-width: 200px;
}

.lowes-credit-center-text-paperless {
    max-width: 84px;
}

.lowes-credit-center-text-download {
    max-width: 280px;
}

.lowes-credit-center-text-payment,
.lowes-credit-center-text-profile {
    max-width: 160px;

}
.lowes-credit-center-text-management {
    max-width: 186px;
} 

.lowes-credit-center-button {
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    padding-block: 8px;
    padding-inline: 28px;
    background-color: #071D49;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.lowes-credit-center-button:hover,
.lowes-credit-center-button:focus-visible {
    background-color: #000000;
}

/* ========== Lowe's App Section ========== */

.lowes-app-section {
    padding-inline: 20px;
    overflow: hidden;
}

.lowes-app-container {
    position: relative;
    max-width: 1300px;
    padding: 48px 32px;
    margin-top: 96px;
    margin-inline: auto;
    border-radius: 16px;
    background-color: #071D49;
    background-image: linear-gradient(180deg, #071d49 0%, #012169cc 25%, #9bcbeb66 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lowes-app-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1180px;
    justify-content: center;
    position: relative;
}

.lowes-app-phone-left {
    display: none;
    max-width: 416px;
    position: absolute;
    translate: 0 -16.67%;
    top: 73px;
    left: -48px;
    transform: translateY(-16.66%);
       
}

.lowes-app-content {
    max-width: 720px;
    width: 100%;
    position: relative;
}

.lowes-app-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    font-weight: 900;
    margin: 0;
}

.lowes-app-heading-sm {
    font-size: 27px;
    line-height: 34px;
}

.lowes-app-heading-lg {
    margin-left: 1.5rem;
    text-align: right;
    font-size: 48px;
    line-height: 53.33px;
}

.lowes-app-heading-period {
    font-size: 27px;
}

.lowes-app-phone-mobile {
    display: none;
    width: 240px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    margin-inline: auto;
    transform: translateX(-12.5%);
    margin-bottom: -56px;
    margin-top: 16px;
}

.lowes-app-bold-text {
    font-weight: 700;
    font-size: 19px;
    line-height: 26px;
    margin-top: 40px;
    max-width: 500px;
}

.lowes-app-features {
    position: relative;
    margin-top: 40px;
}

.lowes-app-feature {
    font-size: 19px;
    line-height: 26px;
    margin: 0;
}

.lowes-app-feature + .lowes-app-feature {
    margin-top: 16px;
}

.lowes-app-phone-inline {
    display: none;
    width: 240px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: -211px;
    transform: translateY(-16px);
}

.lowes-app-stores {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 40px;
    justify-content: center;
}

.lowes-app-stores img {
    width: 147px;
    height: 44px;
}

.lowes-app-hexagon {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    transform: translate(50%, -50%);
    /* height: 113px; */
}

/* < 500px: show mobile phone image only */
@media (max-width: 499px) {
    .lowes-app-phone-mobile {
        display: block;
    }

    .lowes-app-stores {
        justify-content: center;
    }
}

/* 500px+: show inline phone in features, hide mobile */
@media (min-width: 500px) {
    .lowes-app-phone-inline {
        display: block;
    }

    .lowes-app-phone-mobile {
        display: none;
    }

    .lowes-app-stores {
        flex-direction: column;
        justify-content: flex-start;
        gap: 16px;
    }
}

/* sm (640px+): stores row again */
@media (min-width: 640px) {
    .lowes-app-stores {
        flex-direction: row;
        gap: 32px;
        justify-content: flex-start;
    }
}

/* xl (1280px+): show left phone, hide inline, push content right */
@media (min-width: 1280px) {
    .lowes-app-phone-left {
        display: block;
    }

    .lowes-app-phone-inline {
        display: none;
    }

    .lowes-app-inner {
        justify-content: flex-end;
    }

    .lowes-app-phone-left {
        min-width: 416px;
    }
}

/* ========== Amex Benefits Carousel Section ========== */

.lowes-amex-benefits-section {
    padding-top: 128px;
    padding-bottom: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lowes-amex-benefits-hexagon {
    position: absolute;
    left: calc(50% - 440px);
    top: 250px;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.lowes-amex-benefits-heading {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-weight: 900;
    color: #071D49;
    padding-inline: 20px;
    margin: 0;
}

.lowes-amex-benefits-title {
    font-size: 53px;
    line-height: 60px;
}

.lowes-amex-benefits-title sup {
    font-size: 30px;
    vertical-align: middle;
    position: relative;
    top: -0.5em;
}

.lowes-amex-benefits-subtitle {
    margin-left: 1.5rem;
    text-align: right;
    font-size: 30px;
    line-height: 36px;
}

.lowes-amex-benefits-carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.lowes-amex-benefits-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 32px calc(50% - 440px);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lowes-amex-benefits-track::-webkit-scrollbar {
    display: none;
}

.lowes-amex-card {
    flex-shrink: 0;
    width: 880px;
    height: 352px;
    scroll-snap-align: center;
    border-radius: 16px;
    background-color: #071D49;
    background-image: linear-gradient(180deg, #071d49 0%, #012169cc 25%, #9bcbeb66 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: grid;
    grid-template-columns: 60fr 40fr;
    position: relative;
}

.lowes-amex-card-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.lowes-amex-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    max-height: 352px;
    height: 352px;
}

.lowes-amex-card-icon {
    padding-left: 24px;
    height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lowes-amex-card-body {
    margin-left: 56px;
    max-width: 264px;
}

.lowes-amex-card-title {
    font-size: 29px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
}

.lowes-amex-card-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 4px;
    margin-bottom: 0;
}

.lowes-amex-card:nth-child(3) .lowes-amex-card-body {
    max-width: 288px;
}

.lowes-amex-card:nth-child(3) .lowes-amex-card-desc {
    width: 288px;
    max-width: 288px;
}

.lowes-amex-card-link {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.lowes-amex-card-link:hover {
    text-decoration: underline;
}

/* ========== FAQ Section ========== */

.lowes-faq-section {
    background-color: #F4F4F4;
    padding: 40px 20px;
    position: relative;
}

.lowes-faq-wrap {
    max-width: 1200px;
    margin-inline: auto;
}

.lowes-faq-heading {
    font-size: 36px;
    font-weight: 900;
    color: black;
    margin: 0 0 32px;
    text-align: center;
    margin-block: 3rem 4rem;
}

.lowes-faq-category {
    margin-bottom: 16px;
}

.lowes-faq-category-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 3rem;
    background: none;
    background-color: #0000;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 25px #00000026;
    margin-block-end: 2.5rem;
    cursor: pointer;
    text-align: left;
    transition: background-color 180ms ease;
}

.lowes-faq-category-btn:focus-visible {
    outline: 2px solid #1f5bd8;
    outline-offset: -2px;
}

.lowes-faq-category-btn[aria-expanded="true"] {
    background-color: #eef4ff;
}

.lowes-faq-category-btn h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: black;
}

.lowes-faq-caret {
    display: block;
    width: 14px;
    height: 8px;
    margin-left: 12px;
    flex-shrink: 0;
    transition: transform 300ms ease;
}

.lowes-faq-category-btn[aria-expanded="false"] .lowes-faq-caret {
    transform: rotate(180deg);
}

.lowes-faq-category-btn[aria-expanded="true"] .lowes-faq-caret {
    transform: rotate(0deg);
}

.lowes-faq-questions {
    padding: 0 20px 20px;
    overflow: hidden;
}

.lowes-faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.lowes-faq-item {
    border-top: 1px solid #e0e0e0;
}

.lowes-faq-item-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    border-bottom: 2px solid #0071ce;
}

.lowes-faq-item-btn h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #071D49;
    line-height: 24px;
}

.lowes-faq-item-btn[aria-expanded="false"] .lowes-faq-caret {
    transform: rotate(180deg);
}

.lowes-faq-item-btn[aria-expanded="true"] .lowes-faq-caret {
    transform: rotate(0deg);
}

.lowes-faq-answer {
    padding: 0 0 16px;
    font-size: 16px;
    line-height: 24px;
    color: black;
}

.lowes-faq-answer p {
    margin: 0 0 12px;
}

.lowes-faq-answer a {
    color: #000;
    text-decoration: underline;
}

.lowes-faq-answer ul,
.lowes-faq-answer ol {
    padding-left: 20px;
    margin: 8px 0;
}

.lowes-faq-answer li {
    margin-bottom: 8px;
}

.lowes-faq-back-to-top {
    position: absolute;
    right: 40px;
    bottom: 20px;
    font-size: 19px;
    font-weight: 700;
    color: #071D49;
    text-decoration: none;
}

.lowes-faq-back-to-top:hover {
    text-decoration: underline;
}

/* ========== Disclosures Section ========== */

.lowes-disclosures-section {
    background-color: #D9D9D9;
    padding: 40px 20px;
}

.lowes-disclosures-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    line-height: 18px;
    max-width: 1500px;
    margin-inline: auto;
    color: #333;
}

.lowes-disclosures-content p {
    margin: 0;
}

.lowes-disc-bold {
    font-weight: 700;
}

.lowes-disc-link {
    color: #000;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .lowes-faq-columns {
        grid-template-columns: 1fr;
    }
}


/* Large Tablets / Small Desktops */
@media (max-width: 1200px) {
    .lowes-banner-right-section {
        margin-left: 0;

    }

    .lowes-rewards-section-col-2 {
        text-align: left;
        margin-left: 0;
        font-size: 48px;
        line-height: 52px;
    }

    .lowes-banner-slide:nth-child(2) {
        gap: 2.5rem;
    }

    .lowes-banner-slide:nth-child(2) .lowes-rewards-section-col-1 {
        font-size: 27px;
        line-height: 40px;
    }

    .lowes-banner-slide:nth-child(2) .lowes-rewards-section-col-2 {
        font-size: 24px;
        line-height: 25px;
        text-align: center;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
        margin-left: 0;
        padding-right: 1.5rem;
        box-sizing: border-box;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-title {
        font-size: 18px;
        line-height: 22px;
        max-width: 302px;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-desc {
        font-size: 18px;
        line-height: 22px;
        max-width: 100%;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefits-cta {
        margin-left: 0;
        max-width: 100%;
        padding-right: 1.5rem;
        box-sizing: border-box;
    }

    .lowes-amex-benefits-heading {
        max-width: 100%;
        padding-inline: 24px;
    }

    .lowes-amex-benefits-track {
        padding: 32px 24px;
    }

    .lowes-amex-card {
        width: min(100%, 860px);
    }
}

/* Mid-Sized Tablets */
@media (max-width: 1024px) {
    .lowes-banner {
        height: auto;
        padding: 3rem 1.5rem;
    }

    .lowes-inner-banner-section {
        grid-template-columns: 1fr;
        margin: 0px;
    }

    .lowes-hero-card-wrapper {
        width: 456px;
        height: 305.94000244140625px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }

    .lowes-banner-left-section img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .lowes-banner-right-section {
        height: auto;
        margin-left: 0;
    }

    .lowes-img-container {
        margin-left: 0;
        padding-right: 0;
    }

    .lowes-below-content {
        margin-left: 0;
        padding-right: 28px;
        max-width: 100%;
    }

    .lowes-rewards-section-col-1 {
        font-size: 30px;
        line-height: 40px;
    }

    .lowes-rewards-section-col-2 {
        font-size: 48px;
        line-height: 60px;
        margin-left: 123px;
        text-align: left;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefits-grid {
        gap: 1rem;
        padding-right: 0;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefits-cta {
        padding-right: 0;
    }

    .lowes-amex-benefits-section {
        padding-top: 104px;
        padding-bottom: 72px;
    }

    .lowes-amex-benefits-hexagon {
        display: none;
    }

    .lowes-amex-benefits-title {
        font-size: 44px;
        line-height: 50px;
    }

    .lowes-amex-benefits-subtitle {
        font-size: 26px;
        line-height: 32px;
    }

    .lowes-amex-benefits-track {
        gap: 24px;
        padding: 24px calc(50% - 380px);
    }

    .lowes-amex-card {
        width: min(100%, 760px);
        height: 320px;
        grid-template-columns: 56fr 44fr;
    }

    .lowes-amex-card-content {
        height: 320px;
        padding-top: 16px;
        gap: 8px;
    }

    .lowes-amex-card-icon {
        padding-left: 20px;
        height: 82px;
    }

    .lowes-amex-card-body {
        margin-left: 24px;
        margin-right: 20px;
        max-width: none;
    }

    .lowes-amex-card-title {
        font-size: 24px;
        line-height: 30px;
    }

    .lowes-amex-card-desc {
        font-size: 16px;
        line-height: 22px;
    }

    .lowes-amex-card-link {
        font-size: 16px;
        line-height: 22px;
    }

    .lowes-points-section {
        margin-top: 20px;
        gap: 36px;
    }

    .lowes-points-header {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .lowes-points-header-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-self: stretch;
    }

    .lowes-points-title {
        margin-left: 0;
        text-align: center;
        font-size: 40px;
        line-height: 46px;
    }

    .lowes-points-box {
        /* width: 183px; */
        min-height: 98px;
        align-items: center;
        padding: 8px 38px;
    }

    .lowes-points-sliders {
        margin-top: 1rem;
    }

    .lowes-points-box-label {
        /* width: 100px; */
        min-height: 42px;
        justify-content: center;
        text-align: center;
        font-size: 28px;
        line-height: 42px;
    }

    .lowes-points-box-value {
        /* width: 107px; */
        /* min-height: 75px; */
        font-size: 50px;
        line-height: 75px;
    }

    .lowes-points-slider-amount {
        font-size: 42px;
        line-height: 48px;
    }

    .lowes-save-section {
        padding: 64px 28px 40px;
        gap: 32px;
    }

    .lowes-save-heading {
        width: 100%;
        max-width: none;
    }

    .lowes-save-title {
        font-size: 46px;
        line-height: 52px;
    }

    .lowes-save-subtitle {
        margin-left: 0;
        text-align: right;
        font-size: 28px;
        line-height: 34px;
    }

    .lowes-save-desc,
    .lowes-save-disclaimers {
        width: 100%;
        max-width: none;
        align-self: stretch;
    }

    .lowes-app-container {
        margin-top: 90px;
        padding: 100px 40px 150px;
    }

    .lowes-app-inner {
        justify-content: center;
    }

    .lowes-app-content {
        max-width: 100%;
    }

    .lowes-app-heading-lg {
        margin-left: 1rem;
        text-align: left;
        font-size: 42px;
        line-height: 48px;
    }

    .lowes-app-phone-inline {
            display: none;
    }

    .lowes-app-phone-mobile {
            display: block;
            transform: none;
            width: 240px;
            max-width: min(100%, 240px);
            height: auto;
            margin-bottom: 0;
            margin-left: auto;
            margin-right: auto;
    }

        .lowes-credit-center-section {
        padding: 56px 40px;
        gap: 48px;
    }

    .lowes-credit-center-title-main {
        font-size: 24px;
        line-height: 32px;
    }

    .lowes-credit-center-title-sub {
        font-size: 40px;
        line-height: 46px;
    }

    .lowes-credit-center-grid {
        column-gap: 40px;
    }

    .lowes-credit-center-card {
        max-width: 100%;
        gap: 24px;
    }

    .lowes-credit-center-text {
        font-size: 17px;
        line-height: 22px;
        max-width: 100% !important; 
        height: auto;               
    }

    .lowes-credit-center-button {
        font-size: 16px;
        line-height: 28px;
    }


}

/* Small Tablets & Mobile Views */
@media (max-width: 767px) {
    .lowes-nav__container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1.25rem;
        height: auto;
        min-height: 56px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex-wrap: nowrap;
        gap: 0;
    }

    .lowes-nav__hamburger {
        display: flex;
        margin-left: auto;
    }

    /* Logos — mobile: flex row, both images constrained inside container */
    .lowes-nav__logos {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0;
        max-width: 253px;
        width: auto;
        height: 26px;
        flex: none;
        overflow: hidden;
        box-sizing: border-box;
    }

    /* Synchrony logo — left slot */
    .lowes-nav__logos > .lowes-nav__logo-link:first-of-type {
        position: static;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: 124px;
        height: 26px;
        overflow: hidden;
    }

    /* Separator — CSS bar between the two logos */
    .lowes-nav__logos > div {
        flex-shrink: 0;
        width: 2px;
        height: 24px;
        margin: 0 8px;
        background: #D1D5DC;
        border-radius: 9999px;
        position: static;
    }

    .lowes-nav__logo-separator {
        display: none;
    }

    /* Lowe's logo — right slot */
    .lowes-nav__logo-link:last-of-type {
        position: static;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: 97px;
        height: 26px;
        overflow: hidden;
    }

    /* Images fill their link container without overflowing */
   .lowes-nav__logo-link {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: left center;
        display: block;
    }

    .lowes-slider-play-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .lowes-banner {
        padding: 2.5rem 1rem;
    }

    .lowes-hero-card-wrapper {
        width: 300px;
        height: 213px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 10px;
        box-sizing: border-box;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }

    .lowes-hero-card-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .lowes-img-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lowes-rewards-section-col-1 {
        font-size: 16px;
        line-height: 20px;
    }

    .lowes-rewards-section-col-2 {
        font-size: 24px;
        line-height: 20px;
        margin-left: 0px;
        text-align: right;
    }

    .lowes-banner-slide:nth-child(2) {
        gap: 2rem;
        padding-left: 0;
        align-items: center;
        justify-content: flex-start;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefits-grid {
        gap: 32px;
        justify-items: center;
        /* margin-inline: auto; */
        margin-left: 0;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-title {
        font-size: 17px;
        line-height: 21px;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefit-desc {
        font-size: 20px;
        line-height: 24px;
        max-width: 302px;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefits-button {
        font-size: 20px;
        line-height: 28px;
    }

    .lowes-amex-benefits-section {
        padding-top: 88px;
        padding-bottom: 32px;
    }

    .lowes-amex-benefits-hexagon {
        display: none;
    }

    .lowes-amex-benefits-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 31px;
        width: 100%;
        max-width: 390px;
        min-height: 98px;
        gap: 12px;
        box-sizing: border-box;
    }

    .lowes-amex-benefits-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 0;
        width: 360px;
        min-height: 30px;
        align-self: flex-start;
        font-size: 24px;
        line-height: 30px;
    }

    .lowes-amex-benefits-title sup {
        font-size: 20px;
    }

    .lowes-amex-benefits-subtitle {
        width: 100%;
        max-width: 328px;
        min-height: 20px;
        margin-left: 0;
        font-weight: 900;
        font-size: 16px;
        line-height: 20px;
        text-align: right;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        color: #071D49;
        padding: 0;
        box-sizing: border-box;
    }

    .lowes-amex-benefits-track {
        gap: 19px;
        padding: 20px 80px;
        scroll-padding-left: 120px;
        scroll-padding-right: 120px;
    }

    .lowes-amex-card {
        width: 360px;
        max-width: 360px;
        min-height: 542px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lowes-amex-card-image {
        width: 100%;
        height: 192px;
        border-radius: 8px 8px 0 0;
        background-size: cover;
        background-position: center;
    }

    .lowes-amex-card-content {
        width: 100%;
        min-height: 328px;
        height: auto;
        gap: 19px;
        padding: 24px 24px 48px;
        box-sizing: border-box;
    }

    .lowes-amex-card-icon {
        height: 79px;
        padding-left: 0;
        justify-content: flex-start;
    }

    .lowes-amex-card-icon img {
        width: auto;
        height: 79px;
        max-width: 123px;
        object-fit: contain;
    }

    .lowes-amex-card-body {
        margin: 0;
        width: 312px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .lowes-amex-card-title {
        font-size: 29px;
        line-height: 36px;
    }

    .lowes-amex-card-desc {
        font-size: 18px;
        line-height: 22px;
        margin-top: 0;
    }

    .lowes-amex-card-link {
        font-size: 20px;
        line-height: 24px;
        margin-top: 0;
    }

    .lowes-points-section {
        gap: 28px;
    }

    .lowes-points-header-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 390px;
        min-height: 98px;
        padding: 0 31px;
        gap: 12px;
        box-sizing: border-box;
    }

    .lowes-points-heading {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 328px;
        min-height: 50px;
        padding: 0;
        gap: 0;
        box-sizing: border-box;
    }

    .lowes-points-subtitle {
        width: 150px;
        min-height: 20px;
        font-size: 16px;
        line-height: 20px;
        display: flex;
        align-items: center;
    }

    .lowes-points-title {
        margin-left: 0;
        width: 100%;
        max-width: 328px;
        min-height: 30px;
        padding: 0;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        text-align: right;
        font-size: 24px;
        line-height: 30px;
        box-sizing: border-box;
    }

    .lowes-points-desc {
        width: 100%;
        max-width: 328px;
        min-height: 36px;
        margin: 0;
        font-size: 14px;
        line-height: 18px;
    }

    .lowes-points-box-label {
        width: 100px;
        min-height: 42px;
        justify-content: center;
        text-align: center;
        font-size: 16px;
        line-height: 42px;
    }

    .lowes-points-box-value {
        width: 107px;
        min-height: 40px;
        font-size: 32px;
        line-height: 40px;
    }

    .lowes-points-sliders {
        width: 100%;
        /* max-width: 390px; */
        margin-top: 0;
        gap: 22px;
        align-items: center;
    }

    .lowes-points-slider-card {
        box-sizing: border-box;
        width: 100%;
        align-items: flex-start;
        gap: 10px;
        padding: 0;
        border-bottom: 1px solid #D9D9D9;
    }

    .lowes-points-slider-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 31px;
        box-sizing: border-box;
        font-size: 14px;
    }

    .lowes-points-slider-bold {
        font-size: 14px;
        line-height: 24px;
        display: flex;
        align-items: center;
    }

    .lowes-points-slider-bold sup {
        font-size: 7px;
        line-height: 11px;
        top: auto;
    }

    .lowes-points-slider-text {
        width: 100%;
        font-size: 14px;
        line-height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .lowes-points-slider-card:first-child .lowes-points-slider-info {
        padding-inline: 29px;
    }

    .lowes-points-slider-card:first-child .lowes-points-slider-text {
        line-height: 24px;
    }

    .lowes-points-slider-card:nth-child(4) .lowes-points-slider-bold {
        line-height: 18px;
    }

    .lowes-points-slider-card:nth-child(4) .lowes-points-slider-text {
        line-height: 24px;
    }

    .lowes-points-slider-row {
        width: 100%;
        flex-direction: column-reverse;
        align-items: center;
        gap: 0px;
        padding: 17px 24px;
        box-sizing: border-box;
    }

    .lowes-points-slider-value {
        min-width: 0;
        align-self: center;
        width: 107px;
        gap: 0;
    }

    .lowes-points-slider-amount {
        width: 107px;
        font-size: 32px;
        line-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lowes-points-slider-label {
        width: 38px;
        font-size: 14px;
        line-height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lowes-points-slider-track {
        width: 100%;
        /* max-width: 342px; */
        height: 25px;
        box-sizing: border-box;
    }

    .lowes-points-slider-bar {
        height: 5px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .lowes-range-input {
        height: 24px;
        padding-inline: 0;
    }

    .lowes-range-input::-webkit-slider-thumb {
        width: 20px;
        height: 24px;
    }

    .lowes-range-input::-moz-range-thumb {
        width: 20px;
        height: 24px;
    }

    .lowes-points-slider-footer {
        font-size: 14px;
        line-height: 24px;
    }

    .lowes-points-slider-footer-text {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lowes-points-slider-disclaimer {
        width: 100%;
        /* max-width: 390px; */
        margin-top: 0;
        padding: 0 31px;
        box-sizing: border-box;
    }

    .lowes-points-slider-disclaimer-text {
        font-family: 'Inter', 'Fellix', sans-serif;
        font-size: 12px;
        line-height: 18px;
    }

    .lowes-save-section {
        padding: 48px 30px 32px;
        gap: 24px;
        align-items: stretch;
    }

    .lowes-save-heading {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
        width: 100%;
        /* max-width: 328px; */
        min-height: 61px;
        align-self: stretch;
    }

    .lowes-save-title {
        width: 100%;
        max-width: 328px;
        font-weight: 900;
        font-size: 20px;
        line-height: 125%;
        display: flex;
        align-items: center;
    }

    .lowes-save-subtitle {
        width: 100%;
        max-width: 328px;
        margin-left: 0;
        font-weight: 900;
        font-size: 16px;
        line-height: 36px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .lowes-save-desc {
        padding: 0;
        gap: 2px;
        width: 100%;
        /* max-width: 328px; */
        /* min-height: 105px; */
        font-weight: 500;
        font-size: 14px;
        line-height: 150%;
        color: #071D49;
        align-self: stretch;
        flex-grow: 0;
    }

    .lowes-save-disclaimers {
        align-items: flex-start;
        padding: 0;
        width: 100%;
        /* max-width: 328px; */
        min-height: 112px;
        align-self: stretch;
        flex-grow: 0;
    }

    .lowes-app-section {
        padding-inline: 16px;
    }

    .lowes-app-container {
        margin-top: 100px;
        padding: 32px 20px;
    }

    .lowes-app-heading-sm {
        font-size: 24px;
        line-height: 30px;
    }

    .lowes-app-heading-lg {
        margin-left: 0.75rem;
        font-size: 34px;
        line-height: 40px;
    }

    .lowes-app-phone-inline {
        display: none;
    }

    .lowes-app-phone-mobile {
        display: block;
        position: static;
        transform: none;
        width: 220px;
        max-width: min(100%, 220px);
        height: auto;
        margin: 20px auto 0;
        margin-left: calc(50% - 120px);
    }

    .lowes-app-stores {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
    }

    .lowes-app-bold-text {
        margin-top: 0;
    }

    section.lowes-card {
        width: 100%;
        /* max-width: 390px; */
        min-height: 1367.99px;
        padding: 0 28px;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        isolation: isolate;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-component {
        width: 100%;
        /* max-width: 334px; */
        min-height: 1367.99px;
        padding: 48px 0;
        gap: 16px;
        align-items: flex-start;
        border-radius: 16px;
        background-color: #071D49;
        background-image: linear-gradient(180deg, #071D49 0%, rgba(1, 33, 105, 0.8) 25%, rgba(155, 203, 235, 0.4) 100%);
        box-sizing: border-box;
    }

    section.lowes-card .lowes-hexagon {
        width: 84px;
        height: 101px;
        left: 7px;
        top: 0;
    }

    section.lowes-card .lowes {
        width: 100%;
        max-width: 334px;
        min-height: 221.99px;
        padding: 0 28px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 32px;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-logo {
        width: 207px;
        height: 96px;
        max-width: 207px;
    }

    .lowes-img-section-2 {
        width: 80%;
        height: auto;
    }

    section.lowes-card .lowes-card-title {
        width: 100%;
        max-width: 278px;
        min-height: 93.99px;
        align-items: flex-start;
        text-align: left;
    }

    section.lowes-card .lowes-card-title-text {
        width: 186px;
        font-size: 24px;
        line-height: 30px;
        text-align: left;
    }

    section.lowes-card .lowes-card-title-highlight {
        width: 100%;
        font-size: 32px;
        line-height: 40px;
        text-align: right;
        display: flex;
        justify-content: flex-end;
    }

    section.lowes-card .lowes-card-row {
        width: 100%;
        max-width: 334px;
        margin-top: 0;
        padding: 0 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-row + .lowes-card-row {
        margin-top: 24px;
    }

    section.lowes-card .lowes-card-benefit {
        width: 100%;
        max-width: 278px;
        align-items: center;
        gap: 16px;
    }

    section.lowes-card .lowes-card-row:first-of-type .lowes-card-benefit:first-child {
        min-height: 187px;
    }

    section.lowes-card .lowes-card-row:first-of-type .lowes-card-benefit:last-child {
        min-height: 162px;
        gap: 20px;
    }

    section.lowes-card .lowes-card-row:last-of-type .lowes-card-benefit:first-child {
        min-height: 146px;
        gap: 21px;
    }

    section.lowes-card .lowes-card-row:last-of-type .lowes-card-benefit:last-child {
        min-height: 166px;
        gap: 19px;
    }

    section.lowes-card .lowes-card-icon-wrapper {
        height: auto;
    }

    section.lowes-card .lowes-card-benefit-text,
    section.lowes-card .lowes-shipping-details,
    section.lowes-card .lowes-members,
    section.lowes-card .lowes-discount {
        width: 100%;
        max-width: 278px;
        margin-top: 0;
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }

    section.lowes-card .lowes-discount {
        max-width: 240px;
        line-height: 24px;
    }

    section.lowes-card .lowes-card-benefit-text .lowes-highlited-text {
        display: block;
        font-size: 14px;
        line-height: 18px;
        font-weight: 700;
    }

    section.lowes-card .lowes-card-row:first-of-type .lowes-card-benefit:last-child .lowes-highlited-text,
    section.lowes-card .lowes-card-row:last-of-type .lowes-card-benefit:last-child .lowes-highlited-text {
        line-height: 24px;
    }

    section.lowes-card .lowes-card-cta-prompt {
        width: 100%;
        margin-top: 16px;
        margin-bottom: 0;
        font-size: 14px;
        line-height: 28px;
        text-align: center;
    }

    section.lowes-card .lowes-card-button {
        width: 137px;
        min-height: 40px;
        padding: 8px 27px;
        font-size: 16px;
        line-height: 24px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }

    section.lowes-card .lowes-card-disclaimers {
        width: 100%;
        min-height: 144px;
        margin-top: 16px;
        text-align: left;
    }

    section.lowes-card .lowes-card-disclaimer-text {
        width: 100%;
        font-size: 12px;
        line-height: 18px;
    }

}

@media (min-width: 768px) and (max-width: 1279px) {
    .lowes-app-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 240px;
        grid-template-areas:
            "heading heading"
            "copy phone"
            "features phone"
            "stores phone";
        column-gap: 32px;
        row-gap: 24px;
        align-items: start;
    }

    .lowes-app-heading {
        grid-area: heading;
    }

    .lowes-app-bold-text {
        grid-area: copy;
        margin-top: 8px;
        max-width: 100%;
    }

    .lowes-app-features {
        grid-area: features;
        margin-top: 0;
    }

    .lowes-app-stores {
        grid-area: stores;
        margin-top: 40px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .lowes-app-phone-inline {
        display: block;
        grid-area: phone;
        align-self: start;
        transform: none;
        width: 240px;
        max-width: min(100%, 240px);
        height: auto;
        margin: 0;
    }

    .lowes-app-phone-mobile {
        display: none;
    }
}

/* Full modern smartphone viewport layouts */

@media (max-width: 640px) {
    .lowes-credit-center-section {
        padding: 40px 20px;
        gap: 40px;
    }

    .lowes-credit-center-title-main {
        font-size: 16px;
        line-height: 26px;
        margin-left: 12px;
    }

    .lowes-credit-center-title-sub {
        margin-left: 11px;
        font-size: 24px;
        line-height: 38px;
        text-align: left;
    }
    
    .lowes-credit-center-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
        row-gap: 40px;
    }

    .lowes-credit-center-card {
        gap: 16px;
    }

    .lowes-credit-center-text {
        font-size: 14px;
        line-height: 20px;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefits-grid {
        grid-template-columns: 1fr;
        padding: 0px 28px;
    }

    .lowes-banner-slide:nth-child(2) .lowes-benefits-cta {
        justify-content: flex-start;
    }

    .lowes-points-box {
        width: 183px;
        max-width: 183px;
        min-height: 98px;
        align-items: center;
        padding: 18px 38px;
        margin-inline: auto;
    }

    .lowes-app-phone-mobile {
        width: 200px;
    }
}

@media (min-width: 641px) and (max-width: 767px) {
    .lowes-points-slider-row {
        flex-direction: row;
        align-items: center;
    }

    .lowes-points-slider-value {
        width: auto;
        align-self: auto;
    }
}

/* Section 2 heading spec for tablet only */
@media (min-width: 768px) and (max-width: 1024px) {
    .lowes-amex-benefits-heading {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding: 0 28px 24px;
        width: 100%;
        max-width: 712px;
        min-height: 123px;
        box-sizing: border-box;
    }

    .lowes-amex-benefits-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: 10px;
        width: 100%;
        max-width: 656px;
        min-height: 59px;
        font-size: 36px;
        line-height: 59px;
    }

    .lowes-amex-benefits-subtitle {
        width: 100%;
        max-width: 656px;
        min-height: 40px;
        margin-left: 0;
        font-size: 30px;
        line-height: 40px;
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .lowes-points-header-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 768px;
        min-height: 155px;
        padding: 0 28px;
        gap: 24px;
        box-sizing: border-box;
    }

    .lowes-points-heading {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 712px;
        min-height: 102px;
        padding: 0 28px;
        gap: 10px;
        box-sizing: border-box;
    }

    .lowes-points-subtitle {
        align-self: stretch;
        width: 100%;
        min-height: 38px;
        font-size: 28px;
        line-height: 37px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }

    .lowes-points-title {
        margin-left: 0;
        align-self: stretch;
        width: 100%;
        max-width: none;
        min-height: 54px;
        padding: 0;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        text-align: right;
        font-size: 48px;
        line-height: 53px;
        box-sizing: border-box;
    }

    .lowes-points-desc {
        width: 100%;
        max-width: 579px;
        min-height: 29px;
        margin: 0;
        font-size: 19px;
        line-height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .lowes-points-sliders {
        padding: 0 28px;
        box-sizing: border-box;
    }

    .lowes-points-slider-disclaimer {
        width: 100%;
        max-width: none;
    }

    section.lowes-card {
        width: 100%;
        max-width: none;
        padding: 0 28px;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        isolation: isolate;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-component {
        width: 100%;
        max-width: none;
        min-height: 1170.91px;
        padding: 48px 0;
        gap: 16px;
        align-items: center;
        border-radius: 16px;
        background-color: #071D49;
        background-image: linear-gradient(180deg, #071D49 0%, rgba(1, 33, 105, 0.8) 25%, rgba(155, 203, 235, 0.4) 100%);
        position: relative;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-hexagon {
        width: 138px;
        height: 166px;
        left: -20px;
        top: 2px;
    }

    section.lowes-card .lowes {
        width: 100%;
        min-height: 114.91px;
        padding: 0 28px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 32px;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-logo {
        width: 248px;
        height: 114.91px;
        max-width: 248px;
    }

    section.lowes-card .lowes-card-title {
        width: 100%;
        max-width: 376px;
        min-height: 93.99px;
        align-items: center;
        text-align: center;
    }

    section.lowes-card .lowes-card-title-text {
        font-size: 30px;
        line-height: 40px;
        text-align: center;
    }

    section.lowes-card .lowes-card-title-highlight {
        width: 100%;
        font-size: 53px;
        line-height: 52px;
        text-align: center;
    }

    section.lowes-card .lowes-card-row {
        width: 100%;
        max-width: 656px;
        margin-top: 0;
        padding: 0 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-row + .lowes-card-row {
        margin-top: 24px;
    }

    section.lowes-card .lowes-card-benefit {
        width: 100%;
        max-width: 656px;
        gap: 20px;
    }

    section.lowes-card .lowes-card-row:first-of-type .lowes-card-benefit:last-child {
        padding: 0 68px;
        gap: 19px;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-row:last-of-type .lowes-card-benefit:first-child {
        padding: 0 56px;
        gap: 21px;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-row:last-of-type .lowes-card-benefit:last-child {
        padding: 0 32px;
        gap: 19px;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-icon-wrapper {
        height: auto;
    }

    section.lowes-card .lowes-card-benefit-text {
        margin-top: 0;
        font-size: 19px;
        line-height: 24px;
    }

    section.lowes-card .lowes-card-row:first-of-type .lowes-card-benefit:first-child .lowes-card-benefit-text {
        max-width: 656px;
    }

    section.lowes-card .lowes-card-row:first-of-type .lowes-card-benefit:last-child .lowes-card-benefit-text {
        max-width: 520px;
    }

    section.lowes-card .lowes-card-row:last-of-type .lowes-card-benefit:first-child .lowes-card-benefit-text {
        max-width: 544px;
    }

    section.lowes-card .lowes-card-row:last-of-type .lowes-card-benefit:last-child .lowes-card-benefit-text {
        max-width: 554px;
    }

    section.lowes-card .lowes-card-cta-prompt {
        width: 100%;
        max-width: 656px;
        margin-top: 16px;
        margin-bottom: 0;
        font-size: 19px;
        line-height: 28px;
    }

    section.lowes-card .lowes-card-button {
        width: 179px;
        min-height: 48px;
        padding: 8px 27px;
        font-size: 24px;
        line-height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }

    section.lowes-card .lowes-card-disclaimers {
        width: 100%;
        max-width: 656px;
        margin-top: 16px;
        padding: 0px;
        box-sizing: border-box;
    }

    section.lowes-card .lowes-card-disclaimer-text {
        font-size: 12px;
        line-height: 16px;
    }
}

/* Keep second banner as 2x2 grid in 540-720 range */
@media (min-width: 540px) and (max-width: 720px) {
    .lowes-banner-slide:nth-child(2) .lowes-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

/* Keep second banner as 2x2 grid in 480-539 range */
@media (min-width: 480px) and (max-width: 539px) {
    .lowes-banner-slide:nth-child(2) .lowes-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 639px) {
    .lowes-banner-slide:nth-child(2) .lowes-benefits-cta {
        justify-content: center;
    }
}

/* Small Phones */
@media (max-width: 480px) {

    .lowes-img-section-1,
    .lowes-img-section-2 {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding-left: 8px;
    }

    .lowes-img-section-1 img {
        width: 100%;
        height: auto;
    }

    .lowes-img-section-2 img {
        height: auto;
    }

    .lowes-img-section-2 img:first-child {
        width: 246px;
    }

    .lowes-img-section-2 img:last-child {
        width: 232px;
        height: 106px;
    }

    .lowes-points-title {
        margin-left: 0;
        font-size: 24px;
        line-height: 30px;
    }

    .lowes-app-phone-inline {
        width: 180px;
        max-width: min(100%, 180px);
        margin-top: 16px;
    }

    .lowes-points-box-value {
        font-size: 32px;
        line-height: 40px;
    }

    .lowes-points-slider-amount {
        font-size: 32px;
        line-height: 40px;
    }

    .lowes-app-heading-sm {
        font-size: 22px;
        line-height: 28px;
    }

    .lowes-app-heading-lg {
        margin-left: 0.5rem;
        font-size: 30px;
        line-height: 36px;
    }

    .lowes-save-title {
        font-size: 20px;
        line-height: 125%;
    }

    .lowes-save-subtitle {
        margin-left: 0;
        font-size: 16px;
        line-height: 36px;
    }
}

    /* Section 8 (FAQ) and Section 9 (Disclosures) responsive updates */
    @media (max-width: 1024px) {
        .lowes-faq-heading {
            font-size: 32px;
            line-height: 38px;
            margin-bottom: 24px;
        }

        .lowes-faq-category-btn {
            padding: 1.25rem 1.5rem;
            margin-block-end: 1.75rem;
        }

        .lowes-faq-category-btn h3 {
            font-size: 22px;
            line-height: 28px;
        }

        .lowes-faq-item-btn h4 {
            font-size: 17px;
            line-height: 23px;
        }

        .lowes-faq-answer {
            font-size: 15px;
            line-height: 22px;
        }

        .lowes-disclosures-section {
            padding: 36px 18px;
        }

        .lowes-disclosures-content {
            font-size: 11.5px;
            line-height: 17px;
        }
    }

    @media (max-width: 767px) {
        .lowes-faq-section {
            padding: 32px 16px 24px;
        }

        .lowes-faq-wrap {
            max-width: 100%;
        }

        .lowes-faq-heading {
            font-size: 28px;
            line-height: 34px;
            margin-bottom: 20px;
        }

        .lowes-faq-category {
            margin-bottom: 12px;
        }

        .lowes-faq-category-btn {
            padding: 1rem;
            border-radius: 0.75rem;
            margin-block-end: 1.25rem;
        }

        .lowes-faq-category-btn h3 {
            font-size: 20px;
            line-height: 26px;
        }

        .lowes-faq-questions {
            padding: 0 8px 12px;
        }

        .lowes-faq-item-btn {
            padding: 14px 0;
        }

        .lowes-faq-item-btn h4 {
            font-size: 16px;
            line-height: 22px;
        }

        .lowes-faq-answer {
            font-size: 15px;
            line-height: 22px;
        }

        .lowes-faq-answer,
        .lowes-disclosures-content {
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .lowes-faq-back-to-top {
            position: static;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 0;
            gap: 10px;
            width: 118px;
            height: 29px;
            margin-top: 16px;
            font-size: 19px;
            line-height: 28px;
            color: #000000;
        }

        .lowes-disclosures-section {
            padding: 28px 16px;
        }

        .lowes-disclosures-content {
            gap: 10px;
            font-size: 11px;
            line-height: 16px;
        }
    }

    @media (max-width: 480px) {
        .lowes-faq-heading {
            font-size: 24px;
            line-height: 30px;
        }

        .lowes-faq-category-btn h3 {
            font-size: 18px;
            line-height: 24px;
        }

        .lowes-faq-item-btn h4 {
            font-size: 15px;
            line-height: 21px;
        }

        .lowes-faq-answer {
            font-size: 14px;
            line-height: 21px;
        }

        .lowes-disclosures-content {
            font-size: 10.5px;
            line-height: 15px;
        }
    }

@media (max-width: 767px) and (orientation: landscape) {
    section.lowes-card {
        width: 100%;
        padding: 0 20px;
        align-items: stretch;
    }

    section.lowes-card .lowes-card-component,
    section.lowes-card .lowes,
    section.lowes-card .lowes-card-row,
    section.lowes-card .lowes-card-benefit,
    section.lowes-card .lowes-card-cta-prompt,
    section.lowes-card .lowes-card-disclaimers {
        width: 100%;
        max-width: none;
    }

    .lowes-points-sliders,
    .lowes-points-slider-disclaimer,
    .lowes-points-slider-track {
        width: 100%;
        max-width: none;
    }

    .lowes-points-header-left {
        width: 100%;
        max-width: none;
    }

    .lowes-save-heading {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .lowes-save-title,
    .lowes-save-subtitle {
        max-width: none;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 767px) and (orientation: portrait) {
    section.lowes-card {
        align-items: stretch;
    }

    section.lowes-card .lowes-card-component {
        width: 100%;
        max-width: none;
    }

    section.lowes-card .lowes-card-row {
        width: 100%;
        max-width: none;
        align-items: center;
        margin-inline: auto;
    }
}

@media (orientation: portrait) and (min-width: 768px) and (max-width: 1400px) and (hover: none) and (pointer: coarse),
       (orientation: portrait) and (min-device-width: 768px) and (max-device-width: 1400px) and (hover: none) and (pointer: coarse) {
    .lowes-amex-benefits-hexagon {
        display: none;
    }
}

/* Section 7 card spec updates for tablet only */
@media (min-width: 768px) and (max-width: 1100px) {
    .lowes-amex-benefits-track {
        padding: 24px 30vw;
        scroll-padding-left: 30vw;
        scroll-padding-right: 30vw;
    }

    .lowes-amex-card {
        width: 360px;
        max-width: 360px;
        min-height: 542px;
        height: 542px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 16px;
        background-color: #071D49;
        background-image: linear-gradient(180deg, #071D49 40.33%, rgba(1, 33, 105, 0.8) 55.25%, rgba(155, 203, 235, 0.4) 100%);
        box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .lowes-amex-card-image {
        width: 100%;
        height: 192px;
        border-radius: 8px 8px 0 0;
        background-size: cover;
        background-position: center;
    }

    .lowes-amex-card-content {
        width: 100%;
        height: 328px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 19px;
        padding: 24px 24px 48px;
        box-sizing: border-box;
    }

    .lowes-amex-card-icon {
        height: 79px;
        padding-left: 0;
        justify-content: flex-start;
    }

    .lowes-amex-card-icon img {
        width: auto;
        height: 79px;
        max-width: 123px;
        object-fit: contain;
    }

    .lowes-amex-card-body {
        margin: 0;
        width: 312px;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .lowes-amex-card-title {
        font-size: 29px;
        line-height: 36px;
    }

    .lowes-amex-card-desc {
        font-size: 18px;
        line-height: 22px;
        margin-top: 0;
    }

    .lowes-amex-card-link {
        font-size: 20px;
        line-height: 24px;
        margin-top: 0;
    }
}

/* Section 1 slide 0 tablet-only image layout */
@media (min-width: 768px) and (max-width: 1024px) {
    .lowes-banner-slide:first-child .lowes-img-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        align-content: flex-start;
        gap: 16px;
        width: min(100%, 768px);
        min-height: 224.48px;
        margin-left: 0;
        box-sizing: border-box;
    }

    .lowes-banner-slide:first-child .lowes-img-section-1 {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        width: 526.13px;
        max-width: 100%;
        padding: 0;
    }

    .lowes-banner-slide:first-child .lowes-img-section-1 img:first-child {
        width: 252.55px;
        height: 101.35px;
    }

    .lowes-banner-slide:first-child .lowes-img-section-1 img:last-child {
        width: 273.58px;
        height: 103.22px;
    }

    .lowes-banner-slide:first-child .lowes-img-section-2 {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 17.22px;
        width: 430.47px;
        max-width: 100%;
        padding: 0;
    }

    .lowes-banner-slide:first-child .lowes-img-section-2 img:first-child {
        width: 251.83px;
        height: 104.24px;
    }

    .lowes-banner-slide:first-child .lowes-img-section-2 img:last-child {
        width: 178.64px;
        height: 103.16px;
    }

}
