/* Hard override for owner-panel live products only */

body.kaw-live-product-mode {
  background: linear-gradient(135deg, #fffaf6, #eadfd4) !important;
}

body.kaw-live-product-mode main {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.kaw-live-hard-detail {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(34px, 5vw, 70px) auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.kaw-live-hard-media {
  border-radius: 36px;
  min-height: 560px;
  background:
    radial-gradient(circle at 80% 20%, rgba(213,179,110,.18), transparent 35%),
    #f7efe7;
  border: 1px solid rgba(72,50,36,.12);
  box-shadow: 0 24px 62px rgba(45,33,25,.10);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 24px;
}

.kaw-live-hard-media img {
  width: 100%;
  height: min(62vh, 620px);
  object-fit: contain;
  display: block;
  border-radius: 28px;
  background: #f7efe7;
}

.kaw-live-hard-info {
  padding: clamp(24px, 4vw, 46px);
  border-radius: 36px;
  background: rgba(255,250,246,.9);
  border: 1px solid rgba(72,50,36,.10);
  box-shadow: 0 18px 46px rgba(45,33,25,.07);
}

.kaw-live-hard-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(213,179,110,.24);
  color: #4a3527;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kaw-live-hard-info h1 {
  margin: 0;
  color: #2f241d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .98;
  font-weight: 500;
  word-break: break-word;
}

.kaw-live-hard-price {
  margin: 20px 0 14px;
  color: #6b4d37;
  font-size: 1.45rem;
  font-weight: 950;
}

.kaw-live-hard-desc {
  color: #745b48;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 24px;
}

.kaw-live-hard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.kaw-live-hard-actions a,
.kaw-live-hard-actions button {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  min-width: 145px;
  background: #3a281f;
  color: #fffaf6;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}

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

.kaw-live-hard-toast {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 999999;
  max-width: min(380px, calc(100% - 36px));
  padding: 15px 17px;
  border-radius: 20px;
  background: rgba(58,40,31,.96);
  color: #fffaf6;
  box-shadow: 0 18px 46px rgba(45,33,25,.24);
  font-weight: 850;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: .24s ease;
}

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

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

@media (max-width: 900px) {
  .kaw-live-hard-detail {
    grid-template-columns: 1fr;
  }

  .kaw-live-hard-media {
    min-height: 360px;
  }

  .kaw-live-hard-actions a,
  .kaw-live-hard-actions button {
    width: 100%;
  }
}
