:root {
  --velora-wl-bg: #F4EFE9;
  --velora-wl-panel: #FBF8F4;
  --velora-wl-primary: #4A3A31;
  --velora-wl-primary-dark: #382B25;
  --velora-wl-secondary: #827168;
  --velora-wl-muted: #A3958C;
  --velora-wl-border: #DED4CC;
  --velora-wl-border-strong: #CFC1B6;
  --velora-wl-overlay: rgba(44, 34, 29, 0.58);
  --velora-wl-danger-bg: #F8F1EC;
}

html.velora-waitlist-lock,
body.velora-waitlist-lock {
  overflow: hidden !important;
}

.velora-waitlist-drawer,
.velora-waitlist-drawer *,
.velora-waitlist-checkout-page,
.velora-waitlist-checkout-page *,
.velora-waitlist-success,
.velora-waitlist-success * {
  box-sizing: border-box;
}

.velora-waitlist-drawer,
.velora-waitlist-checkout-page,
.velora-waitlist-success {
  font-family: Manrope, Arial, sans-serif;
  color: var(--velora-wl-primary);
}

/* ========================= OFF CANVAS ========================= */
.velora-waitlist-drawer {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147482000 !important;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear .56s;
}

.velora-waitlist-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.velora-waitlist-backdrop {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--velora-wl-overlay) !important;
  opacity: 0;
  cursor: pointer;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  will-change: opacity;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1);
}

.velora-waitlist-drawer.is-open .velora-waitlist-backdrop {
  opacity: 1;
}

.velora-waitlist-panel {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: min(420px, 100vw) !important;
  height: 100vh !important;
  height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--velora-wl-bg) !important;
  color: var(--velora-wl-primary) !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translate3d(100%, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  box-shadow: -18px 0 50px rgba(44, 34, 29, .08);
  transition: transform .56s cubic-bezier(.16, 1, .30, 1);
}

.velora-waitlist-drawer.is-open .velora-waitlist-panel {
  transform: translate3d(0, 0, 0);
}

.velora-waitlist-header {
  height: 62px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  border-bottom: 1px solid var(--velora-wl-border);
  background: var(--velora-wl-bg);
}

.velora-waitlist-header-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--velora-wl-primary);
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 400;
  letter-spacing: .2px;
}

.velora-waitlist-header-count,
.velora-waitlist-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--velora-wl-primary);
  color: var(--velora-wl-bg);
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
}

.velora-waitlist-header-count.is-zero,
.velora-waitlist-count[hidden] {
  display: none !important;
}

.velora-waitlist-close {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  padding: 0 !important;
  margin: 0 -5px 0 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--velora-wl-primary) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: opacity .2s ease, transform .25s ease;
}

.velora-waitlist-close:hover {
  opacity: .7;
  transform: rotate(90deg);
}

.velora-waitlist-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.velora-waitlist-content.is-loading {
  pointer-events: none;
}

.velora-waitlist-content.is-loading::after {
  content: '';
  position: absolute;
  top: 82px;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  border: 1.5px solid var(--velora-wl-border-strong);
  border-top-color: var(--velora-wl-primary);
  border-radius: 50%;
  animation: velora-wl-spin .7s linear infinite;
  z-index: 5;
}

@keyframes velora-wl-spin { to { transform: rotate(360deg); } }

.velora-waitlist-notice {
  min-height: 43px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--velora-wl-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: var(--velora-wl-secondary);
}

.velora-waitlist-empty {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 32px 90px;
}

.velora-waitlist-empty-inner {
  width: 100%;
  max-width: 356px;
  text-align: center;
}

.velora-waitlist-empty h2 {
  margin: 0 0 18px;
  color: var(--velora-wl-primary);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  line-height: 30px;
  font-style: italic;
  font-weight: 400;
}

.velora-waitlist-empty p {
  margin: 0 auto 32px;
  color: var(--velora-wl-secondary);
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
}

.velora-waitlist-primary-cta,
.velora-waitlist-continue,
.velora-waitlist-submit,
.velora-waitlist-submit-suggestion {
  border: 1px solid var(--velora-wl-primary) !important;
  border-radius: 0 !important;
  background: var(--velora-wl-primary) !important;
  color: var(--velora-wl-bg) !important;
  box-shadow: none !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, opacity .22s ease;
}

