/* [c8] */

/* [c3] */

/* [c4] */
.st-geo-overlay {
    position: fixed; inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.97);
    background: color-mix(in srgb, var(--st-bg) 97%, transparent);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.st-geo-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.st-geo-card {
    max-width: 420px;
    width: 100%;
    text-align: center;
}
.st-geo-icon {
    width: 52px; height: 52px;
    margin: 0 auto 16px;
    color: var(--st-accent);
}
.st-geo-icon svg { width: 100%; height: 100%; }
.st-geo-card h2 {
    margin: 0 0 10px;
    font-family: var(--st-font-heading);
    font-weight: var(--st-weight-heading, 700);
    font-size: 1.45rem;
    color: var(--st-text);
    line-height: 1.25;
}
.st-geo-card p {
    margin: 0 0 20px;
    font-size: 0.95rem;
    color: var(--st-text-soft);
    line-height: 1.5;
}
.st-geo-card .st-btn { min-width: 180px; }
/* [c5] */
.st-geo-overlay[data-state="blocked"] .st-geo-icon { color: var(--st-danger, #c0392b); }
.st-geo-busy {
    display: none;
    margin: 14px auto 0;
    width: 26px; height: 26px;
    border: 3px solid var(--st-border);
    border-top-color: var(--st-accent);
    border-radius: 50%;
    animation: st-geo-spin 0.8s linear infinite;
}
.st-geo-overlay[data-busy="1"] .st-geo-busy { display: block; }
.st-geo-overlay[data-busy="1"] .st-geo-actions { visibility: hidden; }
@keyframes st-geo-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .st-geo-overlay { transition: none; }
    .st-geo-busy { animation-duration: 1.6s; }
}

/* [c9] */

/* [c10] */
.st-modal.st-claim-modal {
    background: linear-gradient(rgba(15, 14, 12, 0.55), rgba(15, 14, 12, 0.55)), var(--st-bg);
}

/* [c11] */
.st-claim-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 26px 22px 0;
    flex: none;
}
.st-claim-card {
    margin: 0;
    width: min(128px, 33%);
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: var(--st-surface);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}
.st-claim-card img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
}
.st-claim-card-before { transform: rotate(-4deg); }
.st-claim-arrow {
    width: 24px; height: 24px;
    flex: none;
    color: var(--st-text-faint);
}
/* [c12] */
.st-claim-card-after {
    transform: rotate(4deg);
    background:
        radial-gradient(90% 120% at 18% 12%, #9fd3e8 0%, rgba(159, 211, 232, 0) 55%),
        radial-gradient(120% 130% at 85% 20%, #6fb7d6 0%, rgba(111, 183, 214, 0) 60%),
        radial-gradient(130% 120% at 70% 95%, #5f9c6d 0%, rgba(95, 156, 109, 0) 65%),
        linear-gradient(160deg, #bfe3ef 0%, #8cc7b1 55%, #4f8f66 100%);
    animation: st-claim-glow 2.8s ease-in-out infinite;
}
.st-claim-card-after img {
    filter: blur(14px) saturate(1.15);
    transform: scale(1.45);
}
.st-claim-wand {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.st-claim-wand svg {
    width: 34px; height: 34px;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.4));
}
@keyframes st-claim-glow {
    0%, 100% { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18), 0 0 12px var(--st-glow, rgba(0, 0, 0, 0.10)); }
    50%      { box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18), 0 0 30px 4px var(--st-glow-strong, rgba(0, 0, 0, 0.20)); }
}
@media (prefers-reduced-motion: reduce) {
    /* [c13] */
    .st-claim-card-after {
        animation: none;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18), 0 0 20px var(--st-glow, rgba(0, 0, 0, 0.10));
    }
}
/* [c14] */
.st-claim-back {
    display: block;
    margin: 4px auto 0;
}

/* [c15] */

.st-zip-note {
    margin: 4px 2px 0;
    font-size: 0.8rem;
    line-height: 1.35;
}
.st-zip-note.is-bad { color: var(--st-danger, #c0392b); }
.st-zip-note.is-place { color: var(--st-text-soft); }
.st-input.st-input-bad { border-color: var(--st-danger, #c0392b); }

/* [c6] */

/* [c7] */
.st-consent + .st-consent { margin-top: 2px; }

/* [c16] */
.st-consent-note {
    margin: 14px 2px 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--st-text-soft);
}
.st-consent-note + .st-consent { margin-top: 8px; }

/* [c17] */
.st-consent-optional { align-items: flex-start; }
.st-consent-optional > span { line-height: 1.45; }

/* [c18] */
.st-consent-tag {
    display: inline-block;
    margin-right: 6px;
    padding: 1px 6px;
    border: 1px solid var(--st-border);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--st-text-faint, var(--st-text-soft));
    white-space: nowrap;
    vertical-align: 1px;
}

.st-gate-apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
}
@media (max-width: 480px) {
    .st-gate-apply-grid { grid-template-columns: 1fr; gap: 0; }
}
#gate-apply textarea.st-input { resize: vertical; min-height: 74px; }
#gate-apply .st-label {
    display: block;
    margin: 6px 0 0;
    font-size: 0.78rem;
    color: var(--st-text-soft);
}
.st-gate-closed,
.st-gate-applied {
    text-align: center;
    padding: 26px 8px 14px;
}
.st-gate-closed p,
.st-gate-applied p {
    margin: 10px 0 0;
    color: var(--st-text-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}
.st-gate-applied h3,
.st-gate-closed h3 {
    margin: 0;
    font-family: var(--st-font-heading);
    font-weight: var(--st-weight-heading, 700);
    font-size: 1.2rem;
    color: var(--st-text);
}
.st-gate-applied .st-checkmail-icon { font-size: 2.2rem; margin-bottom: 8px; }
