/* =========================
   REWARDS PAGE
========================= */

.rewards-page {
    width: 100%;
    background: #faf9f5;
    color: #0b1d2c;
}

.rewards-hero {
    width: 100%;
    padding: 76px 70px 72px;
    background: #e9f1f4;
    border-bottom: 1px solid #d7e1e6;
}

.rewards-hero-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.rewards-hero-copy {
    max-width: 760px;
}

.rewards-eyebrow,
.rewards-section-kicker {
    margin: 0 0 12px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.2px;

    color: #35687f;
}

.rewards-hero h1 {
    margin: 0;

    font-family: "Chronicle Display", Georgia, serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 400;
    line-height: 0.98;

    color: #0b1d2c;
}

.rewards-hero-text {
    max-width: 690px;
    margin: 24px 0 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.55;

    color: #53606b;
}

.rewards-balance-card {
    width: 285px;
    min-height: 205px;
    flex-shrink: 0;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #0b1d2c;
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(11, 29, 44, 0.16);

    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
}

.rewards-balance-label {
    margin-bottom: 12px;

    font-size: 14px;
    opacity: 0.78;
}

.rewards-balance-card strong {
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.rewards-balance-status,
.rewards-balance-card a {
    margin-top: 14px;
    font-size: 14px;
}

.rewards-balance-card a {
    width: fit-content;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.rewards-disclaimer {
    background: #ffffff;
}

.rewards-catalog {
    width: 100%;
    padding: 62px 70px 90px;
}

.rewards-catalog-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.rewards-catalog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.rewards-catalog-header h2 {
    margin: 0;

    font-family: "Chronicle Display", Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;

    color: #0b1d2c;
}

.rewards-result-count {
    margin: 12px 0 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    color: #727b83;
}

.rewards-sort {
    display: flex;
    align-items: center;
    gap: 12px;

    font-family: Arial, Helvetica, sans-serif;
}

.rewards-sort label {
    font-size: 14px;
    color: #5f6971;
}

.rewards-sort select {
    height: 44px;
    min-width: 190px;
    padding: 0 40px 0 14px;

    background: #ffffff;
    border: 1px solid #cfd5d8;
    border-radius: 6px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #0b1d2c;
}

.rewards-filter-row {
    margin-top: 30px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.reward-filter-chip {
    min-height: 40px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #cfd5d8;
    border-radius: 999px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #0b1d2c;

    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.reward-filter-chip:hover,
.reward-filter-chip.active {
    background: #0b1d2c;
    border-color: #0b1d2c;
    color: #ffffff;
    opacity: 1;
}

.reward-card-grid {
    margin-top: 34px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.reward-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    background: #ffffff;
    border: 1px solid #e4e3df;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reward-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 35px rgba(11, 29, 44, 0.12);
}

.reward-card-image {
    width: 100%;
    height: 220px;

    position: relative;
    overflow: hidden;

    background: #e8e8e8;
}

.reward-card-image img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    transition: transform 0.35s ease;
}

.reward-card:hover .reward-card-image img {
    transform: scale(1.025);
}

.reward-card-category {
    position: absolute;
    left: 16px;
    bottom: 16px;

    padding: 8px 11px;

    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;

    color: #0b1d2c;
}

.reward-card-body {
    min-height: 330px;
    padding: 24px;

    display: flex;
    flex-direction: column;
}

.reward-card-heading {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.reward-card-heading h3 {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;

    color: #0b1d2c;
}

.reward-card-points {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;

    color: #2f6379;
}

.reward-card-description {
    margin: 16px 0 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.55;

    color: #6c747b;
}

.reward-card-meta {
    margin-top: auto;
    padding: 22px 0 18px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;

    color: #6b747b;
}

.reward-card-button {
    width: 100%;
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b1d2c;
    border: 0;
    border-radius: 999px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;

    cursor: pointer;

    transition: background 0.2s ease, opacity 0.2s ease;
}

.reward-card-button:hover {
    background: #16344c;
    opacity: 1;
}

.reward-card-button-disabled,
.reward-card-button:disabled {
    background: #d5d8da;
    color: #6b747b;
    cursor: default;
}

.rewards-empty-state {
    margin-top: 35px;
    padding: 75px 30px;

    background: #ffffff;
    border: 1px solid #e4e3df;

    text-align: center;
}

.rewards-empty-state h3 {
    margin: 0;

    font-family: "Chronicle Display", Georgia, serif;
    font-size: 36px;
    font-weight: 400;
}

.rewards-empty-state p {
    margin: 12px 0 22px;

    font-family: Arial, Helvetica, sans-serif;
    color: #6c747b;
}

.rewards-empty-state a {
    display: inline-flex;
    min-height: 44px;
    padding: 0 20px;

    align-items: center;
    justify-content: center;

    border: 1px solid #0b1d2c;
    border-radius: 999px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .reward-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .rewards-hero,
    .rewards-catalog {
        padding-left: 28px;
        padding-right: 28px;
    }

    .rewards-hero-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .rewards-balance-card {
        width: 100%;
        min-height: 160px;
    }

    .rewards-catalog-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .rewards-hero {
        padding-top: 52px;
        padding-bottom: 50px;
    }

    .rewards-hero h1 {
        font-size: 49px;
    }

    .rewards-hero-text {
        font-size: 16px;
    }

    .rewards-catalog {
        padding-top: 45px;
        padding-bottom: 65px;
    }

    .rewards-catalog-header h2 {
        font-size: 42px;
    }

    .rewards-sort {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .rewards-sort select {
        width: 100%;
    }

    .reward-card-grid {
        grid-template-columns: 1fr;
    }

    .reward-card-image {
        height: 205px;
    }
}
