/* ═══════════════════════════════════════
   Arsa Borsası — Base / Site CSS
   ═══════════════════════════════════════ */

/* Skip Link */
.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  padding: 10px 18px;
  background: var(--forest, #0d2d22);
  color: white;
  border-radius: 0 0 8px 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  z-index: 999;
  transition: top .3s ease;
}
.skip-link:focus { top: 0; }

/* Base Link Reset */
a { color: inherit; }

/* Sticky CTA (if used) */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 18;
  display: none;
}
@media (max-width: 768px) {
  .sticky-cta { display: block; }
}
