.gv-top-up-panel-header {
    position: relative;
    /* Fix full width breakout */
    width: 100vw;
    height: 23rem;
    background-size: cover !important;
    background-position: center 0%;
    background-repeat: no-repeat !important;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* Align content to the bottom */
    box-sizing: border-box;
}

.gv-top-up-panel-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 95%) 0%, rgb(0 0 0 / 40%) 25%, rgb(0 0 0 / 0%) 50%), linear-gradient(90deg, rgb(0 0 0) 0%, rgb(0 0 0 / 70%) 40%, rgb(0 0 0 / 0%) 100%);
    z-index: 1;
}

.gv-top-up-panel-header-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 3rem;
    box-sizing: border-box;
}

.gv-top-up-panel-header-content {
    display: flex;
    align-items: center;
    /* Keep image and text aligned with each other vertically */
    justify-content: flex-start;
    /* Align everything to the left */
    gap: 1.5rem;
}

.gv-top-up-panel-thumb img {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 1rem !important;
    /* Noticeable rounded corners */
    object-fit: cover;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.5);
    display: block;
}

.gv-top-up-panel-info {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gv-top-up-panel-title {
    margin: 0;
    font-size: 2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    line-height: 1 !important;
    letter-spacing: 0.03125rem;
    color: #ffffff;
}

.gv-top-up-panel-region {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gv-amber, #ffb800);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    line-height: 1;
}

.gv-top-up-panel-region strong {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.gv-region-flag {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

.gv-region-flag:hover {
    transform: scale(1.2) translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.gv-multi-region-flag {
    margin-left: -0.15rem;
    border: 0.0625rem solid #1a2235;
}
.gv-top-up-panel-region strong + .gv-multi-region-flag {
    margin-left: 0.15rem;
}

.gv-top-up-panel-delivery {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gv-header-meta-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.gv-header-meta-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.gv-header-dt-label {
    color: rgba(255, 255, 255, 0.55);
}

.gv-header-dt-value {
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.gv-header-dt-value.gv-header-dt-instant {
    color: var(--gv-amber, #ffb800);
}

.gv-header-flash-icon {
    height: 1rem !important;
    width: auto;
    animation: gvHeaderFlashPulse 1.4s ease-in-out infinite;
    display: inline-block;
}

@keyframes gvHeaderFlashPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(0.82);
    }
}

/* ── Important Note ───────────────────────────────────────────────── */
.gv-header-important-note {
    display: flex;
    align-items: flex-start;
    max-width: 40rem !important;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.5rem;
    max-width: fit-content;
}

.gv-note-icon {
    width: 0.875rem;
    height: 0.875rem;
    color: #ef4444;
    /* red */
    flex-shrink: 0;
}

.gv-note-content {
    display: inline;
    font-size: 0.75rem;
    line-height: 1.4;
}

.gv-note-label {
    font-weight: 700;
    color: #ef4444;
    margin-right: 0.25rem;
}

.gv-note-text {
    color: rgba(255, 255, 255, 0.9);
}

/* ── Feature Badges Bar ───────────────────────────────────────────── */
.gv-header-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
    padding-bottom: 0.875rem;
}

.gv-top-up-panel-breadcrumbs {
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 768px) {
    .gv-header-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.gv-header-badges {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.5rem 1.25rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.gv-header-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gv-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.625rem;
    flex-shrink: 0;
}

.gv-badge-icon svg {
    width: 0.9rem;
    height: 0.9rem;
    stroke: #ffb800;
}

.gv-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.gv-badge-text strong {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.gv-badge-text span {
    font-family: 'Manrope', sans-serif;
    font-size: 0.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.2;
}

.gv-header-badge-sep {
    width: 1px;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 1.5rem;
    flex-shrink: 0;
}