.yourJourneyArea {
    background-image: url(../images/loyalty/loyalty-journey-background.jpg);
    background-position: center center;
    background-size: cover;
    border: 1px solid #536a9729;
    padding: 30px;
}

/* ===== Your Journey (Loyalty Progression) ===== */
.lj-wrap {
    --point-name-h: 13px;
    --point-icon: 40px;
    --bar-pad: 34px;
    color: #e3eeff;
    padding: 0 4px;
}

.lj-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c2a76f;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 24px;
}

/* ---- Progression Bar ---- */
.lj-bar-section {
    margin-bottom: 26px;
}

.lj-bar-track {
    position: relative;
    min-height: calc(var(--point-name-h) + var(--point-icon) + 80px);
}

/* .lj-bar-line-wrap {
    position: absolute;
    left: var(--bar-pad);
    right: var(--bar-pad);
    top: calc(var(--point-name-h) + var(--point-icon) / 2 - 3px);
    height: 6px;
} */

.lj-bar-line-wrap {
    position: absolute;
    width: 100%;
    top: calc(var(--point-name-h) + var(--point-icon) / 2 - 3px);
    height: 6px;
}

.lj-bar-line {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: #1e2843;
}

.lj-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 6px;
    background: linear-gradient(90deg, #a88b4f, #c2a76f, #d4bc84);
    box-shadow: 0 0 12px rgba(194, 167, 111, 0.5);
    transition: width 0.8s ease;
}

.lj-points {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.lj-point {
    /* position: absolute; */
    position: relative;
    /* top: 0;
    transform: translateX(-50%); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    z-index: 2;

    /* background-color: #1e2843; */
    border-radius: 10px;
    width: 25%;
    min-width: 70px;
    height: 130px;
    justify-content: space-between;
    padding: 5px 0;
}

.lj-point>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* .lj-point.pos-1 {
    left: 25%;
}

.lj-point.pos-2 {
    left: 50%;
}

.lj-point.pos-3 {
    left: 75%;
} */

/* Align the first and last points inward so names/spend never overflow the track */
/* .lj-point.pos-0 {
    left: 0;
    transform: none;
}

.lj-point.pos-4 {
    left: 100%;
    transform: translateX(-100%);
} */

.iconWrap {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.lj-points .iconIndiBar {
    position: absolute;
    display: flex;
    height: 10px;
    background-color: #030a16;
    ;
    width: 100%;
    z-index: 0;
    align-items: center;
}

.pos-0 .iconIndiBar,
.pos-0 .iconIndiBar span {
    border-radius: 5px 0 0 5px;
}

.pos-4 .iconIndiBar,
.pos-4 .iconIndiBar span {
    border-radius: 0 5px 5px 0;
}

.iconIndiBar span {
    display: block;
    background-color: #c2a76f;
    height: 4px;
    width: 0;
}

.lj-point.passed .iconIndiBar span {
    width: 100%;
}

.lj-point.active .iconIndiBar span {
    width: 50%;
}

.lj-point.pos-4.active .iconIndiBar span {
    width: 100%;
}


.lj-point-name {
    height: var(--point-name-h);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8c95a3;
    /* white-space: nowrap; */
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lj-point-icon {
    width: var(--point-icon);
    height: var(--point-icon);
    border-radius: 50%;
    background: #182333;
    border: 0px solid rgba(194, 167, 111, 0.35);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: calc(var(--point-icon) / 2.4);
    color: #8c95a3;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
    background-size: contain;
    background-position: center center;
}

.pos-0 .lj-point-icon {
    background-image: url(../images/loyalty/club-icon.png);
}

.pos-1 .lj-point-icon {
    background-image: url(../images/loyalty/sliver-icon.png);
}

.pos-2 .lj-point-icon {
    background-image: url(../images/loyalty/gold-icon.png);
}

.pos-3 .lj-point-icon {
    background-image: url(../images/loyalty/diamond-icon.png);
}

.pos-4 .lj-point-icon {
    background-image: url(../images/loyalty/crown-diamond-icon.png);
}

.lj-point-icon i {
    position: relative;
    z-index: 1;
}

.lj-point.passed .lj-point-icon {
    border-color: #c2a76f;
    color: #c2a76f;
    /* background: rgba(194, 167, 111, 0.12); */
}

.lj-point.active {
    z-index: 3;
}

.lj-point.active .lj-point-name {
    color: #c2a76f;
    font-weight: 700;
}

.lj-point.active .lj-point-icon {
    /* background: linear-gradient(135deg, #a88b4f, #c2a76f, #d4bc84); */
    border-color: #c2a76f;
    color: #0b1b35;
    box-shadow: 0 0 18px rgba(194, 167, 111, 0.55);
    transform: scale(1.08);
    animation: slowPulse 4s ease-in-out infinite;
}


@keyframes slowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }
}



.lj-point-spend {
    margin-top: 5px;
    font-size: 0.5rem;
    line-height: 1.35;
    color: #8c95a3;
    /* white-space: nowrap; */
    text-transform: uppercase;
    /* letter-spacing: 0.4px; */
}

.lj-point-here {
    margin-top: 6px;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #0b1b35;
    background: #c2a76f;
    padding: 3px 8px;
    border-radius: 10px;
    white-space: nowrap;
}

/* ---- Status Blocks ---- */
.lj-status-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
}

