/* Front: Estilo tipo Google/Oftalmia */
.oh-horario{
  background:#fff;
  border:1px solid #eef0f3;
  border-radius:16px;
  padding:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  margin: 14px 0;
}

.oh-horario.oh-embed{
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0;
  margin: 0;
}

.oh-horario-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.oh-horario-title{
  margin:0;
  font-size:18px;
  font-weight:700;
  color:#111827;
}

.oh-estado{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  line-height:1;
  background:#f6f7f9;
  color:#374151;
}
.oh-estado::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#9ca3af;
}
.oh-estado.abierto{ background:#eaf7ee; color:#137333; }
.oh-estado.abierto::before{ background:#16a34a; }
.oh-estado.cerrado{ background:#fdecec; color:#b42318; }
.oh-estado.cerrado::before{ background:#ef4444; }

.oh-map{ margin: 0 0 12px; }
.oh-map-inner{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:14px;
  overflow:hidden;
  background:#f3f4f6;
  border:1px solid #eef0f3;
}
.oh-map-inner iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.oh-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-radius:12px;
  background:#f7f7f8;
  margin-bottom:10px;
}
.oh-row:last-child{ margin-bottom:0; }
.oh-dia{ font-weight:700; color:#111827; }
.oh-horas{
  text-align:right;
  color:#374151;
  font-size:13px;
  line-height:1.35;
  white-space:nowrap;
}
.oh-row.hoy{
  background:#eef6ff;
  border:1px solid #d7e9ff;
}
.oh-row.hoy .oh-dia{ color:#0b5bd3; }
.oh-row.cerrado .oh-horas{ color:#b42318; font-weight:700; }

.oh-notes{
  margin-top:12px;
  padding:12px 14px;
  border-radius:12px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#9a3412;
  font-size:13px;
  line-height:1.35;
}

.oh-horario-foot{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid #eef0f3;
  font-size:13px;
  color:#6b7280;
}

.ox-horarios-wrap.ox-grid{
  display:grid;
  gap:14px;
}
.ox-horarios-wrap.ox-grid.cols-1{ grid-template-columns:1fr; }
.ox-horarios-wrap.ox-grid.cols-2{ grid-template-columns:repeat(2,1fr); }
.ox-horarios-wrap.ox-grid.cols-3{ grid-template-columns:repeat(3,1fr); }

@media (max-width: 900px){
  .ox-horarios-wrap.ox-grid.cols-2,
  .ox-horarios-wrap.ox-grid.cols-3{ grid-template-columns:1fr; }
}

@media (max-width: 480px){
  .oh-horario{ padding:16px; border-radius:14px; }
  .oh-horario-title{ font-size:17px; }
  .oh-row{ padding:12px; }
  .oh-horas{ font-size:14px; }
}
