/* ── Geo-Tool section ─────────────────────────────────────────────────────── */
.geo-tool-section {
    padding: 60px 0 80px;
    background: var(--secondary-color, #F8F8F8);
}
.geo-tool-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(3,29,54,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.geo-tool-card-head { margin-bottom: 22px; }
.geo-tool-card-head h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color, #031D36);
    margin-bottom: 4px;
}
.geo-tool-card-head p {
    font-size: 14px;
    color: #6b7a8d;
    margin-bottom: 0;
}
/* Quota banner */
.geo-quota-banner {
    background: var(--primary-color, #031D36);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: #fff;
}
.geo-quota-text { flex: 1; font-size: 15px; }
.geo-quota-text strong { color: #9ABAE0; }
.geo-quota-text .quota-ok  { color: #4ade80; font-weight: 600; }
.geo-quota-text .quota-low { color: #fbbf24; font-weight: 600; }
/* Upload zone */
.geo-upload-zone {
    border: 2px dashed rgba(10,73,166,0.25);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: var(--secondary-color, #F8F8F8);
}
.geo-upload-zone:hover,
.geo-upload-zone.drag-over {
    border-color: var(--accent-color, #0A49A6);
    background: rgba(10,73,166,0.04);
}
.geo-upload-zone .upload-icon { font-size: 34px; margin-bottom: 8px; }
.geo-upload-zone p { margin-bottom: 0; font-size: 14px; color: #6b7a8d; }
.geo-upload-zone p.upload-title { font-size: 15px; font-weight: 600; color: var(--primary-color); margin-bottom: 2px; }
/* Map */
#geo-map { height: 300px; border-radius: 14px; border: 1px solid rgba(3,29,54,0.1); overflow: hidden; }
.geo-coords { display: flex; gap: 10px; margin-top: 10px; }
.geo-coords input {
    flex: 1;
    border: 1px solid rgba(3,29,54,0.12);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    background: var(--secondary-color);
    color: var(--primary-color);
    outline: none;
}
.geo-address-line {
    font-size: 13px;
    color: #6b7a8d;
    margin-top: 8px;
    min-height: 18px;
}
/* Tag button */
.geo-tag-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
    text-align: center;
}
.geo-tag-btn::before { display: none !important; }
.geo-tag-btn:disabled,
.geo-tag-btn[disabled] {
    opacity: 0.45;
    pointer-events: none;
}
/* Tag result */
#tag-result { margin-top: 14px; }
#tag-result .geo-result-msg {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
}
#tag-result .geo-result-msg.success {
    background: rgba(74,222,128,0.12);
    color: #166534;
    border: 1px solid rgba(74,222,128,0.3);
}
#tag-result .geo-result-msg.danger {
    background: rgba(239,68,68,0.1);
    color: #991b1b;
    border: 1px solid rgba(239,68,68,0.25);
}
/* Tagged images list */
.geo-images-scroll { flex: 1; }
/* Pagination — use site .page-pagination but smaller inside the card */
.geo-tool-card .page-pagination { margin-top: 14px; }
.geo-tool-card .page-pagination ul li a,
.geo-tool-card .page-pagination ul li span {
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-radius: 8px;
    margin: 0 3px;
}
.geo-img-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(3,29,54,0.08);
    background: var(--secondary-color);
    margin-bottom: 10px;
    transition: border-color .2s;
}
.geo-img-card:hover { border-color: rgba(10,73,166,0.2); }
.geo-img-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(3,29,54,0.06);
}
.geo-img-thumb img { width: 100%; height: 100%; object-fit: cover; }
.geo-img-info { flex: 1; min-width: 0; }
.geo-img-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.geo-img-addr { font-size: 12px; color: #6b7a8d; }
.geo-img-coords { font-size: 11px; color: #9aa5b4; }
.geo-img-dl {
    background: none;
    border: none;
    padding: 4px 6px;
    cursor: pointer;
    color: var(--accent-color);
    font-size: 14px;
    flex-shrink: 0;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
    line-height: 1;
}
.geo-img-dl:hover { background: rgba(10,73,166,0.1); }
.geo-img-del {
    background: none;
    border: none;
    padding: 4px 6px;
    cursor: pointer;
    color: #ef4444;
    font-size: 15px;
    flex-shrink: 0;
    border-radius: 8px;
    transition: background .15s;
}
.geo-img-del:hover { background: rgba(239,68,68,0.1); }
.geo-empty {
    text-align: center;
    padding: 50px 20px;
    color: #9aa5b4;
}
.geo-empty-icon { font-size: 40px; margin-bottom: 12px; }
/* Email not verified */
.geo-verify-card {
    background: #fff;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(3,29,54,0.06);
}
.geo-verify-icon { font-size: 52px; margin-bottom: 16px; }
.geo-verify-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.geo-verify-card p { color: #6b7a8d; font-size: 15px; }

/* ── Map search ──────────────────────────────────────────────────────────── */
.geo-search-wrap { position: relative; }
.geo-search-row {
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    border: 1px solid rgba(3,29,54,0.12);
    border-radius: 12px;
    padding: 0 12px;
    transition: border-color .2s;
}
.geo-search-row:focus-within {
    border-color: var(--accent-color);
    background: #fff;
}
.geo-search-icon { font-size: 14px; margin-right: 8px; flex-shrink: 0; }
.geo-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: var(--primary-color);
    outline: none;
}
.geo-search-input::placeholder { color: #9aa5b4; }
.geo-search-clear {
    background: none;
    border: none;
    font-size: 18px;
    color: #9aa5b4;
    cursor: pointer;
    padding: 0 0 0 6px;
    line-height: 1;
}
.geo-search-clear:hover { color: #ef4444; }
.geo-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(3,29,54,0.1);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(3,29,54,0.12);
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 240px;
    overflow-y: auto;
}
.geo-search-results li {
    padding: 9px 14px;
    font-size: 13px;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: background .15s;
    line-height: 1.4;
}
.geo-search-results li:hover { background: rgba(10,73,166,0.06); }
.geo-search-results li .geo-sr-icon { flex-shrink: 0; margin-top: 1px; font-size: 13px; }
.geo-search-results li.geo-sr-empty { cursor: default; color: #9aa5b4; }
.geo-search-results li.geo-sr-empty:hover { background: none; }
.geo-search-results li.focused { background: rgba(10,73,166,0.08); }

/* ── Pricing section ──────────────────────────────────────────────────────── */
.geo-tag-pricing-section {
    padding: 80px 0 100px;
    background: #fff;
}
/* Let custom.css handle .pricing-item base styles — only add section-specific overrides */
.geo-tag-pricing-section .pricing-item {
    position: relative;
    overflow: hidden;
}
/* Diagonal corner ribbon — replaces the flat text from custom.css */
.geo-tag-pricing-section .pricing-item.highlighted-box::before {
    content: '⭐ Most Popular';
    display: block;
    position: absolute;
    top: 20px;
    right: -36px;
    width: 148px;
    text-align: center;
    background: #fff;
    color: var(--accent-color, #0A49A6);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 0;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(3,29,54,0.18);
    z-index: 3;
    line-height: 1.4;
}
/* Full-width buttons inside pricing cards */
.geo-tag-pricing-section .pricing-btn .btn-default,
.geo-tag-pricing-section .pricing-btn button.btn-default {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    box-sizing: border-box;
}
.geo-tag-pricing-section .pricing-btn .btn-default::before {
    display: none !important;
}
/* Free plan "Included Free" span */
.geo-tag-pricing-section .pricing-btn .geo-free-badge {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    background: rgba(10,73,166,0.07);
    color: var(--accent-color, #0A49A6);
    cursor: default;
}
