/* ============================================
   GOLD HUB - CQ8S Gold Section Styles
   ============================================ */

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F5E6B3;
    --gold-dark: #AA8C2C;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E6B3 50%, #D4AF37 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    --gold-border: rgba(212, 175, 55, 0.4);
}

/* ============================================
   GOLD CTA SECTION - Homepage
   ============================================ */

.gold-cta-section {
    position: relative;
    padding: 60px 0;
    margin: 40px 0;
    background: linear-gradient(180deg, #FFFEF7 0%, #FFF9E6 100%);
    overflow: hidden;
}

.gold-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gold-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: stretch;
}

/* Left Column - Content */
.gold-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gold-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Tajawal', sans-serif;
}

.gold-cta-title .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-cta-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 500px;
}

/* Price Ticker Strip */
.gold-price-ticker {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    padding: 12px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.gold-price-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gold-price-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.gold-price-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-dark);
}

.gold-price-update {
    font-size: 11px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gold-price-update i {
    color: #4CAF50;
}

/* CTA Buttons */
.gold-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.gold-btn-group-primary {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gold-btn-group-secondary {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Gold Button Styles */
.btn--gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
}

.btn--gold-primary {
    background: var(--gold-gradient);
    color: #1a1a1a;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn--gold-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow), 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #1a1a1a;
}

.btn--gold-primary i {
    font-size: 16px;
}

.btn--gold-secondary {
    background: #fff;
    color: #555;
    border: 1px solid #e0e0e0;
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 8px;
}

.btn--gold-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-dark);
    background: rgba(212, 175, 55, 0.05);
}

.btn--gold-secondary i {
    color: var(--gold-primary);
}

/* Advantages List */
.gold-advantages {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gold-advantage-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.gold-advantage-item i {
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gold-dark);
}

/* Right Column - Captain Card */
.gold-captain-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    border: 2px solid var(--gold-border);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.gold-captain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.gold-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.gold-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFF9E6 0%, #F5E6B3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-border);
}

.gold-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold-dark);
}

.gold-card-icon i {
    font-size: 24px;
    color: var(--gold-dark);
}

.gold-card-title-wrap h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.gold-card-title-wrap span {
    font-size: 13px;
    color: #888;
}

/* Trust Badges */
.gold-trust-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.gold-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #166534;
}

.gold-badge i {
    font-size: 10px;
}

.gold-badge--gold {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-border);
    color: var(--gold-dark);
}

/* Stats Row */
.gold-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.gold-stat-item {
    text-align: center;
    padding: 15px 10px;
    background: #FAFAFA;
    border-radius: 10px;
    border: 1px solid #eee;
}

.gold-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold-dark);
    display: block;
}

.gold-stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* Karat Dropdown */
.gold-karat-dropdown {
    margin-bottom: 20px;
}

.gold-karat-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Tajawal', sans-serif;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gold-karat-select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.gold-karat-info {
    margin-top: 10px;
    padding: 10px 12px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    display: none;
}

.gold-karat-info.active {
    display: block;
}

/* Card Actions */
.gold-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gold-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.gold-card-btn--primary {
    background: var(--gold-gradient);
    color: #1a1a1a;
    border: none;
}

.gold-card-btn--primary:hover {
    box-shadow: var(--gold-glow);
    transform: translateY(-1px);
}

.gold-card-btn--outline {
    background: transparent;
    color: #555;
    border: 1px solid #ddd;
}

.gold-card-btn--outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-dark);
}

.gold-card-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

/* ============================================
   GOLD PAGE STYLES
   ============================================ */

/* Gold Page Banner */
.gold-page-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.gold-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.gold-page-banner .container {
    position: relative;
    z-index: 1;
}

.gold-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.gold-page-title i {
    color: var(--gold-primary);
    margin-left: 10px;
}

.gold-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.gold-page-breadcrumb a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gold-page-breadcrumb a:hover {
    color: var(--gold-primary);
}

.gold-page-breadcrumb span {
    color: var(--gold-primary);
}

.gold-page-breadcrumb i {
    color: #666;
    font-size: 10px;
}

/* Gold Page Content */
.gold-page-content {
    padding: 50px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

/* Coming Soon Placeholder */
.gold-coming-soon {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
    border: 2px dashed var(--gold-border);
    max-width: 600px;
    margin: 0 auto;
}

.gold-coming-soon-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFF9E6 0%, #F5E6B3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid var(--gold-border);
}

.gold-coming-soon-icon i {
    font-size: 32px;
    color: var(--gold-dark);
}

.gold-coming-soon h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.gold-coming-soon p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.gold-coming-soon .btn--gold {
    margin-top: 10px;
}

/* ============================================
   GOLD STORES
   ============================================ */

