.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.stats div {
  background: #ecfdf5;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 20px;
}

.stats span {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.quick-buttons,
.quick-hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 10px 0 16px;
}

.quick-buttons button,
.quick-hours button {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #0f766e;
  background: #ecfdf5;
  color: #065f46;
  font-weight: bold;
}

.hours-grid {
  grid-template-columns: repeat(5, 1fr);
}

.hours-grid button {
  font-size: 14px;
  padding: 10px 4px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stats div {
  background: #ecfdf5;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 18px;
}

.stats span {
  font-size: 12px;
  color: #64748b;
}

.week-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.week-nav a {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #0f766e;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.week-range {
  color: #64748b;
  margin-bottom: 0;
}

.week-grid {
  max-width: 900px;
  margin: 0 auto 40px;
  display: grid;
  gap: 12px;
}

.day-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.day-card.today {
  border: 2px solid #0f766e;
}

.day-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.day-head span,
.day-sum span,
.muted {
  color: #64748b;
  font-size: 13px;
}

.holiday-note {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 8px;
}

.open-hours {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 8px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-weight: bold;
}

@media (min-width: 900px) {
  .week-grid {
    grid-template-columns: repeat(7, 1fr);
    max-width: 1500px;
    align-items: start;
  }

  .day-card {
    min-height: 220px;
  }

  .day-head {
    display: block;
  }

  .day-sum {
    margin-top: 8px;
  }
}
