/* ─── Gift FAB (right corner, always above chat) ─── */
#omni-personal-offer-root:not([hidden]) {
  display: block;
  position: relative;
  z-index: 2147483640;
}

html.omni-gift-open .omni-gift {
  visibility: hidden;
  pointer-events: none;
}

.omni-gift {
  --gift-gold: #f0d078;
  --gift-deep: #c89a3a;
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 2147483645;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  background: linear-gradient(145deg, #ffe9a8 0%, #e8be55 42%, #c89a3a 100%);
  box-shadow:
    0 0 0 4px rgba(232, 190, 85, 0.28),
    0 12px 32px rgba(200, 154, 58, 0.55),
    0 0 40px rgba(255, 210, 100, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: omni-gift-bob 2.2s ease-in-out infinite;
  transition: transform .2s ease, box-shadow .2s ease;
}

.omni-gift:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 0 0 5px rgba(232, 190, 85, 0.4),
    0 16px 40px rgba(200, 154, 58, 0.65),
    0 0 50px rgba(255, 210, 100, 0.5);
  animation: none;
}

.omni-gift__glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 120, 0.55) 0%, transparent 70%);
  animation: omni-gift-glow 1.8s ease-in-out infinite;
  pointer-events: none;
}

.omni-gift__icon {
  position: relative;
  z-index: 1;
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  animation: omni-gift-wiggle 2.8s ease-in-out infinite;
}

.omni-gift__tag {
  position: absolute;
  top: -10px;
  right: -8px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 999px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a0a00;
  background: #ff5c5c;
  box-shadow: 0 4px 12px rgba(255, 80, 80, 0.45);
  white-space: nowrap;
}

.omni-gift__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 220, 120, 0.85);
  animation: omni-gift-ring 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes omni-gift-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes omni-gift-wiggle {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-12deg); }
  30% { transform: rotate(10deg); }
  45% { transform: rotate(-6deg); }
  60% { transform: rotate(0deg); }
}

@keyframes omni-gift-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes omni-gift-ring {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Chat open → gift sits on chat panel, above it */
body:has(#omni-chat-box.show) .omni-gift {
  right: 8px;
  bottom: 56px;
  z-index: 2147483646;
}

@media (max-width: 640px) {
  .omni-gift {
    right: 14px;
    bottom: 88px;
    width: 64px;
    height: 64px;
  }
  .omni-gift__icon { font-size: 26px; }

  body:has(#omni-chat-box.show) .omni-gift {
    right: 12px;
    bottom: 110px;
  }
}

/* ─── Gift modal / popup ─── */
.omni-gift-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.omni-gift-modal[hidden] {
  display: none !important;
}

.omni-gift-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 20, 0.78);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.omni-gift-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 36px 28px 28px;
  text-align: center;
  color: #f5f0e4;
  border-radius: 8px;
  border: 1px solid rgba(232, 190, 85, 0.45);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(255, 210, 100, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(126, 92, 211, 0.18), transparent 50%),
    linear-gradient(165deg, #121a32 0%, #0a1020 55%, #151018 100%);
  box-shadow:
    0 0 0 1px rgba(255, 240, 200, 0.08) inset,
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(232, 190, 85, 0.18);
  animation: omni-gift-pop .35s cubic-bezier(.2, .9, .3, 1.2);
  overflow: hidden;
}

@keyframes omni-gift-pop {
  from { opacity: 0; transform: scale(0.86) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.omni-gift-modal__burst {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 220px;
  height: 220px;
  margin-left: -110px;
  background: radial-gradient(circle, rgba(255, 220, 120, 0.35) 0%, transparent 68%);
  pointer-events: none;
}

.omni-gift-modal__x {
  position: absolute;
  top: 10px;
  right: 12px;
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(245, 240, 228, 0.45);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 2;
}

.omni-gift-modal__x:hover {
  color: #fff8e7;
}

.omni-gift-modal__badge {
  position: relative;
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e8be55;
}

.omni-gift-modal__title {
  position: relative;
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 5vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff8e7;
}

.omni-gift-modal__lead {
  position: relative;
  margin: 0 0 22px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245, 240, 228, 0.58);
}

.omni-gift-modal__offer {
  position: relative;
  margin: 18px 0 0;
  padding-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 10vw, 64px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #f0d078;
  text-shadow: 0 0 32px rgba(232, 190, 85, 0.35);
}

.omni-gift-modal__offer-sub {
  position: relative;
  margin: 28px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 190, 85, 0.22);
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 228, 0.78);
}