.lj-status-block {
    background: #030f2180;
    border: 1px solid #536a9729;
    border-radius: 12px;
    padding: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 8px;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.lj-status-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c95a3;
}

.lj-status-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #c2a76f;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.lj-progress-bar {
    width: 100%;
    max-width: 320px;
    height: 10px;
    background: #273657;
    border-radius: 10px;
    overflow: hidden;
}

.lj-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 10px;
    background: linear-gradient(90deg, #a88b4f, #c2a76f, #d4bc84);
    box-shadow: 0 0 10px rgba(194, 167, 111, 0.5);
    -webkit-transition: width 0.8s ease;
    transition: width 0.8s ease;
}

.lj-progress-pct {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c2a76f;
}

.lj-progress-away {
    font-size: 0.8rem;
    color: #8c95a3;
    line-height: 1.4;
}

.lj-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 260px;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #a88b4f, #c2a76f, #d4bc84);
    color: #0b1b35;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.lj-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 167, 111, 0.45);
    color: #0b1b35;
}

/* ---- Info Blocks (icon + text in one row) ---- */
.lj-info-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.lj-info-block {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: #030f2180;
    border: 1px solid #536a9729;
    border-radius: 12px;
    padding: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    text-align: left;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.lj-info-icon {
    width: 46px;
    height: 46px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: rgba(194, 167, 111, 0.12);
    border: 1px dashed rgba(194, 167, 111, 0.45);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #c2a76f;
    -webkit-box-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.lj-info-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}

.lj-info-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e3eeff;
}

.lj-info-title b {
    color: #c2a76f;
}

.lj-info-line {
    font-size: 0.8rem;
    color: #8c95a3;
    line-height: 1.4;
}

.ljInfoWrap {
    display: flex !important;
    justify-content: space-between;
}

.ljInfoWrap li {
    display: unset;
}

.lj-info-block {
    width: 100%;
}

/* ===== 320px and below (extra small phones) ===== */
@media (max-width: 320px) {
    .lj-wrap {
        --point-name-h: 11px;
        --point-icon: 34px;
        --bar-pad: 30px;
    }

    .lj-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .lj-point-name {
        font-size: 0.5rem;
    }

    .lj-point-spend {
        font-size: 0.45rem;
    }

    .lj-status-block {
        padding: 14px;
    }

    .lj-info-icon {
        width: 40px;
        height: 40px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
        flex: 0 0 40px;
        font-size: 1rem;
    }
}

/* ===== 481px and up (small tablet) ===== */
@media (min-width: 481px) {
    .lj-wrap {
        --point-name-h: 14px;
        --point-icon: 46px;
        --bar-pad: 46px;
    }

    .lj-title {
        font-size: 1.5rem;
    }

    .lj-point-name {
        font-size: 0.6rem;
    }

    .lj-point-spend {
        font-size: 0.55rem;
    }

    .lj-status-value {
        font-size: 1.8rem;
    }
}

/* ===== 768px and up (tablet) ===== */
@media (min-width: 768px) {
    .lj-wrap {
        --point-name-h: 16px;
        --point-icon: 54px;
        --bar-pad: 60px;
    }

    .lj-title {
        font-size: 1.7rem;
        margin-bottom: 32px;
    }

    .lj-point-name {
        font-size: 0.7rem;
    }

    .lj-point-spend {
        font-size: 0.6rem;
    }

    .lj-status-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1.5fr 1fr;
        grid-template-columns: 1fr 1.5fr 1fr;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .lj-info-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: repeat(3, 1fr);
    }


}

/* ===== 1000px and up (desktop) ===== */
@media (min-width: 1000px) {
    .lj-wrap {
        --point-name-h: 18px;
        --point-icon: 60px;
        --bar-pad: 80px;
    }

    .lj-title {
        font-size: 1.8rem;
    }

    .lj-point-name {
        font-size: 0.75rem;
    }

    .lj-point-spend {
        font-size: 0.65rem;
    }

    .lj-status-block {
        padding: 22px;
    }

    .lj-btn {
        width: auto;
        max-width: none;
    }

    .lj-info-icon {
        width: 56px;
        height: 56px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 56px;
        flex: 0 0 56px;
        font-size: 1.3rem;
    }

    .ljInfoWrap li {
        display: contents;
    }

    .ljInfoWrap {
        gap: 10px;
    }
}

/* ===== 1025px and up (larger desktop) ===== */
@media (min-width: 1025px) {}

/* ===== 1441px and up (extra large) ===== */
@media (min-width: 1441px) {
    .lj-wrap {
        max-width: 1200px;
        margin: 0 auto;
    }
}