@font-face {
  font-family: 'Bitcount Grid Single';
  src: url('../fonts/BitcountGridSingle-Light.ttf') format('truetype');
  font-weight: 500;
  font-size: 18px;
  font-style: normal;
  font-display: swap;
}

#goldiamart-marquee-widget * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bitcount Grid Single", Sans-serif;
    text-transform: uppercase;
}

#goldiamart-marquee-widget .price-ticker {
    display: flex;
    /* Use flexbox to align selector and ticker */
    align-items: center;
    background-color: #000000;
    /* --dark */
    color: white;
    padding: 10px 0;
    font-weight: 500;
    overflow: hidden;
}

#goldiamart-marquee-widget .ticker-content {
    flex-grow: 1;
    /* Allow ticker to take remaining space */
    overflow: hidden;
}

#goldiamart-marquee-widget .ticker-content-inner {
    display: flex;
    animation: ticker 40s linear infinite;
}

#goldiamart-marquee-widget .ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 25px;
    white-space: nowrap;
}

#goldiamart-marquee-widget .ticker-item span {
    color: #A89D36;
    /* --secondary */
    font-weight: 600;
    margin-left: 8px;
}

#goldiamart-marquee-widget .ticker-item a {
    color: #A89D36;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 18px;
}

#goldiamart-marquee-widget .ticker-item a:hover {
    color: #A89D36;
    /* --secondary */
}

/* --- NEW: Currency Selector Styles --- */
#goldiamart-marquee-widget .currency-selector-container {
    padding: 0 15px;
    /* Spacing for the dropdown */
}

#goldiamart-marquee-widget .currency-selector-container select,
#goldiamart-marquee-widget .currency-selector-container select option {
    background-color: #495057;
    color: white;
    border: 1px solid #6c757d;
    border-radius: 4px;
    padding: 5px;
    font-family: inherit;
    cursor: pointer;
}

@keyframes ticker {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

div.currency-selector-container {
    width: 50%;
}

@media (max-width: 767px) {
  select#marquee-currency-selector {
    width: 100px;
    max-width: 120px;
  }
}