/* Organisation Desk — shared controls + toast (agent pages + desk shell) */

/*
 * Product card actions: desk + ask share the same size / shape.
 * Colour stays distinct (gold desk, blue ask) so they read as a matching pair.
 */
.product-sample-card > .product-desk-btn,
.product-sample-card > .product-ask-btn,
.product-sample-card > .product-shortlist-btn {
  display: block;
  width: calc(100% - 16px);
  margin: 0 8px 6px;
  padding: 7px 10px;
  border-radius: 8px;
  box-sizing: border-box;
  font: 600 0.68rem/1.25 "IBM Plex Sans", "Segoe UI", sans-serif;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-desk-btn {
  display: block;
  width: calc(100% - 16px);
  margin: 0 8px 6px;
  padding: 7px 10px;
  border-radius: 8px;
  box-sizing: border-box;
  border: 1px solid rgba(201, 169, 97, 0.45);
  background: rgba(201, 169, 97, 0.12);
  color: #e8d5a3;
  font: 600 0.68rem/1.25 "IBM Plex Sans", "Segoe UI", sans-serif;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.product-desk-btn:hover {
  background: rgba(201, 169, 97, 0.22);
  border-color: rgba(201, 169, 97, 0.7);
}

.product-desk-btn.is-saved {
  background: rgba(61, 207, 122, 0.16);
  border-color: rgba(61, 207, 122, 0.45);
  color: #9fd4b0;
}

.product-sample-card > .product-ask-btn {
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: rgba(37, 99, 235, 0.2);
  color: #bfdbfe;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.product-sample-card > .product-ask-btn:hover {
  background: rgba(37, 99, 235, 0.35);
  border-color: rgba(96, 165, 250, 0.55);
}

.gw-desk-toast {
  position: fixed;
  z-index: 99999;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(120%);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(420px, calc(100vw - 24px));
  padding: 12px 16px;
  border-radius: 12px;
  background: #122018;
  border: 1px solid rgba(75, 140, 104, 0.4);
  color: #e8f0ea;
  font: 500 0.88rem/1.35 "IBM Plex Sans", "Segoe UI", sans-serif;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gw-desk-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.gw-desk-toast a {
  color: #c9a961;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.gw-desk-toast a:hover {
  text-decoration: underline;
}