.velora-waitlist-primary-cta,
.velora-waitlist-continue {
  min-height: 48px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: .45px;
}

.velora-waitlist-primary-cta:hover,
.velora-waitlist-continue:hover,
.velora-waitlist-submit:hover,
.velora-waitlist-submit-suggestion:hover {
  background: var(--velora-wl-primary-dark) !important;
  border-color: var(--velora-wl-primary-dark) !important;
  color: var(--velora-wl-bg) !important;
}

.velora-waitlist-items {
  flex: 1 1 auto;
}

.velora-waitlist-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--velora-wl-border);
}

.velora-waitlist-item-image {
  display: block;
  width: 80px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #E9DED3;
}

.velora-waitlist-item-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

.velora-waitlist-item-content,
.velora-waitlist-item-copy {
  min-width: 0;
}

.velora-waitlist-item-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.velora-waitlist-item-title {
  display: block;
  color: var(--velora-wl-primary) !important;
  text-decoration: none !important;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.velora-waitlist-item-attributes {
  margin-top: 4px;
  color: var(--velora-wl-secondary);
  font-size: 11px;
  line-height: 17px;
  white-space: normal;
}

.velora-waitlist-item-price,
.velora-waitlist-item-price * {
  white-space: nowrap;
  color: var(--velora-wl-primary) !important;
  font-size: 13px;
  line-height: 19.5px;
  font-weight: 400;
}

.velora-waitlist-item-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 14px;
}

.velora-waitlist-qty {
  height: 34px;
  display: inline-grid;
  grid-template-columns: 30px 34px 30px;
  border: 1px solid var(--velora-wl-border);
}

.velora-waitlist-qty-btn,
.velora-waitlist-qty-value {
  width: 100%;
  height: 32px;
  padding: 0;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--velora-wl-primary) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 18px;
  box-shadow: none !important;
}

.velora-waitlist-qty-btn { cursor: pointer; }
.velora-waitlist-qty-btn:hover { background: rgba(74, 58, 49, .05) !important; }

.velora-waitlist-remove,
.velora-waitlist-explore,
.velora-waitlist-skip {
  border: 0 !important;
  background: transparent !important;
  color: var(--velora-wl-secondary) !important;
  box-shadow: none !important;
  cursor: pointer;
}

.velora-waitlist-remove {
  padding: 0 !important;
  font-size: 11px;
  line-height: 17px;
}

.velora-waitlist-remove:hover,
.velora-waitlist-explore:hover,
.velora-waitlist-skip:hover { color: var(--velora-wl-primary) !important; }

.velora-waitlist-summary {
  margin-top: auto;
  padding: 22px 24px 28px;
  border-top: 1px solid var(--velora-wl-border);
  background: var(--velora-wl-bg);
}

.velora-waitlist-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--velora-wl-primary);
  font-size: 13px;
  line-height: 19.5px;
}

.velora-waitlist-summary-row strong { font-weight: 400; }
.velora-waitlist-summary-row strong * { color: inherit !important; font-size: inherit !important; }

.velora-waitlist-summary p {
  margin: 7px 0 18px;
  color: var(--velora-wl-secondary);
  font-size: 11px;
  line-height: 17px;
}

.velora-waitlist-explore {
  width: 100%;
  padding: 16px 0 0 !important;
  font-size: 12px;
  line-height: 18px;
}

.velora-waitlist-inline-message {
  margin: 12px 24px 0;
  padding: 10px 12px;
  border: 1px solid var(--velora-wl-border);
  background: var(--velora-wl-panel);
  color: var(--velora-wl-primary);
  font-size: 11px;
  line-height: 17px;
}

.velora-waitlist-open,
[data-velora-waitlist="open"] { cursor: pointer; }


/* HEADER / ELEMENTOR WAITLIST ICON LIVE COUNT */
.velora-waitlist-badge-host {
  position: relative !important;
  overflow: visible !important;
}

