/* ── CTG Currency Switcher v1.3 ─────────────────────────── */

.ctg-currency {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ctg-currency__btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid, #6B4A3A);
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: inherit;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.ctg-currency__btn:hover {
  color: var(--primary, #4A2C24);
  background: rgba(74, 44, 36, 0.06);
}

.ctg-currency__btn.is-active {
  color: var(--primary, #4A2C24);
  font-weight: 700;
}

.ctg-currency__sep {
  color: var(--mid-gray, #E2D8CC);
  user-select: none;
  font-size: 12px;
}

/* Brown footer — flip colours */
.site-footer .ctg-currency .ctg-currency__btn {
  color: rgba(247, 240, 230, 0.7);
}
.site-footer .ctg-currency .ctg-currency__btn:hover,
.site-footer .ctg-currency .ctg-currency__btn.is-active {
  color: #F7F0E6;
  background: rgba(247, 240, 230, 0.1);
}
.site-footer .ctg-currency .ctg-currency__sep {
  color: rgba(247, 240, 230, 0.3);
}

/* Mobile header — compact so it fits beside the cart icon.
   Layout: [≡ hamburger] [CaretoGlow (flex:1 centered)] [🛍 $ USD | ₦ NGN]
   The hamburger is already left, logo already centered — no rearranging needed. */
@media (max-width: 768px) {
  .site-header .ctg-currency {
    display: flex;
    gap: 2px;
  }

  .site-header .ctg-currency .ctg-currency__btn {
    font-size: 11px;
    padding: 3px 6px;
    letter-spacing: 0;
    border-radius: 12px;
  }

  .site-header .ctg-currency .ctg-currency__sep {
    font-size: 10px;
  }
}
