/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SMOUSE STUDIO — "ALSO IN A BUNDLE" CROSS-SELL BUTTON
   Secondary (ghost) variant of the Add to Cart button, injected beneath it by
   bundleOffer.js. Mirrors .smouse-vs__cart's shape but reads as secondary:
   outlined orange that fills in on hover.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.smouse-bundle-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateX(20px);
  width: 90%;
  margin-top: 4px;                 /* sits snug under the Add to Cart button */
  magine-bottom: 2px;
  padding: 6px 24px;              /* a touch shorter than the primary button */
  background: transparent;
  border: 1.5px solid rgba(255, 90, 40, 0.55);
  border-radius: 10px;
  color: #ff7a45;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.smouse-bundle-offer:hover {
  background: rgba(255, 90, 40, 0.10);
  border-color: #ff5a28;
  color: #ff8a5a;
}

.smouse-bundle-offer:active { transform: scale(0.99); }
