.gold-container-outer {
    margin-bottom: 2em;
    --gold-color: #d3a01e;
    --gold-bg: #FFD700;
    --gold-bg-light: #fffbe3;
    --gold-bg-dark: #85630e;
}
.gold-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
    direction: ltr;
}
.gold-box {
    margin-top: 40px;
    border: 3px solid var(--gold-bg);
    border-radius: 20px;
    padding: 1em;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.6s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) inset;;
}
.gold-icon-container {
    margin-top: calc(-1em - 35px);
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
    background: var(--gold-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}
.gold-icon {
    width: 100%;
    height: 100%;
    padding: 3px;
}
.karat-label {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.rate-value {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 800;
    color: var(--gold-color);
    margin: 10px 0;
}
.rate-unit {
    font-size: clamp(11px, 1.2vw, 13px);
    color: var(--gold-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gold-container-outer table {
    text-align: center;
    --bg-color-2: var(--gold-bg-light);
}

.gold-container-outer table thead {
    --bs-table-bg: var(--gold-bg-dark);
}

