.status-card {
  width: fit-content;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  margin-bottom: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.status-dot-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.status-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.status-content strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  transition: color 0.2s ease;
}

/* OTVORENÉ */
.status-card.is-open {
  border-color: rgba(17, 155, 37, 0.18);
}

.status-card.is-open .status-dot-wrap {
  background: var(--green-soft);
}

.status-card.is-open .status-dot {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(17, 155, 37, 0.12);
}

.status-card.is-open .status-content strong {
  color: var(--green);
}

/* ZATVORENÉ */
.status-card.is-closed {
  border-color: rgba(217, 31, 31, 0.18);
}

.status-card.is-closed .status-dot-wrap {
  background: var(--red-soft);
}

.status-card.is-closed .status-dot {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(217, 31, 31, 0.12);
}

.status-card.is-closed .status-content strong {
  color: var(--red);
}


/* Detail otváracích hodín pod hlavným stavom */
.opening-status-detail,
.status-content span {
  display: block;
  margin-top: 4px;
  color: var(--muted, #6b7280);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.status-card.is-open .opening-status-detail,
.status-card.is-open .status-content span {
  color: rgba(17, 155, 37, 0.78);
}

.status-card.is-closed .opening-status-detail,
.status-card.is-closed .status-content span {
  color: rgba(217, 31, 31, 0.78);
}

.status-card.is-loading {
  border-color: rgba(255, 61, 0, 0.18);
}

.status-card.is-loading .status-dot-wrap {
  background: rgba(255, 61, 0, 0.08);
}

.status-card.is-loading .status-dot {
  background: var(--orange, #ff3d00);
  box-shadow: 0 0 0 6px rgba(255, 61, 0, 0.1);
}

.status-card.is-loading .status-content strong {
  color: var(--orange, #ff3d00);
}
