@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

/* ── Custom Properties & Colors ─────────────────────────────────── */
.vo-assessment-wrap {
  --vo-font-display: 'Outfit', sans-serif;
  --vo-font-body: 'Inter', sans-serif;
  
  /* Color Palette */
  --vo-primary: hsl(155, 68%, 26%);       /* Deep Brand Green */
  --vo-primary-light: hsl(155, 68%, 95%);
  --vo-primary-hover: hsl(155, 68%, 20%);
  --vo-accent-gold: hsl(38, 92%, 50%);
  --vo-accent-blue: hsl(217, 91%, 60%);
  --vo-accent-violet: hsl(262, 83%, 62%);
  --vo-accent-red: hsl(358, 75%, 59%);
  
  /* Neutral scale */
  --vo-bg: hsl(210, 40%, 98%);
  --vo-surface: hsl(0, 0%, 100%);
  --vo-text-main: hsl(215, 28%, 17%);
  --vo-text-muted: hsl(215, 16%, 47%);
  --vo-border: hsl(214, 32%, 91%);
  --vo-shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --vo-shadow-md: 0 8px 30px rgba(0,0,0,0.05);
  --vo-shadow-lg: 0 20px 40px rgba(15, 76, 53, 0.08);
  
  /* Transitions */
  --vo-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --vo-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  font-family: var(--vo-font-body);
  color: var(--vo-text-main);
  background: var(--vo-bg);
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: var(--vo-shadow-lg);
  max-width: 800px;
  margin: 30px auto;
  box-sizing: border-box;
}

.vo-assessment-wrap * {
  box-sizing: border-box;
}

.vo-assessment-wrap h1,
.vo-assessment-wrap h2,
.vo-assessment-wrap h3,
.vo-assessment-wrap h4,
.vo-assessment-wrap h5,
.vo-assessment-wrap h6 {
  font-family: var(--vo-font-display) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  margin-top: 0 !important;
}

/* ── Progress Header ────────────────────────────────────────────── */
.vo-progress-header {
  margin-bottom: 40px;
}

.vo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.vo-brand-icon {
  font-size: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.vo-brand-name {
  font-family: var(--vo-font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--vo-primary);
}

.vo-brand-tag {
  font-size: 13px;
  font-weight: 600;
  background: var(--vo-primary-light);
  color: var(--vo-primary);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vo-progress-bar-wrap {
  height: 6px;
  background: var(--vo-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.vo-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--vo-primary) 0%, hsl(155, 68%, 42%) 100%);
  border-radius: 10px;
  transition: width 0.4s var(--vo-ease);
}

.vo-progress-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--vo-text-muted);
}

/* ── Section & Questions ────────────────────────────────────────── */
.vo-section-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--vo-border);
  padding-bottom: 20px;
}

.vo-section-icon {
  font-size: 32px;
  background: var(--vo-surface);
  box-shadow: var(--vo-shadow-md);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
}

.vo-section-title {
  font-family: var(--vo-font-display) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  margin: 0 0 6px 0 !important;
  color: var(--vo-primary) !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.vo-section-desc {
  font-size: 14px;
  color: var(--vo-text-muted);
  margin: 0;
  line-height: 1.5;
}

.vo-question {
  background: var(--vo-surface);
  border: 1px solid var(--vo-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  transition: var(--vo-transition);
  box-shadow: var(--vo-shadow-sm);
}

.vo-question:hover {
  border-color: hsl(155, 30%, 80%);
  box-shadow: var(--vo-shadow-md);
}

.vo-q-text {
  font-family: var(--vo-font-display) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 0 0 16px 0 !important;
  line-height: 1.4 !important;
  color: var(--vo-text-main) !important;
  text-transform: none !important;
}

/* Question Validation Error State */
.vo-question.vo-q-error {
  border-color: var(--vo-accent-red);
  background: hsl(358, 75%, 98%);
  animation: voShake 0.4s var(--vo-ease);
}

@keyframes voShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ── Options / Selection ────────────────────────────────────────── */
.vo-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vo-option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--vo-bg);
  border: 1px solid var(--vo-border);
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: var(--vo-transition);
}

.vo-option:hover {
  background: var(--vo-primary-light);
  border-color: var(--vo-primary);
}

.vo-option.vo-selected {
  background: var(--vo-primary-light);
  border-color: var(--vo-primary);
  color: var(--vo-primary);
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--vo-primary);
}

.vo-option input[type="radio"],
.vo-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--vo-primary);
  margin: 0;
  cursor: pointer;
}

