/* GEO Price Converter — Frontend v3.0 */

/* ── Converted price — inherits ALL Elementor font styles ── */
.gpc-converted {
    display: inline;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
}
.gpc-sym {
    display: inline;
    font: inherit;
    font-size: 0.62em;
    vertical-align: super;
    margin-right: 1px;
    font-weight: inherit;
}
.gpc-amount {
    display: inline;
    font: inherit;
}

/* Flash animation when rate updates */
.gpc-flash {
    animation: gpc-flash-anim 0.6s ease-out;
}
@keyframes gpc-flash-anim {
    0%   { opacity: 0.3; }
    50%  { opacity: 1; color: #4ade80; }
    100% { opacity: 1; }
}

/* ── Live Badge ─────────────────────────────────────────── */
.gpc-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    cursor: default;
    user-select: none;
}

/* Green blinking live dot */
.gpc-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: gpc-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes gpc-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.75); background: #22c55e; }
    50%  { box-shadow: 0 0 0 6px rgba(34,197,94,0);  background: #16a34a; }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0);    background: #22c55e; }
}

/* Country code — 3 letters, bold */
.gpc-country-name {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: inherit;
}

/* Label text e.g. "Price Accordingly" */
.gpc-badge-label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.82;
    letter-spacing: 0.2px;
}

/* Separator */
.gpc-badge-sep {
    opacity: 0.35;
    font-weight: 300;
    font-size: 13px;
}
