/* Business-Hours-Widget — Mirror-only static replacement for disabled Elfsight Widget */

.bh-widget {
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.85em;
  font-size: 0.95rem;
  color: #1a1a1a;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding-top: 2em;
}

.bh-widget__row {
  display: flex;
  align-items: flex-start;
  gap: 0.85em;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

a.bh-widget__row:hover {
  color: #c9a063;
}

.bh-widget__icon {
  flex: 0 0 auto;
  width: 1.4em;
  height: 1.4em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.bh-widget__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bh-widget__text {
  flex: 1;
  line-height: 1.4;
  min-width: 0;
  word-break: break-word;
}

/* Hours row — toggleable */
.bh-widget__hours {
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  text-align: left;
  width: 100%;
  align-items: flex-start;
}

.bh-widget__hours-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  min-width: 0;
}

.bh-widget__hours-header {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.bh-widget__hours-status {
  font-weight: 600;
  flex: 0 0 auto;
}

.bh-widget__hours-status--open {
  color: #2e8b57;
}

.bh-widget__hours-status--closed {
  color: #c9a063;
}

.bh-widget__hours-chevron {
  width: 0.85em;
  height: 0.85em;
  transition: transform 0.25s ease;
  color: #888;
  flex: 0 0 auto;
}

.bh-widget__hours.is-open .bh-widget__hours-chevron {
  transform: rotate(180deg);
}

.bh-widget__hours-next {
  font-size: 0.82rem;
  color: #888;
}

.bh-widget__hours-list {
  display: none;
  margin: 0.75em 0 0;
  padding: 1.1em 1.25em;
  background: #1a1a1a;
  color: #f0f0f0;
  border-radius: 8px;
  list-style: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bh-widget__hours.is-open + .bh-widget__hours-list {
  display: block;
}

.bh-widget__hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.45em 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bh-widget__hours-list li:last-child {
  border-bottom: 0;
  margin-top: 0.4em;
  padding-top: 0.85em;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.bh-widget__hours-list li.is-today {
  font-weight: 700;
  color: #c9a063;
}
