/* =========================================================
   KAWTHAR LIVE MERGE GRID
   Inserts owner-panel products into existing product grids.
   Works on home and shop. No separate Fresh section.
   ========================================================= */

.kaw-live-merged-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,250,246,.94);
  border: 1px solid rgba(72,50,36,.10);
  box-shadow: 0 18px 42px rgba(45,33,25,.08);
  min-width: 0;
}

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

.kaw-live-merged-img {
  display: block;
  width: 100%;
  height: 320px;
  background: #f7efe7;
  overflow: hidden;
}

.kaw-live-merged-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.kaw-live-merged-body {
  padding: 16px;
}

.kaw-live-merged-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(213,179,110,.22);
  color: #4a3527;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kaw-live-merged-card h3 {
  margin: 0 0 9px;
  color: #2f241d;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 900;
}

.kaw-live-merged-price {
  color: #7a604a;
  font-weight: 950;
  margin-bottom: 13px;
}

.kaw-live-merged-actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.kaw-live-merged-actions a,
.kaw-live-merged-actions button {
  border: 0;
  border-radius: 999px;
  padding: 10px 13px;
  background: #3a281f;
  color: #fffaf6;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  cursor: pointer;
}

.kaw-live-merged-actions button {
  background: #d5b36e;
  color: #2c211a;
}

@media (max-width: 760px) {
  .kaw-live-merged-img {
    height: 260px;
  }
}

/* Final polish for owner-panel live product cards */
.kaw-live-merged-actions a,
.kaw-live-merged-actions button {
  min-width: 118px !important;
  text-align: center !important;
  justify-content: center !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 12px 16px !important;
  font-size: 0.76rem !important;
}

.kaw-live-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-toast.show {
  opacity: 1;
  transform: translateY(0);
}

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