.velora-waitlist-icon-count {
  position: absolute !important;
  top: -7px !important;
  right: -8px !important;
  z-index: 20 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-width: 18px !important;
  height: 18px !important;
  padding: 0 5px !important;

  border: 1px solid var(--velora-wl-bg) !important;
  border-radius: 999px !important;

  background: var(--velora-wl-primary) !important;
  color: var(--velora-wl-bg) !important;

  font-family: Manrope, sans-serif !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  line-height: 16px !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;

  pointer-events: none !important;
  user-select: none !important;

  transform: scale(1);
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}

.velora-waitlist-icon-count.is-zero {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(.65) !important;
}

.velora-waitlist-icon-count.is-updating {
  transform: scale(1.08);
}

@media (max-width: 767px) {
  .velora-waitlist-icon-count {
    top: -6px !important;
    right: -7px !important;
    min-width: 17px !important;
    height: 17px !important;
    padding: 0 4px !important;
    font-size: 8px !important;
  }
}

body.velora-waitlist-mode .single_add_to_cart_button,
body.velora-waitlist-mode .add_to_cart_button {
  background: var(--velora-wl-primary) !important;
  border-color: var(--velora-wl-primary) !important;
  color: var(--velora-wl-bg) !important;
}

body.velora-waitlist-mode .single_add_to_cart_button.is-loading,
body.velora-waitlist-mode .add_to_cart_button.is-loading {
  opacity: .55;
  pointer-events: none;
}

/* ========================= CHECKOUT ========================= */
.velora-waitlist-checkout-page {
  width: 100%;
  min-height: 100vh;
  background: var(--velora-wl-bg);
  color: var(--velora-wl-primary);
}

.velora-waitlist-checkout-header {
  height: 64px;
  padding: 0 clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--velora-wl-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.velora-waitlist-logo {
  color: var(--velora-wl-primary) !important;
  text-decoration: none !important;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 27px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 8px;
}

.velora-waitlist-checkout-back {
  border: 0 !important;
  padding: 8px 0 !important;
  background: transparent !important;
  color: var(--velora-wl-secondary) !important;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: .4px;
  cursor: pointer;
}

.velora-waitlist-checkout-layout {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(46px, 6vw, 74px) auto 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.velora-waitlist-form-column { min-width: 0; }
.velora-waitlist-form-heading { margin-bottom: 38px; }

.velora-waitlist-form-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--velora-wl-muted);
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 1.2px;
}

.velora-waitlist-form-column h1 {
  margin: 0 0 10px;
  color: var(--velora-wl-primary);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 3.1vw, 38px);
  line-height: 1.18;
  font-weight: 400;
}

.velora-waitlist-form-intro {
  margin: 0;
  max-width: 700px;
  color: var(--velora-wl-secondary);
  font-size: 13px;
  line-height: 21px;
}

.velora-waitlist-form {
  display: grid;
  gap: 20px;
}

.velora-waitlist-form-grid {
  display: grid;
  gap: 16px;
}

.velora-waitlist-form-grid-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.velora-waitlist-field { display: block; min-width: 0; }

.velora-waitlist-field > span:first-child,
.velora-waitlist-suggestion-label {
  display: block;
  margin: 0 0 7px;
  color: var(--velora-wl-primary);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: .8px;
  font-weight: 400;
}

.velora-waitlist-field > span b,
.velora-waitlist-check b {
  color: inherit;
  font-weight: 400;
}

.velora-waitlist-field em,
.velora-waitlist-suggestion-field em {
  color: var(--velora-wl-secondary);
  font-style: normal;
  letter-spacing: 0;
}

.velora-waitlist-form input[type="text"],
.velora-waitlist-form input[type="email"],
.velora-waitlist-form input[type="tel"],
.velora-waitlist-form select,
.velora-waitlist-suggestion-field textarea {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  padding: 0 15px !important;
  border: 1px solid var(--velora-wl-border-strong) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--velora-wl-primary) !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: Manrope, Arial, sans-serif !important;
  font-size: 13px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
  appearance: none;
  -webkit-appearance: none;
}

.velora-waitlist-select-wrap {
  position: relative;
  display: block;
}

