/* ===== Header minimalista estilo Apple ===== */

.op-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eef2f7;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
  z-index: 10000;
}

body.admin-bar .op-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .op-header { top: 46px; }
}

/* Contenedor principal */
.op-nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.op-brand {
  font-weight: 800;
  font-size: 18px;
  color: #0f172a;
  text-decoration: none;
}

/* Acciones a la derecha */
.op-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Enlace normal */
.op-link {
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
}
.op-link:hover {
  background: #f3f4f6;
}

/* Botón pill */
.op-pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.op-pill--primary {
  background: #007aff;
  color: #fff;
}
.op-pill--primary:hover {
  filter: brightness(1.05);
}
.op-pill--gray {
  background: #f3f4f6;
  color: #0f172a;
}
.op-pill--gray:hover {
  background: #e5e7eb;
}

/* Hamburguesa */
.op-burger {
  display: none;
  background: #f3f4f6;
  border: 0;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 820px) {
  .op-burger { display: inline-block; }
  .op-actions { display: none; }
}

/* Menú móvil */
.op-menu {
  background: #fff;
  border-top: 1px solid #eef2f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}
.op-item {
  display: block;
  padding: 12px 16px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}
.op-item:hover {
  background: #f3f4f6;
}