/* Red-flag Badges */
.vo-redflag-badge {
  display: inline-block;
  background: hsl(35, 100%, 93%);
  color: hsl(35, 90%, 40%);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}

/* Body Shape Options */
.vo-body-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.vo-body-opt {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  height: 100%;
}

.vo-body-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

/* City dropdown screen */
.vo-city-field {
  background: var(--vo-surface);
  border: 1px solid var(--vo-border);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--vo-shadow-sm);
}

.vo-select {
  width: 100%;
  max-width: 320px;
  padding: 14px;
  font-size: 15px;
  border: 2px solid var(--vo-border);
  border-radius: 12px;
  background: var(--vo-surface);
  font-weight: 500;
  outline: none;
  transition: var(--vo-transition);
}

.vo-select:focus {
  border-color: var(--vo-primary);
  box-shadow: 0 0 0 3px var(--vo-primary-light);
}

.vo-select.vo-input-error {
  border-color: var(--vo-accent-red);
}

/* ── Navigation Buttons ────────────────────────────────────────── */
.vo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  border-top: 1px solid var(--vo-border);
  padding-top: 24px;
}

.vo-btn {
  font-family: var(--vo-font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--vo-transition);
}

.vo-btn-back {
  background: transparent;
  color: var(--vo-text-muted);
  border: 1px solid var(--vo-border);
}

.vo-btn-back:hover {
  background: var(--vo-border);
  color: var(--vo-text-main);
}

.vo-btn-next,
.vo-btn-submit,
.vo-btn-primary {
  background: var(--vo-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 76, 53, 0.2);
}

.vo-btn-next:hover,
.vo-btn-submit:hover,
.vo-btn-primary:hover {
  background: var(--vo-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 76, 53, 0.3);
}

.vo-btn-secondary {
  background: #fff;
  color: var(--vo-primary);
  border: 2px solid var(--vo-primary);
}

.vo-btn-secondary:hover {
  background: var(--vo-primary-light);
}

.vo-btn-full {
  width: 100%;
}

.vo-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.vo-disclaimer-note {
  font-size: 11px;
  color: var(--vo-text-muted);
  text-align: center;
  margin-top: 20px;
  line-height: 1.4;
}

/* ── Result UI Core ─────────────────────────────────────────────── */
.vo-result {
  animation: voFadeIn 0.5s var(--vo-ease);
}

@keyframes voFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.vo-result-hero {
  background: linear-gradient(135deg, var(--vo-primary) 0%, hsl(155, 68%, 18%) 100%);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--vo-shadow-md);
}

.vo-result-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
}

.vo-result-headline {
  font-family: var(--vo-font-display) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.3 !important;
  color: #fff !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.vo-hero-sub {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.vo-load-badge {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.vo-load-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.vo-load-value {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--vo-font-display);
}

.vo-result-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vo-result-card {
  background: var(--vo-surface);
  border: 1px solid var(--vo-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--vo-shadow-sm);
}

.vo-result-card h2 {
  font-family: var(--vo-font-display) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--vo-primary) !important;
  margin: 0 0 20px 0 !important;
  border-bottom: 2px solid var(--vo-primary-light) !important;
  padding-bottom: 10px !important;
  line-height: 1.4 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.vo-summary-text {
  font-size: 15px;
  line-height: 1.6;
  color: hsl(215, 28%, 25%);
  margin: 0;
}

