/* skin-81 — Verdant */

.wpopw-vw {
  --vw-font: 'Jost';
  --vw-forest: #1f3d2b;
  --vw-forest-2: #142a1d;
  --vw-sage: #9cb89a;
  --vw-sage-soft: #c5d6c2;
  --vw-cream: #f4f0e4;
  --vw-terra: #c0633e;
  --vw-terra-soft: #d98a64;
  --vw-glow: var(--wpopw-accent, #6fae6a);
}

/* ===== Launcher ===== */
.wpopw-vw .vw-launcher {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 72px; height: 72px;
  border-radius: 50%;
  cursor: pointer;
  border: none; padding: 0;
  z-index: 2147483000;
  background: var(--vw-forest-2);
  box-shadow: 0 16px 40px rgba(31,61,43,.42), 0 0 0 4px rgba(244,240,228,.85);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
  overflow: visible;
  animation: vw-launch-in .55s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes vw-launch-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wpopw-vw .vw-launcher:hover { transform: scale(1.07) rotate(-3deg); }
.wpopw-vw .vw-launcher.vw-hidden { opacity: 0; transform: scale(.4); pointer-events: none; }

/* glowing green leaf ring */
.wpopw-vw .vw-launcher__ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--vw-glow), var(--vw-sage), var(--vw-terra-soft), var(--vw-glow));
  z-index: -2;
  filter: blur(1px);
  animation: vw-spin 7s linear infinite;
}
@keyframes vw-spin { to { transform: rotate(360deg); } }
.wpopw-vw .vw-launcher__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(111,174,106,.55);
  animation: vw-pulse 2.6s ease-out infinite;
  z-index: -1;
}
@keyframes vw-pulse {
  0% { box-shadow: 0 0 0 0 rgba(111,174,106,.6); }
  70% { box-shadow: 0 0 0 20px rgba(111,174,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,174,106,0); }
}
.wpopw-vw .vw-launcher__media {
  position: absolute; inset: 4px;
  width: calc(100% - 8px); height: calc(100% - 8px);
  object-fit: cover; object-position: center 20%; border-radius: 50%;
  z-index: 1;
}
.wpopw-vw .vw-launcher__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: #fff; z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  pointer-events: none;
}

/* ===== Tooltip ===== */
.wpopw-vw .vw-tooltip {
  position: fixed; right: 108px; bottom: 40px;
  max-width: 232px;
  background: #fff;
  color: var(--vw-forest);
  font-size: 14px; line-height: 1.45; font-weight: 500;
  padding: 13px 16px;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 16px 40px rgba(31,61,43,.22);
  z-index: 2147483000;
  border: 1px solid rgba(31,61,43,.08);
  animation: vw-tip-in .45s ease .8s both;
}
.wpopw-vw .vw-tooltip strong { color: var(--vw-terra); font-weight: 600; }
.wpopw-vw .vw-tooltip::after {
  content: ""; position: absolute; right: -7px; bottom: 12px;
  width: 14px; height: 14px; background: #fff;
  transform: rotate(45deg); border-radius: 0 0 3px 0;
}
@keyframes vw-tip-in { from { opacity: 0; transform: translateY(8px) scale(.92); } to { opacity: 1; transform: none; } }
.wpopw-vw .vw-tooltip.vw-hidden { display: none; }
.wpopw-vw .vw-tooltip__close {
  position: absolute; top: -9px; left: -9px;
  width: 23px; height: 23px; border-radius: 50%;
  border: none; background: var(--vw-forest); color: #fff;
  font-size: 14px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

/* ===== Panel ===== */
.wpopw-vw .vw-panel {
  position: fixed; right: 24px; bottom: 24px;
  width: 380px;
  height: min(660px, calc(100dvh - 40px));
  max-height: calc(100dvh - 40px);
  border-radius: 30px;
  overflow: hidden;
  z-index: 2147483001;
  background: var(--wpopw-panel-bg, #142a1d);
  box-shadow: 0 36px 90px rgba(20,42,29,.5), 0 0 0 1px rgba(156,184,154,.18), 0 0 0 6px rgba(244,240,228,.5);
  opacity: 0;
  transform: translateY(24px) scale(.95);
  pointer-events: none;
  transition: opacity .35s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.wpopw-vw .vw-panel.vw-open { opacity: 1; transform: none; pointer-events: auto; }

.wpopw-vw .vw-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; background: var(--vw-forest-2);
  cursor: pointer;
}

.wpopw-vw .vw-scrim-top {
  position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, rgba(20,42,29,.7), transparent);
  pointer-events: none; z-index: 2;
}
.wpopw-vw .vw-scrim-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; height: 64%;
  background: linear-gradient(to top, rgba(20,42,29,.96) 0%, rgba(20,42,29,.78) 34%, rgba(20,42,29,.2) 70%, transparent);
  pointer-events: none; z-index: 2;
}