.omni-gift-modal__timer-box {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto 22px;
  padding: 12px 22px;
  border-radius: 4px;
  border: 1px solid rgba(232, 190, 85, 0.3);
  background: rgba(0, 0, 0, 0.28);
}

.omni-gift-modal__timer-label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 228, 0.55);
}

.omni-gift-modal__timer {
  font-family: "Manrope", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff8e7;
}

.omni-gift-modal__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-bottom: 12px;
  border-radius: 3px;
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #050a1a !important;
  background: linear-gradient(180deg, #ffe08a 0%, #e8be55 45%, #c89a3a 100%);
  border: 1px solid rgba(255, 240, 200, 0.4);
  box-shadow: 0 10px 28px rgba(200, 154, 58, 0.4);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: omni-gift-cta-pulse 2s ease-in-out infinite;
}

.omni-gift-modal__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(200, 154, 58, 0.55);
  animation: none;
}

@keyframes omni-gift-cta-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(200, 154, 58, 0.4); }
  50% { box-shadow: 0 10px 36px rgba(255, 210, 100, 0.65); }
}

.omni-gift-modal__dismiss {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 13px;
  color: rgba(245, 240, 228, 0.4);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.omni-gift-modal__dismiss:hover {
  color: rgba(245, 240, 228, 0.7);
}

html.omni-gift-open {
  overflow: hidden;
}

/* Gadaniya upsell card (kept) */
.omni-po-card {
  position: relative;
  overflow: hidden;
  margin: 28px 0 12px;
  padding: 28px 28px 26px;
  border-radius: 4px;
  border: 1px solid rgba(232, 190, 85, 0.28);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(232, 190, 85, 0.12), transparent 55%),
    linear-gradient(165deg, #0a1228, #12101a 70%);
  color: #f5f0e4;
  text-align: center;
}

.omni-po__badge {
  margin: 0 0 8px;
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8be55;
}

.omni-po__title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: #fff8e7;
}

.omni-po__sub {
  margin: 0 auto 14px;
  max-width: 32em;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(245, 240, 228, 0.7);
}

.omni-po__deal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.omni-po__deal-label {
  font-family: "Cinzel", serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 190, 85, 0.7);
}

.omni-po__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.omni-po__old {
  font-size: 15px;
  color: rgba(245, 240, 228, 0.42);
  text-decoration: line-through;
}

.omni-po__now {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: #e8be55;
}

.omni-po__actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.omni-po__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 2px;
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #050a1a !important;
  background: linear-gradient(180deg, #f0d078 0%, #e8be55 45%, #c89a3a 100%);
}

/* Hero conversion (unchanged intent) */
.hero-conv {
  margin: 8px auto 0;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1s 1.15s forwards;
}

.hero-conv__tag {
  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright, #e8be55);
  opacity: 0.85;
}

.hero-conv__lead {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: rgba(245, 240, 228, 0.9);
}

.hero-conv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 2px;
  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-conv__btn--primary {
  color: #050a1a !important;
  background: linear-gradient(180deg, #f0d078 0%, #e8be55 45%, #c89a3a 100%);
  border: 1px solid rgba(255, 240, 200, 0.35);
  box-shadow: 0 8px 28px rgba(200, 154, 58, 0.32);
}

.hero-conv__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 154, 58, 0.45);
}

.hero-conv__link {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-style: italic;
  color: rgba(232, 190, 85, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 190, 85, 0.35);
  padding-bottom: 2px;
}

.hero-conv__link:hover {
  color: #f0d078;
  border-bottom-color: rgba(240, 208, 120, 0.7);
}

.hero:has(.hero-conv) .hero-date {
  margin-bottom: 28px;
}
.hero:has(.hero-conv) .hero-orb {
  display: none;
}
