/* =========================================================
   KAWTHAR LIVE NATIVE FINAL
   New owner products become native-looking product cards.
   ========================================================= */

.kaw-live-native-card {
  order: -999 !important;
}

.kaw-live-native-card.kaw-live-native-hidden {
  display: none !important;
}

.kaw-live-native-card img {
  object-fit: contain !important;
  background: #f7efe7 !important;
}

.kaw-live-native-toast {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 999999;
  max-width: min(360px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(58, 40, 31, 0.96);
  color: #fffaf6;
  box-shadow: 0 18px 46px rgba(45,33,25,.24);
  border: 1px solid rgba(255,250,246,.14);
  font-weight: 850;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: .24s ease;
}

.kaw-live-native-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.kaw-live-native-toast small {
  display: block;
  margin-top: 3px;
  color: rgba(255,250,246,.72);
  font-weight: 650;
}