.velora-waitlist-form select {
  padding-right: 42px !important;
  cursor: pointer;
}

.velora-waitlist-select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--velora-wl-secondary);
  pointer-events: none;
}

.velora-waitlist-form input::placeholder,
.velora-waitlist-suggestion-field textarea::placeholder {
  color: var(--velora-wl-muted) !important;
  opacity: 1;
}

.velora-waitlist-form input:focus,
.velora-waitlist-form select:focus,
.velora-waitlist-suggestion-field textarea:focus {
  border-color: var(--velora-wl-primary) !important;
}

.velora-waitlist-form input[aria-invalid="true"],
.velora-waitlist-form select[aria-invalid="true"] {
  border-color: #9B6F5F !important;
  background: var(--velora-wl-danger-bg) !important;
}

.velora-waitlist-consents {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.velora-waitlist-check {
  position: relative;
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  color: var(--velora-wl-secondary);
  font-size: 11px;
  line-height: 17px;
  cursor: pointer;
}

.velora-waitlist-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.velora-waitlist-check-box {
  position: relative;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  border: 1px solid var(--velora-wl-border-strong);
  background: transparent;
}

.velora-waitlist-check input:checked + .velora-waitlist-check-box {
  border-color: var(--velora-wl-primary);
  background: var(--velora-wl-primary);
}

.velora-waitlist-check input:checked + .velora-waitlist-check-box::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--velora-wl-bg);
  font-size: 11px;
  line-height: 1;
}

.velora-waitlist-check input:focus-visible + .velora-waitlist-check-box {
  outline: 2px solid rgba(74, 58, 49, .22);
  outline-offset: 2px;
}

.velora-waitlist-form-message,
.velora-waitlist-suggestion-message {
  min-height: 0;
  color: var(--velora-wl-primary);
  font-size: 11px;
  line-height: 17px;
}

.velora-waitlist-form-message:not(:empty),
.velora-waitlist-suggestion-message:not(:empty) {
  padding: 10px 12px;
  border: 1px solid var(--velora-wl-border);
  background: var(--velora-wl-panel);
}

.velora-waitlist-submit {
  position: relative;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 1px;
}

.velora-waitlist-submit-loader {
  display: none;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(244,239,233,.35);
  border-top-color: var(--velora-wl-bg);
  border-radius: 50%;
  animation: velora-wl-spin .7s linear infinite;
}

.velora-waitlist-submit.is-loading > span:first-child { opacity: 0; }
.velora-waitlist-submit.is-loading .velora-waitlist-submit-loader { display: block; }

.velora-waitlist-summary-card {
  position: sticky;
  top: 24px;
  padding: 24px;
  border: 1px solid var(--velora-wl-border);
  background: rgba(251,248,244,.72);
  min-width: 0;
}

.velora-waitlist-summary-eyebrow,
.velora-waitlist-success-card-eyebrow,
.velora-waitlist-success-eyebrow,
.velora-waitlist-suggestion-label {
  color: var(--velora-wl-secondary);
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 1px;
  font-weight: 400;
}

.velora-waitlist-summary-items { margin-top: 2px; }

.velora-waitlist-summary-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--velora-wl-border);
}

.velora-waitlist-summary-image {
  width: 62px;
  aspect-ratio: 4 / 5;
  background: #E9DED3;
  overflow: hidden;
  display: block;
}

.velora-waitlist-summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.velora-waitlist-summary-copy {
  min-width: 0;
  color: var(--velora-wl-secondary);
  font-size: 10px;
  line-height: 16px;
}

.velora-waitlist-summary-product-name {
  display: block;
  margin-bottom: 3px;
  color: var(--velora-wl-primary) !important;
  font-size: 11px;
  line-height: 16px;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}

.velora-waitlist-summary-price,
.velora-waitlist-summary-price * {
  color: var(--velora-wl-primary) !important;
  font-size: 11px;
  line-height: 16px;
  white-space: nowrap;
}

.velora-waitlist-summary-card-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  color: var(--velora-wl-primary);
  font-size: 12px;
  line-height: 18px;
}

