/* =========================================================
   KAWTHAR LIVE PRODUCT NATIVE DETAIL
   Same visual logic as the existing product page.
   ========================================================= */

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(213,179,110,.12), transparent 34%),
    linear-gradient(135deg, #fffaf6, #eadfd4) !important;
  color: #2f241d;
}

.kaw-live-native-main {
  width: 100%;
  padding: 0;
  margin: 0;
}

.kaw-live-native-detail {
  width: min(1220px, calc(100% - 32px));
  margin: clamp(34px, 5vw, 72px) auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}

.kaw-live-gallery {
  min-height: 680px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 75% 18%, rgba(213,179,110,.18), transparent 34%),
    linear-gradient(135deg, rgba(245,238,231,.92), rgba(229,217,205,.74));
  border: 1px solid rgba(72,50,36,.10);
  box-shadow: 0 24px 64px rgba(45,33,25,.10);
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 48px);
  overflow: hidden;
}

.kaw-live-gallery img {
  width: min(100%, 560px);
  height: min(66vh, 600px);
  object-fit: contain;
  display: block;
  border-radius: 24px;
  background: #f7efe7;
}

.kaw-live-info-panel {
  border-radius: 34px;
  background: rgba(255,250,246,.92);
  border: 1px solid rgba(72,50,36,.10);
  box-shadow: 0 24px 64px rgba(45,33,25,.10);
  padding: clamp(26px, 4vw, 44px);
}

.kaw-live-kicker {
  margin-bottom: 12px;
  color: #8e6d50;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
}

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

.kaw-live-info-box {
  margin-top: 12px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255,250,246,.78);
  border: 1px solid rgba(72,50,36,.12);
}

.kaw-live-info-box strong {
  display: block;
  margin-bottom: 8px;
  color: #3a281f;
  font-size: .88rem;
}

.kaw-live-info-box span {
  color: #725641;
  line-height: 1.65;
}

.kaw-live-price {
  font-size: 1.15rem;
  font-weight: 900;
}

.kaw-live-offer {
  margin: 20px 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(177, 55, 40, .08);
  border: 1px solid rgba(177, 55, 40, .18);
  color: #a44737;
  font-weight: 900;
}

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

.kaw-live-bullets {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  color: #3a281f;
  font-weight: 750;
}

.kaw-live-bullets div::before {
  content: "✓";
  margin-right: 8px;
  color: #3a281f;
}

.kaw-live-actions {
  display: grid;
  gap: 12px;
}

.kaw-live-actions button,
.kaw-live-actions a {
  width: 100%;
  border: 1px solid rgba(72,50,36,.12);
  border-radius: 999px;
  padding: 15px 18px;
  background: rgba(255,250,246,.82);
  color: #3a281f;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  font-size: .95rem;
}

.kaw-live-actions .primary {
  background: #3a281f;
  color: #fffaf6;
  border-color: #3a281f;
}

.kaw-live-actions .gold {
  background: #d5b36e;
  color: #2c211a;
  border-color: #d5b36e;
}

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

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

.kaw-live-loading,
.kaw-live-error {
  width: min(820px, calc(100% - 32px));
  margin: 90px auto;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,250,246,.9);
  border: 1px solid rgba(72,50,36,.10);
  text-align: center;
  font-weight: 850;
}

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

  .kaw-live-gallery {
    min-height: 400px;
  }

  .kaw-live-gallery img {
    height: 380px;
  }
}

@media (max-width: 560px) {
  .kaw-live-native-detail {
    width: min(100% - 20px, 1220px);
  }

  .kaw-live-info-panel {
    padding: 22px 16px;
  }

  .kaw-live-info-panel h1 {
    font-size: 2.25rem;
  }
}