/* Tips List UI */
.vo-tips-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.vo-tip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vo-tip-num {
  background: var(--vo-primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.vo-tip-item p {
  font-size: 14px;
  line-height: 1.5;
  margin: 4px 0 0 0;
}

.vo-care-guide-link {
  display: inline-block;
  color: var(--vo-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--vo-transition);
}

.vo-care-guide-link:hover {
  text-decoration: underline;
  transform: translateX(2px);
}

/* Two Column Layout on Standard results */
.vo-two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .vo-two-col {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.vo-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vo-product-badge {
  position: absolute;
  top: 12px;
  left: -25px;
  background: var(--vo-accent-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 28px;
  transform: rotate(-45deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vo-product-img-placeholder {
  width: 120px;
  height: 120px;
  background: var(--vo-primary-light);
  color: var(--vo-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 10px 0 20px 0;
  box-shadow: var(--vo-shadow-sm);
}

.vo-product-name {
  font-family: var(--vo-font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--vo-primary);
  margin-bottom: 4px;
}

.vo-product-tagline {
  font-size: 12px;
  color: var(--vo-text-muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.vo-product-price {
  font-family: var(--vo-font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--vo-primary);
  margin-bottom: 12px;
}

.vo-product-desc {
  font-size: 13px;
  color: var(--vo-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.vo-btn-buy {
  background: var(--vo-accent-gold);
  color: #fff;
  width: 100%;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.2);
  margin-bottom: 20px;
}

.vo-btn-buy:hover {
  background: hsl(38, 92%, 40%);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
}

.vo-why-this {
  width: 100%;
  text-align: left;
  border-top: 1px solid var(--vo-border);
  padding-top: 14px;
}

.vo-why-this summary {
  font-size: 13px;
  font-weight: 700;
  color: var(--vo-primary);
  cursor: pointer;
  outline: none;
}

.vo-why-this p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--vo-text-muted);
  margin: 8px 0 0 0;
}

/* ── Clinical Specific UI ───────────────────────────────────────── */
.vo-clinical-banner {
  background: linear-gradient(135deg, var(--vo-accent-red) 0%, hsl(358, 75%, 45%) 100%);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: var(--vo-shadow-md);
}

.vo-clinical-banner-inner {
  display: flex;
  gap: 20px;
  align-items: center;
}

.vo-clinical-icon {
  font-size: 40px;
  background: rgba(255,255,255,0.2);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.vo-clinical-headline {
  font-family: var(--vo-font-display) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  margin: 0 0 6px 0 !important;
  color: #fff !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.vo-clinical-sub {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.vo-clinical-note {
  background: hsl(358, 75%, 97%);
  border-left: 4px solid var(--vo-accent-red);
  padding: 16px;
  border-radius: 0 12px 12px 0;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 16px;
  color: hsl(358, 75%, 20%);
}

.vo-clinical-closing {
  text-align: center;
  padding: 20px 0;
  font-family: var(--vo-font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--vo-text-muted);
}

/* ── Doctor & Referrals ─────────────────────────────────────────── */
.vo-referral-card {
  border-left: 6px solid var(--vo-primary);
}

.vo-referral-strong {
  border-left-color: var(--vo-accent-red);
}

.vo-referral-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.vo-referral-strong .vo-referral-badge {
  background: hsl(358, 75%, 92%);
  color: var(--vo-accent-red);
}

.vo-referral-recommended .vo-referral-badge {
  background: hsl(38, 92%, 92%);
  color: var(--vo-accent-gold);
}

.vo-referral-optional .vo-referral-badge {
  background: var(--vo-primary-light);
  color: var(--vo-primary);
}

.vo-doctor-profile {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 15px;
}

.vo-doctor-avatar {
  font-size: 40px;
  background: var(--vo-bg);
  border: 1px solid var(--vo-border);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.vo-doctor-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.vo-doctor-name {
  font-family: var(--vo-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--vo-text-main);
}

.vo-doctor-qual {
  font-size: 12px;
  color: var(--vo-text-muted);
  font-weight: 500;
}

.vo-doctor-address {
  font-size: 13px;
  color: hsl(215, 20%, 35%);
  line-height: 1.4;
}

.vo-btn-doctor-call,
.vo-btn-book {
  display: inline-flex;
  align-items: center;
  color: var(--vo-primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  margin-top: 8px;
  margin-right: 15px;
  padding: 6px 12px;
  border: 1px solid var(--vo-primary);
  border-radius: 8px;
  transition: var(--vo-transition);
}

.vo-btn-book {
  background: var(--vo-primary);
  color: #fff;
  border: none;
}

.vo-btn-doctor-call:hover {
  background: var(--vo-primary-light);
}

.vo-btn-book:hover {
  background: var(--vo-primary-hover);
}

.vo-telehealth-badge {
  display: inline-block;
  background: hsl(150, 80%, 93%);
  color: hsl(150, 80%, 25%);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 8px;
  width: fit-content;
}

.vo-no-doctor {
  font-size: 14px;
  color: var(--vo-text-muted);
  line-height: 1.5;
}

.vo-doctor-email-capture {
  background: var(--vo-bg);
  border: 1px solid var(--vo-border);
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
}

.vo-doctor-email-capture p {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.vo-inline-form {
  display: flex;
  gap: 10px;
}

@media (max-width: 480px) {
  .vo-inline-form {
    flex-direction: column;
  }
}

.vo-input {
  flex-grow: 1;
  padding: 12px;
  border: 2px solid var(--vo-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: var(--vo-transition);
}

.vo-input:focus {
  border-color: var(--vo-primary);
}

/* ── Lifestyle Enriched specific UI ────────────────────────────── */
.vo-value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.vo-value-card {
  background: var(--vo-surface);
  border: 1px solid var(--vo-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--vo-shadow-sm);
  transition: var(--vo-transition);
}

.vo-value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--vo-shadow-md);
}

.vo-value-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.vo-value-card h3 {
  font-family: var(--vo-font-display) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 0 10px 0 !important;
  color: var(--vo-primary) !important;
  line-height: 1.4 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.vo-value-card p {
  font-size: 13px;
  color: var(--vo-text-muted);
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.vo-value-card .vo-btn {
  font-size: 13px;
  padding: 10px 16px;
  width: 100%;
}

.vo-pdf-form,
.vo-reminder-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.vo-reminder-confirm,
.vo-success-message {
  font-size: 12px;
  font-weight: 700;
  color: var(--vo-primary);
  text-align: center;
  margin-top: 5px;
}

/* ── Call-Back Cards ────────────────────────────────────────────── */
.vo-callback-card {
  border-left: 6px solid var(--vo-primary);
}

.vo-callback-prominent {
  border-left-color: var(--vo-accent-violet);
  background: linear-gradient(to right, hsl(262, 83%, 98%) 0%, var(--vo-surface) 100%);
}

.vo-callback-hours {
  font-size: 12px;
  font-weight: 700;
  color: var(--vo-text-muted);
  margin-bottom: 16px;
}

/* ── PDF Delivery block ─────────────────────────────────────────── */
.vo-pdf-delivery-card {
  background: linear-gradient(135deg, hsl(155, 68%, 98%) 0%, var(--vo-surface) 100%);
  border: 1px dashed var(--vo-primary);
}

.vo-pdf-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.vo-pdf-delivery-card h2 {
  border: none !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
}

.vo-pdf-delivery-card p {
  font-size: 14px;
  color: var(--vo-text-muted);
  margin: 0 0 24px 0;
}

.vo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 580px) {
  .vo-form-grid {
    grid-template-columns: 1fr;
  }
}

.vo-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.vo-form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--vo-text-main);
}

.vo-required {
  color: var(--vo-accent-red);
}

.vo-channel-selector {
  margin-bottom: 24px;
}

.vo-channel-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vo-channel-options {
  display: flex;
  gap: 20px;
}

.vo-channel-option-ui {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.vo-channel-option-ui input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--vo-primary);
}

.vo-consent-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.vo-checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  color: var(--vo-text-muted);
  cursor: pointer;
}

.vo-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--vo-primary);
}

/* Form status messages */
.vo-status-msg {
  padding: 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  line-height: 1.5;
}

.vo-status-msg.vo-success {
  background: var(--vo-primary-light);
  color: var(--vo-primary);
  border: 1px solid hsl(155, 68%, 85%);
}

.vo-status-msg.vo-error {
  background: hsl(358, 75%, 97%);
  color: var(--vo-accent-red);
  border: 1px solid hsl(358, 75%, 90%);
}

/* Validation Highlights */
.vo-field-error input,
.vo-field-error select,
.vo-field-error textarea {
  border-color: var(--vo-accent-red) !important;
  background: hsl(358, 75%, 99%);
}

.vo-field-error .vo-checkbox-text,
.vo-field-error .vo-radio-text {
  color: var(--vo-accent-red) !important;
}

/* Button Loaders */
.vo-btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vo-btn-loader::after {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: voSpin 0.8s linear infinite;
}

@keyframes voSpin {
  to { transform: rotate(360deg); }
}


/* ── Modal Dialog Overlay ───────────────────────────────────────── */
body.vo-modal-open {
  overflow: hidden;
}

.vo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 76, 53, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  animation: voOverlayIn 0.3s var(--vo-ease);
}

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

.vo-modal {
  background: var(--vo-surface);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: voModalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes voModalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.vo-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--vo-bg);
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--vo-text-muted);
  transition: var(--vo-transition);
}

.vo-modal-close:hover {
  background: var(--vo-border);
  color: var(--vo-text-main);
}

.vo-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.vo-modal-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: inline-block;
}

.vo-modal-header h2 {
  font-family: var(--vo-font-display) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--vo-primary) !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.vo-modal-header p {
  font-size: 13px;
  color: var(--vo-text-muted);
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.vo-modal-hours {
  font-size: 11px;
  font-weight: 700;
  color: var(--vo-primary);
  background: var(--vo-primary-light);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* Phone input styling */
.vo-phone-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--vo-border);
  border-radius: 10px;
  background: var(--vo-surface);
  transition: var(--vo-transition);
}

.vo-phone-input-wrap:focus-within {
  border-color: var(--vo-primary);
}

.vo-phone-prefix {
  padding: 12px 14px;
  background: var(--vo-bg);
  border-right: 1px solid var(--vo-border);
  font-size: 14px;
  font-weight: 700;
  color: var(--vo-text-muted);
  border-radius: 8px 0 0 8px;
}

.vo-input-phone {
  border: none !important;
  flex-grow: 1;
  background: transparent !important;
  border-radius: 0 8px 8px 0 !important;
}

.vo-field-hint {
  font-size: 11px;
  color: var(--vo-text-muted);
  margin: 4px 0 0 0;
}

.vo-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--vo-border);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  font-family: var(--vo-font-body);
  resize: none;
  transition: var(--vo-transition);
}