.velora-waitlist-summary-card-total strong,
.velora-waitlist-summary-card-total strong * { font-weight: 400; color: inherit !important; font-size: inherit !important; }

.velora-waitlist-summary-card > p {
  margin: 18px 0 0;
  color: var(--velora-wl-secondary);
  font-size: 10px;
  line-height: 16px;
}

.velora-waitlist-checkout-empty {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--velora-wl-bg);
  text-align: center;
}

.velora-waitlist-checkout-empty-inner { max-width: 480px; }
.velora-waitlist-checkout-empty-inner > span { color: var(--velora-wl-muted); font-size: 9px; line-height: 14px; letter-spacing: 1.2px; }
.velora-waitlist-checkout-empty h1 { margin: 12px 0; font-family: Georgia, 'Times New Roman', serif; font-size: 32px; line-height: 1.2; font-weight: 400; }
.velora-waitlist-checkout-empty p { margin: 0 0 24px; color: var(--velora-wl-secondary); font-size: 13px; line-height: 20px; }
.velora-waitlist-checkout-empty a { display: inline-flex; min-height: 46px; padding: 0 24px; align-items: center; background: var(--velora-wl-primary); color: var(--velora-wl-bg) !important; text-decoration: none !important; font-size: 11px; letter-spacing: .8px; }

/* ========================= SUCCESS ========================= */
.velora-waitlist-success {
  width: min(680px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 82px) 0 100px;
  color: var(--velora-wl-primary);
}

.velora-waitlist-success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--velora-wl-primary-dark);
  color: var(--velora-wl-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  line-height: 1;
}

.velora-waitlist-success-eyebrow { text-align: center; margin-bottom: 18px; }

.velora-waitlist-success > h1 {
  margin: 0;
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 400;
}

.velora-waitlist-success > p {
  max-width: 540px;
  margin: 24px auto 26px;
  text-align: center;
  color: var(--velora-wl-secondary);
  font-size: 13px;
  line-height: 21px;
}

.velora-waitlist-reference {
  width: 170px;
  margin: 0 auto 44px;
  padding: 14px 10px;
  border: 1px solid var(--velora-wl-border);
  text-align: center;
}

.velora-waitlist-reference span { display: block; margin-bottom: 7px; color: var(--velora-wl-secondary); font-size: 8px; line-height: 12px; letter-spacing: 1px; }
.velora-waitlist-reference strong { font-family: Georgia, 'Times New Roman', serif; font-size: 15px; line-height: 20px; font-weight: 400; letter-spacing: 1px; }

.velora-waitlist-success-card,
.velora-waitlist-success-suggestion {
  border: 1px solid var(--velora-wl-border);
  padding: 28px 24px;
}

.velora-waitlist-success-suggestion { margin-top: 38px; }

.velora-waitlist-success-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--velora-wl-border);
}

.velora-waitlist-success-image {
  width: 62px;
  aspect-ratio: 4 / 5;
  background: #E9DED3;
  overflow: hidden;
}

.velora-waitlist-success-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.velora-waitlist-success-copy { color: var(--velora-wl-secondary); font-size: 10px; line-height: 16px; }
.velora-waitlist-success-copy strong { display: block; margin-bottom: 3px; color: var(--velora-wl-primary); font-size: 11px; font-weight: 400; }
.velora-waitlist-success-price, .velora-waitlist-success-price * { color: var(--velora-wl-primary) !important; font-size: 11px; line-height: 16px; white-space: nowrap; }
.velora-waitlist-success-disclaimer { padding-top: 18px; color: var(--velora-wl-secondary); font-size: 10px; line-height: 16px; }

.velora-waitlist-success-suggestion h2 { margin: 12px 0 10px; font-family: Georgia, 'Times New Roman', serif; font-size: 24px; line-height: 1.25; font-weight: 400; }
.velora-waitlist-success-suggestion > p { margin: 0 0 26px; color: var(--velora-wl-secondary); font-size: 11px; line-height: 18px; }

