/* Show product links as compact, labeled actions instead of exposing long URLs. */
.drawer .task-product-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #eeebe5;
}

.drawer .task-product-links > span {
  flex: 0 0 100%;
  color: #8a938b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.drawer .task-product-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid #ead7cd;
  border-radius: 8px;
  background: #fff8f4;
  color: #a6523b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.drawer .task-product-links a:hover {
  border-color: #d58a72;
  background: #fff0e9;
}

@media (max-width: 600px) {
  .drawer .task-product-links a {
    width: 100%;
    justify-content: center;
  }
}