/* top bar */
.wpopw-vw .vw-top {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 15px 0; z-index: 6;
}
.wpopw-vw .vw-brand {
  display: flex; align-items: center; gap: 10px; color: #fff; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.wpopw-vw .vw-brand.vw-q-hidden { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.wpopw-vw .vw-brand__logo {
  width: 34px; height: 34px; border-radius: 11px;
  background: linear-gradient(140deg, var(--vw-glow), var(--vw-forest));
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.wpopw-vw .vw-brand__logo svg { width: 19px; height: 19px; color: var(--vw-cream); }
.wpopw-vw .vw-brand__logo img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.wpopw-vw .vw-brand__name { font-weight: 600; font-size: 15.5px; letter-spacing: .01em; text-shadow: 0 1px 5px rgba(0,0,0,.5); }
.wpopw-vw .vw-brand__name small { display: block; font-size: 10.5px; font-weight: 400; opacity: .85; letter-spacing: .04em; }
.wpopw-vw .vw-top__actions { display: flex; gap: 9px; }

.wpopw-vw .vw-iconbtn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(20,42,29,.45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease, transform .15s ease;
}
.wpopw-vw .vw-iconbtn:hover { background: rgba(111,174,106,.55); transform: scale(1.07); }
.wpopw-vw .vw-iconbtn:active { transform: scale(.93); }
.wpopw-vw .vw-iconbtn svg { width: 19px; height: 19px; display: block; }

/* center play/pause */
.wpopw-vw .vw-centerbtn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(111,174,106,.32);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  z-index: 5;
  box-shadow: 0 10px 34px rgba(0,0,0,.35);
  transition: opacity .25s ease, transform .25s ease;
}
.wpopw-vw .vw-centerbtn svg { width: 33px; height: 33px; }
.wpopw-vw .vw-centerbtn:hover { transform: translate(-50%,-50%) scale(1.07); }
.wpopw-vw .vw-centerbtn.vw-faded { opacity: 0; pointer-events: none; transform: translate(-50%,-50%) scale(1.3); }

/* progress */
.wpopw-vw .vw-progress {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; background: rgba(255,255,255,.16);
  z-index: 7; cursor: pointer;
}
.wpopw-vw .vw-progress__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--vw-glow), var(--vw-sage));
  transition: width .12s linear;
}

/* bottom stack */
.wpopw-vw .vw-bottom {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 16px 18px; z-index: 6;
  display: flex; flex-direction: column; gap: 13px;
}
.wpopw-vw .vw-headline {
  font-size: 16px; font-weight: 600; margin: 0; color: #fff;
  line-height: 1.3; text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.wpopw-vw .vw-headline span { color: var(--vw-sage-soft); }

.wpopw-vw .vw-overlay-text {
  display: flex; flex-direction: column; gap: 13px;
  transition: opacity .3s ease, transform .3s ease;
}
.wpopw-vw .vw-overlay-text.vw-q-hidden { opacity: 0; transform: translateY(16px); pointer-events: none; }

.wpopw-vw .vw-questions {
  display: flex; flex-wrap: wrap; gap: 8px;
  transition: opacity .3s ease, transform .3s ease;
}
.wpopw-vw .vw-questions.vw-q-hidden { opacity: 0; transform: translateY(16px); pointer-events: none; }
.wpopw-vw .vw-pill {
  font-family: inherit; font-size: 13px; font-weight: 500;
  color: #f0f5ee;
  background: rgba(244,240,228,.12);
  border: 1px solid rgba(244,240,228,.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 9px 14px; border-radius: 14px 14px 14px 4px;
  cursor: pointer; white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.wpopw-vw .vw-pill:hover { background: rgba(156,184,154,.32); transform: translateY(-1px); }
.wpopw-vw .vw-pill.vw-active {
  background: linear-gradient(135deg, var(--vw-glow), var(--vw-forest));
  border-color: transparent; color: #fff;
  box-shadow: 0 6px 18px rgba(31,61,43,.5);
}

.wpopw-vw .vw-ctas { display: flex; gap: 10px; }
.wpopw-vw .vw-cta {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 14.5px; font-weight: 600;
  text-decoration: none; padding: 13px 12px; border-radius: 16px;
  cursor: pointer; transition: transform .15s ease, filter .2s ease, box-shadow .2s ease;
}
.wpopw-vw .vw-cta svg { width: 18px; height: 18px; flex: none; }
.wpopw-vw .vw-cta:active { transform: scale(.97); }
.wpopw-vw .vw-cta--wa {
  background: var(--wpopw-wa, #2bb673); color: #fff;
  box-shadow: 0 8px 22px rgba(43,182,115,.42);
}
.wpopw-vw .vw-cta--wa:hover { filter: brightness(1.06); box-shadow: 0 10px 26px rgba(43,182,115,.55); }
.wpopw-vw .vw-cta--call {
  background: var(--wpopw-call, #f4f0e4); color: var(--vw-forest);
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.wpopw-vw .vw-cta--call:hover { filter: brightness(1.04); }

@media (max-width: 480px) {
  .wpopw-vw .vw-panel {
    right: 0; bottom: 0; left: 0; top: 0;
    width: 100%; height: 100dvh; max-height: none; border-radius: 0;
  }
  .wpopw-vw .vw-launcher { right: 18px; bottom: 18px; }
  .wpopw-vw .vw-tooltip { right: 100px; bottom: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .wpopw-vw .vw-launcher__ring, .wpopw-vw .vw-launcher__pulse { animation: none; }
}

/* >>> vw-horizontal-palette (auto-generated) >>> */
.wpopw-vw {
  --vw-h-bg: #f4f0e4;
  --vw-h-text: #353533;
  --vw-h-muted: rgba(0,0,0,.5);
  --vw-h-pill: #faf8f2;
  --vw-h-pill-text: #353533;
  --vw-h-line: rgba(0,0,0,.1);
  --vw-h-accent: #1f3d2b;
  --vw-h-on-accent: #ffffff;
}
/* <<< vw-horizontal-palette <<< */