.velora-waitlist-suggestion-field { display: block; }
.velora-waitlist-suggestion-field > span { display: block; margin-bottom: 7px; color: var(--velora-wl-primary); font-size: 10px; line-height: 15px; }
.velora-waitlist-suggestion-field textarea { min-height: 120px !important; height: 120px !important; padding: 12px 14px !important; resize: vertical; }
.velora-waitlist-suggestion-field small { display: block; margin-top: 6px; text-align: right; color: var(--velora-wl-secondary); font-size: 9px; line-height: 14px; }
.velora-waitlist-suggestion-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 18px; margin-top: 18px; }
.velora-waitlist-submit-suggestion { min-height: 42px; padding: 0 22px; font-size: 10px; line-height: 15px; letter-spacing: .9px; }
.velora-waitlist-skip { padding: 0 !important; text-decoration: underline; text-underline-offset: 3px; font-size: 10px; line-height: 15px; }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 980px) {
  .velora-waitlist-checkout-layout {
    width: min(720px, calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .velora-waitlist-summary-card {
    position: static;
    order: 2;
  }
}

@media (max-width: 640px) {
  .velora-waitlist-panel { width: 100vw !important; }
  .velora-waitlist-header { padding: 0 20px; }
  .velora-waitlist-notice { padding-left: 20px; padding-right: 20px; }
  .velora-waitlist-item { grid-template-columns: 76px minmax(0, 1fr); gap: 13px; padding: 18px 20px; }
  .velora-waitlist-item-image { width: 76px; }
  .velora-waitlist-item-top { grid-template-columns: 1fr; gap: 4px; }
  .velora-waitlist-item-price { justify-self: start; }
  .velora-waitlist-summary { padding: 20px 20px 24px; }
  .velora-waitlist-empty { padding: 56px 20px 74px; }
  .velora-waitlist-desktop-break { display: none; }

  .velora-waitlist-checkout-header { height: 58px; padding: 0 18px; }
  .velora-waitlist-logo { font-size: 21px; letter-spacing: 5px; }
  .velora-waitlist-checkout-back { font-size: 9px; }
  .velora-waitlist-checkout-layout { width: calc(100% - 32px); margin: 34px auto 58px; gap: 30px; }
  .velora-waitlist-form-heading { margin-bottom: 30px; }
  .velora-waitlist-form-grid-2 { grid-template-columns: 1fr; gap: 20px; }
  .velora-waitlist-form input[type="text"],
  .velora-waitlist-form input[type="email"],
  .velora-waitlist-form input[type="tel"],
  .velora-waitlist-form select { min-height: 50px !important; font-size: 16px !important; }

  .velora-waitlist-summary-card { padding: 20px; }
  .velora-waitlist-summary-item { grid-template-columns: 58px minmax(0, 1fr); gap: 12px; }
  .velora-waitlist-summary-image { width: 58px; }
  .velora-waitlist-summary-price { grid-column: 2; margin-top: -2px; }

  .velora-waitlist-success { width: calc(100% - 32px); padding-bottom: 70px; }
  .velora-waitlist-success-card,
  .velora-waitlist-success-suggestion { padding: 22px 18px; }
  .velora-waitlist-success-item { grid-template-columns: 56px minmax(0, 1fr); gap: 12px; }
  .velora-waitlist-success-image { width: 56px; }
  .velora-waitlist-success-price { grid-column: 2; }
  .velora-waitlist-suggestion-actions { flex-direction: column; align-items: stretch; }
  .velora-waitlist-submit-suggestion { width: 100%; }
  .velora-waitlist-skip { align-self: center; }
}

@media (max-width: 390px) {
  .velora-waitlist-item { grid-template-columns: 68px minmax(0, 1fr); padding-left: 16px; padding-right: 16px; }
  .velora-waitlist-item-image { width: 68px; }
  .velora-waitlist-header { padding-left: 16px; padding-right: 16px; }
  .velora-waitlist-summary { padding-left: 16px; padding-right: 16px; }
  .velora-waitlist-checkout-layout { width: calc(100% - 24px); }
}

@media (prefers-reduced-motion: reduce) {
  .velora-waitlist-drawer,
  .velora-waitlist-backdrop,
  .velora-waitlist-panel {
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}