.vo-textarea:focus {
  border-color: var(--vo-primary);
}

.vo-char-counter {
  font-size: 10px;
  text-align: right;
  color: var(--vo-text-muted);
  margin-top: 4px;
}


/* ── Floating Contact Widget ────────────────────────────────────── */
.vo-floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-family: var(--vo-font-body);
  transition: opacity 0.3s var(--vo-ease), transform 0.3s var(--vo-ease);
}

.vo-floating-widget.vo-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.vo-floating-trigger {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp Green */
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vo-floating-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.vo-floating-trigger.vo-active {
  transform: rotate(135deg);
  background: var(--vo-text-main);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.vo-trigger-icon {
  font-size: 24px;
}

.vo-floating-menu {
  background: var(--vo-surface);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  border: 1px solid var(--vo-border);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 200px;
}

.vo-floating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vo-text-main);
  text-decoration: none;
  transition: var(--vo-transition);
}

.vo-floating-item:hover {
  background: var(--vo-bg);
  color: var(--vo-primary);
}

.vo-item-icon {
  font-size: 16px;
}

/* ── Intro Screen ────────────────────────────────────────────────── */
.vo-intro-screen {
  background: var(--vo-surface);
  border-radius: 20px;
  padding: 48px 40px;
  border: 1px solid var(--vo-border);
  box-shadow: var(--vo-shadow-md);
  animation: vo-fade-up 0.4s var(--vo-ease) both;
}

