/* ============================================================
   MechaPaint - salebar.css
   The launch-sale strip that sits directly under the nav header
   on every page. Replaces the old .topbar / "FREE FOREVER" band.
   Loaded after styles2.css.
   ============================================================ */

.salebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 9px 16px;
  background: #0a0d13;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-mid);
  text-align: center;
}

/* The invite line that sits directly under the sale strip. */
.salebar-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: #0a0d13;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-mid);
  text-align: center;
}

.salebar strong { color: var(--warn); font-weight: 700; }
.salebar s { opacity: 0.6; }

.salebar-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  white-space: nowrap;
  color: var(--warn);
  border: 1px solid var(--warn);
  border-radius: 4px;
  padding: 1px 8px;
}

/* The sale tag is a link to the store. Same hover treatment as the cyan
   Discord tag below it, in the warn color it already wears. */
.salebar-tag-link {
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.salebar-tag-link:hover {
  background: var(--warn);
  color: #1a1200;
}

/* Cyan twin of the sale tag. This one is a link to the Discord invite. */
.salebar-tag-cyan {
  color: #2ee6e6;
  border-color: #2ee6e6;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.salebar-tag-cyan:hover {
  background: #2ee6e6;
  color: #04181a;
}

.salebar-timer {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

@media (max-width: 620px) {
  .salebar {
    gap: 8px;
    padding: 8px 14px;
    font-size: 12.5px;
  }

  .salebar-timer { display: none; }

  .salebar-sub {
    padding: 7px 14px;
    font-size: 12.5px;
  }
}
