.gold-price-mode {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    margin: 0 0 5px;
    padding: 2px;
    border: 1px solid rgba(184, 134, 11, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .58);
}

.gold-price-mode__tab {
    appearance: none;
    min-height: 30px;
    padding: 5px 10px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.25;
    cursor: pointer;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.gold-price-mode__tab:hover {
    color: var(--gold-dark);
}

.gold-price-mode__tab:focus-visible {
    outline: 2px solid #7a5800;
    outline-offset: 2px;
}

.gold-price-mode__tab.is-active {
    background: #fff;
    color: var(--gold-deep);
    box-shadow: 0 2px 9px rgba(95, 65, 0, .12);
}

.gold-price-mode__tab:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.gold-price-mode__estimate {
    display: inline-block;
    margin-inline-start: 3px;
    padding: 1px 4px;
    border-radius: 999px;
    background: rgba(184, 134, 11, .12);
    color: var(--gold-dark);
    font-size: 9.5px;
    font-weight: 900;
    line-height: 1.35;
    vertical-align: 1px;
}

.gold-price-mode__note {
    min-height: 18px;
    margin: 0 0 8px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.55;
}

.gold-main-card.is-estimated-local .karat-item.featured {
    background: linear-gradient(160deg, #fff 0%, #fff8df 100%);
}

[data-gold-price-value] {
    font-variant-numeric: tabular-nums;
}

.gold-price-mode-count-up,
.gold-price-mode-count-down {
    color: inherit;
}

.gold-price-mode-counting {
    text-shadow: 0 0 9px rgba(184, 134, 11, .28);
}

[data-gold-price-mode-card] .change-badge__context {
    padding-inline-end: 1px;
    font-family: Cairo, sans-serif;
    font-size: 9px;
    font-weight: 900;
    opacity: .78;
}

[data-gold-price-mode-card].is-estimated-local .price-source-mini {
    opacity: .86;
}

html[data-theme="night"] .gold-price-mode {
    border-color: rgba(226, 186, 72, .25);
    background: rgba(255, 255, 255, .04);
}

html[data-theme="night"] .gold-price-mode__tab.is-active {
    background: rgba(226, 186, 72, .16);
    color: var(--gold-light);
    box-shadow: none;
}

html[data-theme="night"] .gold-price-mode__tab:hover {
    color: var(--gold-light);
}

html[data-theme="night"] .gold-price-mode__estimate {
    background: rgba(226, 186, 72, .15);
    color: var(--gold-light);
}

@media (prefers-reduced-motion: reduce) {
    .gold-price-mode__tab {
        transition: none;
    }
}

@media (max-width: 520px) {
    .gold-price-mode {
        display: inline-grid;
        width: auto;
    }

    .gold-price-mode__tab {
        min-height: 28px;
        padding: 4px 8px;
        font-size: 11px;
    }

    .gold-price-mode__note {
        min-height: 35px;
    }
}