.gold-stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Store Card */
.gold-store-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.gold-store-card:hover {
    border-color: var(--gold-border);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.gold-store-image {
    height: 160px;
    background: linear-gradient(135deg, #f5f5f5 0%, #eee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gold-store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gold-store-image .placeholder-icon {
    font-size: 48px;
    color: #ccc;
}

.gold-store-verified {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #22C55E;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gold-store-verified i {
    font-size: 10px;
}

.gold-store-body {
    padding: 20px;
}

.gold-store-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.gold-store-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.gold-store-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}

.gold-store-info-item i {
    width: 20px;
    color: var(--gold-primary);
}

.gold-store-links {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.gold-store-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gold-store-link:hover {
    background: var(--gold-primary);
    color: #fff;
}

.gold-store-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ============================================
   GOLD CALCULATOR
   ============================================ */

.gold-calculator-container {
    max-width: 800px;
    margin: 0 auto;
}

.gold-calculator-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gold-border);
}

.gold-calculator-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 25px 30px;
    text-align: center;
    position: relative;
}

.gold-calculator-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.gold-calculator-header h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.gold-calculator-header h3 i {
    color: var(--gold-primary);
    margin-left: 10px;
}

.gold-calculator-body {
    padding: 30px;
}

.gold-calc-form-group {
    margin-bottom: 25px;
}

.gold-calc-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.gold-calc-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
}

.gold-calc-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.gold-calc-input::placeholder {
    color: #aaa;
}

.gold-calc-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Tajawal', sans-serif;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gold-calc-select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.gold-calc-hint {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

.gold-calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gold-calc-result {
    background: linear-gradient(135deg, #FFF9E6 0%, #F5E6B3 100%);
    border: 2px solid var(--gold-border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 10px;
}

.gold-calc-result-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.gold-calc-result-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-dark);
}

.gold-calc-result-currency {
    font-size: 18px;
    color: #888;
    margin-right: 5px;
}

.gold-calc-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold-gradient);
    border: 2px solid var(--gold-primary);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.gold-calc-btn:hover {
    box-shadow: var(--gold-glow), 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   GOLD KARATS
   ============================================ */

.gold-karats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gold-karat-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gold-karat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--karat-color, var(--gold-primary));
}

.gold-karat-card:hover {
    border-color: var(--gold-border);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.gold-karat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.gold-karat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-dark);
}

.gold-karat-number span {
    font-size: 16px;
    color: #888;
    font-weight: 600;
}

.gold-karat-purity {
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
}

.gold-karat-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.gold-karat-uses {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.gold-karat-uses i {
    color: var(--gold-primary);
}

/* ============================================
   GOLD CHART
   ============================================ */

.gold-chart-container {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #eee;
}

.gold-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

.gold-chart-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gold-chart-title i {
    color: var(--gold-primary);
}

.gold-chart-timeframes {
    display: flex;
    gap: 8px;
}

.gold-timeframe-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.gold-timeframe-btn:hover,
.gold-timeframe-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #1a1a1a;
}

.gold-chart-body {
    padding: 30px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-chart-placeholder {
    text-align: center;
    color: #888;
}

.gold-chart-placeholder svg {
    width: 100%;
    max-width: 600px;
    height: 300px;
}

.gold-chart-placeholder p {
    margin-top: 20px;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .gold-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gold-cta-title {
        font-size: 26px;
    }

    .gold-captain-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .gold-calc-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .gold-cta-section {
        padding: 40px 0;
    }

    .gold-cta-title {
        font-size: 22px;
    }

    .gold-cta-subtitle {
        font-size: 14px;
    }

    .gold-btn-group-primary {
        flex-direction: column;
    }

    .btn--gold-primary {
        width: 100%;
        justify-content: center;
    }

    .gold-btn-group-secondary {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .gold-price-ticker {
        flex-direction: column;
        text-align: center;
    }

    .gold-advantages {
        flex-direction: column;
        gap: 12px;
    }

    .gold-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .gold-stat-value {
        font-size: 18px;
    }

    .gold-stores-grid {
        grid-template-columns: 1fr;
    }

    .gold-karats-grid {
        grid-template-columns: 1fr;
    }

    .gold-chart-header {
        flex-direction: column;
        text-align: center;
    }

    .gold-chart-timeframes {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   GOLD CTA SECTION - IMPROVED DESIGN
   ============================================ */

/* Live price indicator */
.gold-live-dot {
    color: #22C55E !important;
    font-size: 8px !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Improve CTA wrapper for RTL */
.gold-cta-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 350px !important;
    gap: 40px !important;
    align-items: stretch !important;
    direction: rtl !important;
}

/* Gold text gradient */
.gold-cta-title {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Better button styling */
.btn--gold-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F5E6B3 50%, #D4AF37 100%) !important;
    background-size: 200% 200% !important;
    animation: goldShimmer 3s ease infinite !important;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Captain card improvements */
.gold-captain-card {
    background: linear-gradient(180deg, #FFFEF7 0%, #fff 100%) !important;
}

/* Karat info active state */
.gold-karat-info.active {
    display: block !important;
    animation: fadeIn 0.3s ease !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .gold-cta-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    .gold-captain-card {
        max-width: 100% !important;
    }
}

/* Price ticker improvements */
.gold-price-ticker {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(212, 175, 55, 0.08) 100%) !important;
}

.gold-price-value {
    font-weight: 800 !important;
    font-size: 16px !important;
}
