/* =====================================================
   Oma Toos — Openingstijden widget
   Alle kleuren overschrijfbaar via Elementor Style-panels
   ===================================================== */

.otot-wrap {
  background-color: #FFFFFF;
  color: #1C3146;
  padding: 32px;
  border-radius: 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  box-shadow: 0 4px 20px rgba(28, 49, 70, 0.06);
  max-width: 480px;
  width: 100%;
}

.otot-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: #EA4E38;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.otot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.otot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(28, 49, 70, 0.1);
  transition: background-color .2s ease;
  border-radius: 8px;
}

.otot-row:last-child { border-bottom: none; }

.otot-day {
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.otot-hours {
  font-size: 16px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* Vandaag highlight */
.otot-row.otot-today {
  background-color: #FFF5DF;
  padding-left: 14px;
  padding-right: 14px;
}

.otot-badge {
  display: inline-block;
  background: #EA4E38;
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}

/* Gesloten dag */
.otot-row.otot-closed .otot-hours {
  color: #EA4E38;
  font-style: italic;
}

@media (max-width: 480px) {
  .otot-wrap { padding: 24px; }
  .otot-title { font-size: 24px; }
  .otot-day, .otot-hours { font-size: 15px; }
}
