/* Alerts / notices / breadcrumbs / separators */

.notice {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;

  width: min(92vw, 720px);
  text-align: center;

  padding: 12px 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  font-size: 1.8rem;
  font-weight: 500;
}

.notice.is-success {
  background: #d4af37;
  color: #fff;
}

.notice.is-error {
  background: #d4af37;
  color: #fff;
}

/* χρωματικές καταστάσεις */
.notice.is-success {
  background: #d4af37;
  color: #fff;
}
.notice.is-error {
  background: #d4af37;
  color: #fff;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumbs li {
  color: var(--muted);
}
.breadcrumbs a {
  color: var(--muted);
}
.breadcrumbs li + li::before {
  content: "/";
  margin: 0 0.5rem;
  color: #c3c3c3;
}
.cta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.btn-a {
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid #d4af37;
  font-weight: 600;
}

/* Separator */
.sep {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}
.gallery-open {
  cursor: zoom-in;
  display: block;
}