@media (max-width: 600px) {
  .vo-intro-screen { padding: 32px 24px; }
}

.vo-intro-title {
  font-family: var(--vo-font-display) !important;
  font-size: clamp(26px, 5vw, 36px) !important;
  font-weight: 800 !important;
  color: var(--vo-primary) !important;
  margin-bottom: 10px !important;
  line-height: 1.2 !important;
}

.vo-intro-tagline {
  font-size: 16px;
  color: var(--vo-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.vo-intro-promises {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.vo-intro-promise {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--vo-primary-light);
  padding: 18px 20px;
  border-radius: 14px;
  border-left: 4px solid var(--vo-primary);
  transition: transform 0.2s var(--vo-ease);
}

.vo-intro-promise:hover {
  transform: translateX(4px);
}

.vo-intro-promise-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.vo-intro-promise-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--vo-text-main);
}

.vo-intro-promise-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--vo-primary);
  margin-bottom: 3px;
}

.vo-btn-start {
  display: block;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, hsl(155, 68%, 26%), hsl(155, 68%, 38%));
  color: #fff;
  font-family: var(--vo-font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.15s var(--vo-ease), box-shadow 0.15s var(--vo-ease);
  box-shadow: 0 6px 20px hsla(155, 68%, 26%, 0.30);
  margin-bottom: 24px;
}

.vo-btn-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px hsla(155, 68%, 26%, 0.40);
}

.vo-btn-start:active {
  transform: translateY(0);
}

.vo-intro-disclaimer {
  background: hsl(38, 92%, 97%);
  border-left: 4px solid hsl(38, 92%, 50%);
  color: hsl(38, 70%, 35%);
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.6;
}

.vo-intro-disclaimer strong {
  color: hsl(38, 70%, 28%);
}

/* ── WooCommerce Add to Cart button ─────────────────────────────── */
.vo-btn-addtocart {
  background: linear-gradient(135deg, hsl(155, 68%, 26%), hsl(155, 68%, 38%)) !important;
  color: #fff !important;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.15s var(--vo-ease), box-shadow 0.15s var(--vo-ease);
  box-shadow: 0 4px 14px hsla(155, 68%, 26%, 0.25);
  margin-bottom: 10px;
}

.vo-btn-addtocart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px hsla(155, 68%, 26%, 0.35);
  color: #fff !important;
}

.vo-btn-secondary-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--vo-primary);
  text-decoration: none;
  margin-top: 8px;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.vo-btn-secondary-link:hover {
  opacity: 1;
  text-decoration: underline;
}
