.widget-horario-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.widget-horario {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .widget-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .widget-header .icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

  .widget-header h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 2px;
    margin-top: 0;
    color: white;
  }

  .widget-header p {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
  }

  .estado-container {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
  }

  .estado-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .estado-punto {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: relative;
  }

  .estado-punto.abierto {
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseGreen 2s infinite;
  }

  .estado-punto.cerrado {
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulseRed 2s infinite;
  }

  @keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  }

  @keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
  }

  .estado-texto {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    flex-direction: column;
  }

  .estado-texto small {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 400;
    margin-top: 2px;
  }

  .estado-container .badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .estado-container .badge.abierto {
    background: #d1fae5;
    color: #065f46;
  }

  .estado-container .badge.cerrado {
    background: #fee2e2;
    color: #991b1b;
  }

  .reloj {
    background: #f8fafc;
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
  }

  .reloj-hora {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
    line-height: 1;
  }

  .reloj-fecha {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
    text-transform: capitalize;
  }

  .horarios {
    padding: 20px;
  }

  .horarios h4 {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 6px;
    transition: background 0.2s;
  }

  .horario-item.hoy {
    background: linear-gradient(90deg, #dbeafe 0%, #eff6ff 100%);
    border-left: 3px solid #2563eb;
    font-weight: 600;
  }

  .horario-item .dia {
    font-size: 14px;
    color: #334155;
    display: flex;
    align-items: center;
  }

  .horario-item .hora {
    font-size: 13px;
    color: #64748b;
    font-variant-numeric: tabular-nums;
  }

  .horario-item.cerrado-dia .hora {
    color: #ef4444;
    font-weight: 500;
  }

  .widget-footer {
    background: #f8fafc;
    padding: 14px 20px;
    text-align: center;
    font-size: 12px;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
  }

  .widget-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
  }

  .hoy-tag {
    background: #2563eb;
    color: white;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    font-weight: 700;
  }