/* =============================================
   CROWN GEM — TOPBAR CSS
   Styles for the top promotional bar only
   ============================================= */

.top-bar {
  background: var(--dark);
  color: #aaa;
  font-size: 11px;
  padding: 8px 0;
  position: relative;
  transition: transform 0.3s ease;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* --- Social Icons (Left) --- */
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-left a {
  color: #aaa;
  font-size: 12px;
  transition: color var(--transition);
}

.top-bar-left a:hover {
  color: var(--gold);
}

/* --- Promo Text (Center) --- */
.top-bar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.top-bar-center a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

.top-bar-center strong {
  color: var(--gold);
}

/* --- Contact & Currency (Right) --- */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  color: #aaa;
}

.top-bar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
  transition: color var(--transition);
}

.top-bar-right a:hover {
  color: var(--gold);
}

.top-bar-right i {
  font-size: 12px;
}

.currency-select {
  background: none;
  border: none;
  color: #aaa;
  font-size: 11px;
  font-family: var(--sans);
  cursor: pointer;
  outline: none;
}

.currency-select option {
  background: #222;
  color: #eee;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .top-bar-center {
    display: none;
  }
}

@media (max-width: 600px) {
  .top-bar-right a:first-child {
    display: none;
  }
}
