/* Shared BacWater cross-sell attach card.
   Rendered on every peptide brand's cart page (not on BacWater's own cart).
   Brand-prefixed BEM classes (e.g. glam-cart-drawer__bacwater-*) can
   override these defaults for brand-specific polish.                     */

.bw-attach {
  margin: 20px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.bw-attach__card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bw-attach__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.bw-attach__info {
  flex: 1;
  min-width: 0;
}

.bw-attach__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted, #9CA3AF);
  margin: 0 0 4px;
}

.bw-attach__name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
}

.bw-attach__price {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-accent, var(--color-accent, #C2185B));
  margin: 0 0 6px;
}

.bw-attach__rationale {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-muted, #9CA3AF);
  margin: 0;
}

.bw-attach__add {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--brand-accent, var(--color-accent, #C2185B));
  border-radius: 6px;
  background: transparent;
  color: var(--brand-accent, var(--color-accent, #C2185B));
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.bw-attach__add:hover {
  background: var(--brand-accent, var(--color-accent, #C2185B));
  color: #fff;
}
