.location-gate-page {
    margin: 0;
    min-height: 100vh;
    background: #111827;
}

.location-gate {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.location-gate__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.35) 0%, rgba(17, 24, 39, 0.72) 100%);
}

.location-gate__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
}

.location-gate__brand {
    text-align: center;
    margin-bottom: 20px;
}

.location-gate__brand img {
    max-height: 52px;
    width: auto;
}

.location-gate__card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

.location-gate__heading {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
    margin-bottom: 10px;
    text-align: center;
}

.location-gate__subheading {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 22px;
}

.location-gate__field {
    margin-bottom: 14px;
}

.location-gate__input,
.location-gate__field gmp-place-autocomplete {
    width: 100%;
    min-height: 52px;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 16px;
}

.location-gate__submit {
    min-height: 52px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
}

.location-gate__geo-btn {
    width: 100%;
    margin-top: 14px;
    border: 0;
    background: transparent;
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
}

.location-gate__geo-btn:hover {
    color: var(--color-yellow, #f59e0b);
}

.location-gate__loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-gate__loader-inner {
    text-align: center;
    color: #fff;
}

.location-gate__loader-inner p {
    margin-top: 14px;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .location-gate__card {
        padding: 22px 18px 18px;
    }
}
