.pdoh-widget {
  --pdoh-blue: #29465b;
  --pdoh-blue-dark: #20394c;
  --pdoh-blue-soft: #eef7f9;
  --pdoh-orange: #ff9600;
  --pdoh-muted: #657784;
  width: 100%;
  color: var(--pdoh-blue);
  font-family: inherit;
}

.pdoh-widget *,
.pdoh-widget *::before,
.pdoh-widget *::after {
  box-sizing: border-box;
}


.pdoh-notice {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: clamp(18px, 2.5vw, 26px);
  color: #ffffff;
  background: linear-gradient(90deg, var(--pdoh-orange) 0%, #e68600 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 20px rgba(32, 57, 76, 0.12);
}

.pdoh-notice__title {
  display: block;
  color: #ffffff;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pdoh-notice__text {
  max-width: 920px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.pdoh-notice__text p {
  margin: 0;
}

.pdoh-notice__text p + p {
  margin-top: 8px;
}

.pdoh-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(41, 70, 91, 0.14);
  background: #ffffff;
}

.pdoh-status--open {
  border-left: 6px solid var(--pdoh-orange);
}

.pdoh-status--closed {
  border-left: 6px solid var(--pdoh-blue);
}


.pdoh-status strong {
  display: block;
  color: var(--pdoh-blue);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.pdoh-status__times {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: var(--pdoh-blue-dark);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.pdoh-days {
  display: grid;
  gap: 10px;
}

.pdoh-day {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(41, 70, 91, 0.13);
}

.pdoh-day--open {
  border-left: 4px solid var(--pdoh-orange);
}

.pdoh-day--closed {
  background: #f6f9fa;
}

.pdoh-day__name {
  color: var(--pdoh-blue);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.pdoh-day__content {
  display: grid;
  gap: 8px;
}

.pdoh-slot {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.pdoh-slot__date {
  color: var(--pdoh-muted);
  font-size: 14px;
  font-weight: 800;
}

.pdoh-slot__time {
  color: var(--pdoh-blue-dark);
  font-size: 17px;
  font-weight: 900;
}

.pdoh-slot__note {
  color: var(--pdoh-muted);
  font-size: 14px;
}

.pdoh-closed-text {
  color: var(--pdoh-muted);
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .pdoh-status,
  .pdoh-day,
  .pdoh-slot {
    grid-template-columns: 1fr;
  }

  .pdoh-status__times {
    justify-items: start;
    white-space: normal;
  }

  .pdoh-day {
    gap: 8px;
  }

  .pdoh-slot {
    gap: 4px;
    padding-top: 4px;
  }
}

.pdoh-status__remaining {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  padding: 7px 11px;
  color: var(--pdoh-blue-dark);
  background: rgba(255, 150, 0, 0.13);
  border: 1px solid rgba(255, 150, 0, 0.32);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.pdoh-status__time {
  display: inline-flex;
  justify-content: flex-end;
  width: 100%;
}

.pdoh-status__time--current {
  color: var(--pdoh-orange);
}

@media (max-width: 760px) {
  .pdoh-status__remaining {
    width: 100%;
  }

  .pdoh-status__time {
    justify-content: flex-start;
  }
}
