/* =========================
   LOYALTY PAGE BASE
========================= */
.loyalty-page {
    margin: 0;
    font-family: "Jost", sans-serif;
    background: #8D3414;
    color: #f1f5f9;
    line-height: 1.2;
}

/* =========================
   HERO
========================= */
.loyalty-page .bg-breadcrumb h3 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 600;
    line-height: 1.2;
}

/* =========================
   HEADER
========================= */
.loyalty-page header {
    text-align: center;
    padding: 70px 20px;
    background: #1f3d2b;
}

.loyalty-page header h1 {
    font-size: 44px;
    margin-bottom: 12px;
    font-weight: 800;
    color: #fff;
}

.loyalty-page header p {
    font-size: 18px;
    color: #d1d5db;
}

/* =========================
   SECTIONS
========================= */
.loyalty-page section {
    padding: 70px 10%;
}

.loyalty-page h2 {
    text-align: center;
    margin-bottom: 45px;
    font-size: 32px;
    font-weight: 700;
    color: #e2e8f0;
    position: relative;
}

.loyalty-page h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #fbbf24;
    margin: 12px auto 0;
    border-radius: 3px;
}

/* =========================
   TABLE
========================= */
.loyalty-page .points-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.loyalty-page .points-table th,
.loyalty-page .points-table td {
    padding: 14px;
    border-bottom: 1px solid #334155;
    text-align: left;
    background: #1f3d2b;
}

.loyalty-page .points-table tr:nth-child(even) td {
    background: #224635;
}

/* =========================
   RANK CARDS
========================= */
.loyalty-page .rank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.loyalty-page .rank {
    background: #1f3d2b;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transition: 0.25s;
}

.loyalty-page .rank:hover {
    transform: translateY(-6px);
}

.loyalty-page .rank h3 {
    margin-bottom: 12px;
    color: #fff;
}

/* =========================
   INSIGNIA
========================= */
.loyalty-page .insignia {
    background: #1f3d2b;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.loyalty-page .insignia h4 {
    margin-bottom: 10px;
}

/* =========================
   CTA
========================= */
.loyalty-page .cta {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(to right, #1e293b, #0f172a);
}

.loyalty-page .cta-btn {
    display: inline-block;
    padding: 16px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    background: #8D3414;
    color: #fff;
    transition: 0.3s;
}

.loyalty-page .cta-btn:hover {
    background: #fbbf24;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .loyalty-page section {
        padding: 50px 20px;
    }
}