:root {
  --vwc-wine: #7a1118;
  --vwc-wine-deep: #3a080d;
  --vwc-black: #080707;
  --vwc-gold: #d4af6a;
  --vwc-gold-deep: #b8893e;
  --vwc-ivory: #f7f0e6;
  --vwc-cream: #fffaf4;
  --vwc-green: #20c866;
  --vwc-text: #171214;
  --vwc-muted: #746c6e;
}

.vwc-root,
.vwc-root * {
  box-sizing: border-box;
}

.vwc-root {
  position: fixed;
  z-index: 999998;
  bottom: max(22px, env(safe-area-inset-bottom));
  font-family: "Montserrat", Arial, sans-serif;
}

.vwc-root.is-right {
  right: max(22px, env(safe-area-inset-right));
}

.vwc-root.is-left {
  left: max(22px, env(safe-area-inset-left));
}

.vwc-launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 7px 7px 7px 24px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), transparent 40%),
    linear-gradient(135deg, var(--vwc-wine), var(--vwc-wine-deep));
  border: 1px solid rgba(212,175,106,.7);
  border-radius: 999px;
  box-shadow:
    0 18px 44px rgba(58,8,13,.34),
    0 0 0 5px rgba(212,175,106,.08),
    inset 0 1px 0 rgba(255,255,255,.18);
  cursor: pointer;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.vwc-launcher::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.18) 45%, transparent 75%);
  transform: translateX(-120%);
  animation: vwcShine 5s ease-in-out infinite;
}

.vwc-launcher:hover,
.vwc-launcher:focus-visible {
  transform: translateY(-3px);
  border-color: var(--vwc-gold);
  box-shadow:
    0 24px 56px rgba(58,8,13,.42),
    0 0 0 6px rgba(212,175,106,.12),
    inset 0 1px 0 rgba(255,255,255,.2);
  outline: none;
}

.vwc-launcher__label {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .65px;
  line-height: 1;
}

.vwc-launcher__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: #fff;
  background: linear-gradient(145deg, #28d970, #14ad54);
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 50%;
  box-shadow:
    0 10px 24px rgba(20,173,84,.32),
    inset 0 1px 0 rgba(255,255,255,.38);
}

.vwc-launcher__icon svg {
  width: 27px;
  height: 27px;
}

.vwc-overlay[hidden] {
  display: none !important;
}

.vwc-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(122,17,24,.24), transparent 34%),
    rgba(8,7,7,.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: vwcFade .22s ease both;
}

body.vwc-modal-open {
  overflow: hidden !important;
}

.vwc-dialog {
  position: relative;
  width: min(660px, 100%);
  max-height: min(880px, calc(100vh - 42px));
  overflow-x: hidden;
  overflow-y: auto;
  padding: 42px;
  color: var(--vwc-text);
  background:
    radial-gradient(circle at top right, rgba(212,175,106,.16), transparent 31%),
    linear-gradient(145deg, #fff, var(--vwc-cream));
  border: 1px solid rgba(212,175,106,.52);
  border-radius: 30px;
  box-shadow:
    0 36px 110px rgba(0,0,0,.43),
    inset 0 1px 0 rgba(255,255,255,.9);
  scrollbar-width: thin;
  scrollbar-color: var(--vwc-gold) transparent;
  animation: vwcRise .3s cubic-bezier(.2,.8,.2,1) both;
}

.vwc-dialog::-webkit-scrollbar {
  width: 8px;
}

.vwc-dialog::-webkit-scrollbar-thumb {
  background: var(--vwc-gold);
  border-radius: 10px;
}

.vwc-dialog__ornament {
  position: absolute;
  top: -78px;
  right: -52px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(212,175,106,.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 20px rgba(212,175,106,.06),
    0 0 0 42px rgba(122,17,24,.035);
  pointer-events: none;
}

.vwc-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--vwc-wine);
  background: rgba(122,17,24,.08);
  border: 1px solid rgba(122,17,24,.14);
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.vwc-close:hover,
.vwc-close:focus-visible {
  color: #fff;
  background: var(--vwc-wine);
  transform: rotate(7deg);
  outline: none;
}

.vwc-close svg {
  width: 22px;
  height: 22px;
}

.vwc-dialog__header {
  max-width: 500px;
  padding-right: 42px;
}

.vwc-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--vwc-wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.vwc-dialog__header h2 {
  margin: 0;
  color: var(--vwc-black);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: .98;
}

.vwc-dialog__header p {
  margin: 14px 0 0;
  color: var(--vwc-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.vwc-context {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--vwc-gold);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(212,175,106,.13), rgba(255,255,255,.46));
}

.vwc-context span {
  display: block;
  margin-bottom: 3px;
  color: var(--vwc-wine);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.vwc-context strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--vwc-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.vwc-form {
  margin-top: 26px;
}

.vwc-grid {
  display: grid;
  gap: 14px;
}

.vwc-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vwc-field {
  display: block;
  margin: 0 0 14px;
}

.vwc-field > span {
  display: block;
  margin: 0 0 7px 4px;
  color: #3c3336;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.vwc-field em {
  color: var(--vwc-wine);
  font-style: normal;
}

.vwc-field input,
.vwc-field select,
.vwc-field textarea {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 14px 16px;
  color: var(--vwc-text);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(77,55,59,.18);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.86),
    0 8px 22px rgba(58,8,13,.035);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.vwc-field textarea {
  min-height: 98px;
  resize: vertical;
}

.vwc-field input:focus,
.vwc-field select:focus,
.vwc-field textarea:focus {
  background: #fff;
  border-color: var(--vwc-gold-deep);
  box-shadow:
    0 0 0 4px rgba(212,175,106,.15),
    0 12px 28px rgba(58,8,13,.06);
}

.vwc-field.is-invalid input,
.vwc-field.is-invalid select,
.vwc-field.is-invalid textarea {
  border-color: #b4232e;
  box-shadow: 0 0 0 4px rgba(180,35,46,.11);
}

.vwc-support-note {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin: 4px 0 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(122,17,24,.055), rgba(212,175,106,.09));
  border: 1px solid rgba(212,175,106,.22);
  border-radius: 15px;
}

.vwc-support-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--vwc-gold);
  background: linear-gradient(145deg, var(--vwc-wine), var(--vwc-wine-deep));
  border-radius: 12px;
  box-shadow: 0 9px 20px rgba(58,8,13,.2);
}

.vwc-support-note p {
  margin: 0;
  color: #5e5557;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.vwc-form__status {
  min-height: 18px;
  margin: 0 0 8px;
  color: #a71925;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.vwc-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 16px 24px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.11), transparent 40%),
    linear-gradient(135deg, var(--vwc-wine), var(--vwc-wine-deep));
  border: 1px solid var(--vwc-gold);
  border-radius: 15px;
  box-shadow:
    0 18px 38px rgba(58,8,13,.25),
    inset 0 1px 0 rgba(255,255,255,.18);
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.vwc-submit:hover,
.vwc-submit:focus-visible {
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 40%),
    linear-gradient(135deg, var(--vwc-gold-deep), var(--vwc-gold));
  color: var(--vwc-black);
  box-shadow: 0 24px 48px rgba(58,8,13,.28);
  outline: none;
}

.vwc-submit svg {
  width: 20px;
  height: 20px;
}

@keyframes vwcShine {
  0%, 62%, 100% { transform: translateX(-120%); }
  74% { transform: translateX(120%); }
}

@keyframes vwcFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes vwcRise {
  from { opacity: 0; transform: translateY(20px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 767px) {
  .vwc-root {
    right: 14px !important;
    left: 14px !important;
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .vwc-launcher {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    padding-left: 22px;
  }

  .vwc-launcher__label {
    font-size: 15px;
  }

  .vwc-overlay {
    align-items: end;
    padding: 10px;
  }

  .vwc-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 30px 20px 22px;
    border-radius: 24px 24px 20px 20px;
  }

  .vwc-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .vwc-dialog__header {
    padding-right: 38px;
  }

  .vwc-dialog__header h2 {
    font-size: 39px;
  }

  .vwc-grid--two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vwc-field {
    margin-bottom: 12px;
  }

  .vwc-field input,
  .vwc-field select,
  .vwc-field textarea {
    min-height: 52px;
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .vwc-dialog {
    padding-inline: 16px;
  }

  .vwc-dialog__header h2 {
    font-size: 34px;
  }

  .vwc-launcher__label {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vwc-root *,
  .vwc-root *::before,
  .vwc-root *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
