/* ============================================================
   VET ENGINE – Booking + Result UI (full copy/paste)
   - Clean, non-duplicated, label-based form styling
   - Consistent buttons + states
   - Calendar responsive (7 cols desktop, 1 col mobile)
   ============================================================ */

/* ---------- Booking shell ---------- */
.ve-booking{
  max-width: 560px;
  margin: 50px auto;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  min-height: 0;
}

#veBookingApp{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 38px rgba(0,0,0,.06);
}

/* Force native hidden attribute to actually hide (wins vs theme/Elementor rules) */
#veBookingApp [hidden]{
  display: none !important;
}

.ve-booking h3{
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
}

.ve-step h4{
  margin: 12px 0 10px;
  font-size: 16px;
}

/* Step visibility */
#veBookingApp .ve-step{
  display: none !important;
}
#veBookingApp .ve-step.is-active{
  display: block !important;
}

/* ---------- Form system ---------- */
.ve-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ve-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ve-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ve-label{
  font-size: 13px;
  font-weight: 800;
  color: rgba(0,0,0,.78);
}

.ve-help{
  font-size: 12px;
  color: rgba(0,0,0,.58);
  line-height: 1.35;
}

.ve-step input,
.ve-step select,
.ve-step textarea{
  width: 100%;
  padding: 11px 12px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  outline: none;
  transition: box-shadow .12s ease, border-color .12s ease, transform .06s ease;
}

.ve-step textarea{
  resize: vertical;
  min-height: 92px;
}

.ve-step input:focus,
.ve-step select:focus,
.ve-step textarea:focus{
  border-color: rgba(31,106,225,.65);
  box-shadow: 0 0 0 4px rgba(31,106,225,.14);
}

.ve-step input::placeholder,
.ve-step textarea::placeholder{
  color: rgba(0,0,0,.42);
}

/* ---------- Actions / Buttons ---------- */
.ve-actions{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.ve-actions .ve-btn{
  flex: 1;
}



/* ---------- Message / Alerts ---------- */
#msg{
  margin-top: 12px;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(31,106,225,.06);
  border: 1px solid rgba(31,106,225,.18);
  color: rgba(0,0,0,.75);
}
#msg:empty{ display: none; }

#msg.is-error{
  background: rgba(192,0,0,.06);
  border-color: rgba(192,0,0,.18);
  color: #8a1f1f;
}

/* ---------- Actions / Buttons (layout only; Elementor controls visuals) ---------- */
.ve-actions{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.ve-actions .ve-btn{
  flex: 1;
}

/* Layout + sizing only (no colors, no backgrounds, no borders) */
.ve-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;
  padding: 11px 14px;
  min-height: 44px; /* good tap target */

  text-decoration: none;
}

/* Optional: keep disabled usable without changing style */
.ve-btn:disabled{
  pointer-events: none;
}

/* ---------- Step 1: pet selector cards ---------- */
.ve-pet-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.ve-pet-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: transform .08s ease, border-color .12s ease, box-shadow .12s ease;
}

.ve-pet-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.ve-pet-card:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(31,106,225,.14);
  border-color: rgba(31,106,225,.45);
}

.ve-pet-card.is-active{
  border-color: #1f6ae1;
  box-shadow: 0 0 0 4px rgba(31,106,225,.14);
}

.ve-pet-svg{
  width: 64px;
  height: 64px;
  display: block;
}

.ve-pet-label{
  font-weight: 900;
  text-align: center;
}

/* ---------- Step 3: triage check UI ---------- */
.ve-triage{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.02);
}

.ve-triage__title{
  font-weight: 900;
  margin-bottom: 2px;
}

.ve-triage__hint{
  font-size: 12px;
  opacity: .70;
  margin-bottom: 10px;
}

.ve-check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
}

.ve-check:hover{
  background: rgba(0,0,0,.03);
}

.ve-check input{
  margin-top: 2px;
  width: 18px;
  height: 18px;
}

.ve-calendar-top{
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 6px 2px;
}

.ve-calendar-head{
  text-align: center;
  min-width: 0;
}

.ve-cal-nav{
  width: 44px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px !important;
  border: 1px solid rgba(0,0,0,.14) !important;

  background-color: #1F6AE1; /* button background */

  /* ICON COLOR */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 24px 24px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 24px 24px;

  background-repeat: no-repeat;

  padding: 0;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.ve-cal-nav--prev{
  -webkit-mask-image: url('/wp-content/plugins/vet-engine/assets/icons/left-arrow.svg');
  mask-image: url('/wp-content/plugins/vet-engine/assets/icons/left-arrow.svg');
  background-color: white; /* arrow color */
}

.ve-cal-nav--next{
  -webkit-mask-image: url('/wp-content/plugins/vet-engine/assets/icons/right-arrow.svg');
  mask-image: url('/wp-content/plugins/vet-engine/assets/icons/right-arrow.svg');
  background-color: white; /* arrow color */
}


.ve-cal-nav{
  background-color: #1F6AE1 !important;
}

.ve-cal-nav:hover{
  background-color: #2fbf71 !important;
}


.ve-calendar{
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.ve-calendar-title{
  font-weight: 900;
  font-size: 16px;
}

.ve-calendar-sub{
  font-size: 13px;
  opacity: .75;
}

.ve-calendar-grid{
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.ve-day-col{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 6px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
   min-width: 0; /* allows children to shrink correctly in CSS grid */
}

.ve-day-head{
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.ve-day-times{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ve-slot-btn{
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;

  padding: 8px 6px !important;     /* slightly tighter */
  border-radius: 12px !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  background: #fff !important;

  cursor: pointer !important;
  font-size: 14px !important;
  line-height: 1.1 !important;     /* prevents clipping */
  text-align: center !important;
  white-space: nowrap !important;  /* keep 22:00 on one line */

  color: #1f6ae1 !important;
  font-weight: 900 !important;
}

.ve-slot-btn:hover{
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.ve-slot-btn.is-active{
  background: #1f6ae1 !important;
  color: #fff !important;
  border-color: #1f6ae1 !important;
}

.ve-day-empty{
  text-align: center;
  padding: 10px 0;
  opacity: .45;
  font-size: 14px;
}

/* ---------- Result screens (Success / Cancel) ---------- */
.ve-result{
  max-width: 560px;
  margin: 20px auto;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}

.ve-result__card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.ve-result--success .ve-result__card{ border-color: rgba(31,138,59,.35); }
.ve-result--warn .ve-result__card{ border-color: rgba(192,138,0,.35); }
.ve-result--error .ve-result__card{ border-color: rgba(192,0,0,.35); }

.ve-result__top{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.ve-result__icon{
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(31,106,225,.10);
  font-size: 20px;
  flex: 0 0 auto;
}

.ve-result--success .ve-result__icon{ background: rgba(31,138,59,.10); }
.ve-result--warn .ve-result__icon{ background: rgba(192,138,0,.12); }
.ve-result--error .ve-result__icon{ background: rgba(192,0,0,.10); }

.ve-result__head h3{
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.ve-result__sub{
  margin: 6px 0 0;
  font-size: 14px;
  opacity: .75;
}

.ve-result__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.ve-result__item{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.ve-result__item--full{ grid-column: 1 / -1; }

.ve-result__label{
  font-size: 12px;
  letter-spacing: .2px;
  opacity: .65;
  margin-bottom: 6px;
}

.ve-result__value{
  font-weight: 800;
  font-size: 14px;
}

.ve-result__code{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ve-chip{
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 13px;
  color: #111;
}

.ve-chip:hover{
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.ve-badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid rgba(0,0,0,.10);
}

.ve-badge--ok{
  border-color: rgba(31,138,59,.30);
  background: rgba(31,138,59,.08);
}

.ve-time__main{ font-weight: 900; }
.ve-time__sub{
  font-size: 12px;
  opacity: .65;
  margin-top: 4px;
}

.ve-result__meet{ margin-top: 8px; }

.ve-result__hint{
  font-size: 13px;
  opacity: .75;
  margin-top: 10px;
}

.ve-result__hint--spaced{ margin-top: 14px; }

.ve-result__actions{
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.ve-result__actions--stack{
  flex-direction: column;
}

.ve-result__footer{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px){
  #veBookingApp{ padding: 14px; }
  .ve-row{ grid-template-columns: 1fr; }
  .ve-actions{ flex-direction: column; }
  .ve-calendar-grid{ grid-template-columns: 1fr; }
  .ve-day-col{ min-height: auto; }
}

@media (max-width: 520px){
  .ve-result__grid{ grid-template-columns: 1fr; }
  .ve-result__footer{ flex-direction: column; align-items: flex-start; }
}

.ve-triage-warning{
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(192,0,0,.22);
  background: rgba(192,0,0,.06);
  color: rgba(120,0,0,.92);
}

.ve-triage-warning__title{
  font-weight: 900;
  margin-bottom: 4px;
}

.ve-triage-warning__text{
  font-size: 13px;
  line-height: 1.35;
}

/* ============================
   Result page – nicer look
   ============================ */

.ve-result{
  max-width: 620px;
  margin: 26px auto;
  padding: 0 10px;
}

.ve-result__card{
  position: relative;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background:
    radial-gradient(1200px 400px at 20% -20%, rgba(31,106,225,.10), transparent 60%),
    radial-gradient(900px 320px at 110% 10%, rgba(16,185,129,.10), transparent 55%),
    #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  overflow: hidden;
}

.ve-result--warn .ve-result__card{
  background:
    radial-gradient(1100px 380px at 20% -20%, rgba(245,158,11,.14), transparent 60%),
    radial-gradient(900px 320px at 110% 10%, rgba(31,106,225,.08), transparent 55%),
    #fff;
}

.ve-result--error .ve-result__card{
  background:
    radial-gradient(1100px 380px at 20% -20%, rgba(239,68,68,.12), transparent 60%),
    radial-gradient(900px 320px at 110% 10%, rgba(0,0,0,.06), transparent 55%),
    #fff;
}

.ve-result__top{
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.ve-result__icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 22px;
  background: rgba(31,106,225,.10);
}

.ve-result--success .ve-result__icon{ background: rgba(16,185,129,.12); }
.ve-result--warn .ve-result__icon{ background: rgba(245,158,11,.14); }
.ve-result--error .ve-result__icon{ background: rgba(239,68,68,.12); }

.ve-result__head h3{
  font-size: 20px;
  letter-spacing: -.2px;
}

.ve-result__sub{
  opacity: .70;
  line-height: 1.4;
}

.ve-result__grid{
  margin-top: 14px;
  gap: 12px;
}

.ve-result__item{
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
}

.ve-result__label{
  font-size: 12px;
  opacity: .62;
}

.ve-result__value{
  font-size: 14px;
  font-weight: 900;
}

.ve-result__message{
  margin: 10px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.45;
}

/* badges */
.ve-badge--ok{
  border-color: rgba(16,185,129,.35);
  background: rgba(16,185,129,.10);
}
.ve-badge--warn{
  border-color: rgba(245,158,11,.40);
  background: rgba(245,158,11,.12);
}
.ve-badge--err{
  border-color: rgba(239,68,68,.35);
  background: rgba(239,68,68,.10);
}

/* buttons – make result page independent from Elementor */
.ve-btn{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 11px 14px;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: ease 0.3s;
}

.ve-btn--block{ width: 100%; }

.ve-btn--primary{
  background: #1f6ae1;
  border-color: rgba(31,106,225,.45);
  color: #fff !important;
}

.ve-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(31,106,225,.20);
  color: #1f6ae1 !important;
  background: transparent;
}

.ve-btn--ghost{
  background: rgba(255,255,255,.85);
  color: #111827;
}

.ve-btn--ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.ve-btn--link{
  border: none;
  background: transparent;
  padding: 6px 0;
  width: auto;
  color: #1f6ae1;
  font-weight: 900;
  text-decoration: none;
}

.ve-btn--link:hover{
  text-decoration: underline;
}

/* copy chip */
.ve-chip{
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
}

/* responsive tweaks */
@media (max-width: 520px){
  .ve-result__card{ padding: 16px; border-radius: 20px; }
  .ve-result__icon{ width: 48px; height: 48px; border-radius: 14px; }
}


.ve-cal-nav.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}

/* ===== Step 6 (Patvirtinimas) summary ===== */
.ve-summary__card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}

.ve-summary__time{
  padding: 12px 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  margin-bottom: 12px;
}

.ve-summary__timeLabel{
  font-size: 12px;
  opacity: .7;
  margin-bottom: 4px;
}

.ve-summary__timeMain{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.ve-summary__timeSub{
  margin-top: 4px;
  font-size: 12px;
  opacity: .7;
}

.ve-summary__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 760px){
  .ve-summary__grid{
    grid-template-columns: 1fr 1fr;
  }
  .ve-summary__section--full{
    grid-column: 1 / -1;
  }
}

.ve-summary__section{
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
}

.ve-summary__title{
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ve-summary__dl{
  display: grid;
  gap: 8px;
}

.ve-summary__dl > div{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px;
  align-items: start;
}

@media (max-width: 420px){
  .ve-summary__dl > div{
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.ve-summary__dl dt{
  font-size: 12px;
  opacity: .7;
}

.ve-summary__dl dd{
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  word-break: break-word;
}

.ve-summary__text{
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  word-break: break-word;
}

.ve-summary__text--muted{
  font-weight: 500;
  opacity: .85;
}

.ve-summary__split{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
@media (min-width: 760px){
  .ve-summary__split{
    grid-template-columns: 1fr 1fr;
  }
}

.ve-summary__miniTitle{
  font-size: 12px;
  font-weight: 700;
  opacity: .8;
  margin-bottom: 6px;
}

.ve-summary__triage{
  display: grid;
  gap: 8px;
}

.ve-summary__triageRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ve-summary__triageKey{
  font-size: 13px;
  font-weight: 600;
  opacity: .9;
}

/* small “pill” status */
.ve-pill{
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
  white-space: nowrap;
}

.ve-pill.is-yes{ background: rgba(34,197,94,.14); border-color: rgba(34,197,94,.25); }
.ve-pill.is-no{  background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.22); }
.ve-pill.is-na{  opacity: .75; }

/* ===== Fix squished text in Step 6 summary cards ===== */

/* allow grid children to actually shrink without forcing weird overflow */
.ve-summary__section,
.ve-summary__dl,
.ve-summary__dl > div,
.ve-summary__dl dd {
  min-width: 0;
}

/* Replace the hard 180px label column with an adaptive one */
.ve-summary__dl > div{
  grid-template-columns: minmax(96px, 42%) minmax(0, 1fr);
}

/* On wide screens, keep it a bit wider but still not 180px */
@media (min-width: 760px){
  .ve-summary__dl > div{
    grid-template-columns: 140px minmax(0, 1fr);
  }
}

/* Better wrapping: don’t break every letter unless needed */
.ve-summary__dl dd{
  word-break: normal;
  overflow-wrap: anywhere; /* lets emails wrap nicely */
}


/* ===== Step 6 summary: fix squished values + ugly letter-breaking ===== */

.ve-summary__dl > div{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

/* label */
.ve-summary__dl dt{
  flex: 0 0 auto;
  max-width: 58%;
  min-width: 0;
}

/* value */
.ve-summary__dl dd{
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;

  /* IMPORTANT: don't split words into letters */
  overflow-wrap: break-word;   /* wraps long stuff when needed */
  word-break: normal;          /* avoids letter-by-letter breaks */
  hyphens: auto;
}

/* if it gets too tight, stack label/value (prevents cramped look) */
@media (max-width: 520px){
  .ve-summary__dl > div{
    flex-direction: column;
    gap: 3px;
  }
  .ve-summary__dl dd{
    text-align: left;
  }
}


.ve-upload {
  margin-top: 14px;
}

.ve-upload__bar {
  width: 100%;
  height: 8px;
  background: #e6e8eb;
  border-radius: 6px;
  overflow: hidden;
}

.ve-upload__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4f8cff, #2a6de9);
  border-radius: 6px;
  transition: width 0.2s ease;
}

.ve-upload__meta {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}

.ve-btn:disabled,
.ve-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(30%);
}

.ve-btn--primary:disabled {
  background: #b8c2d6;
  border-color: #b8c2d6;
  color: #ffffff;
}

.ve-upload__fill {
  background-size: 200% 100%;
  animation: veUploadMove 1.2s linear infinite;
}

@keyframes veUploadMove {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}


.ve-files-list{
  display: grid;
  gap: 10px;
}

.ve-file-row{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  background: #fff;
}

.ve-file-preview{
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: #f2f4f7;
  border: 1px solid #e6e8eb;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
}

.ve-file-preview img,
.ve-file-preview video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ve-file-preview--file::before{
  content: "FILE";
  font-size: 11px;
  font-weight: 700;
  opacity: .55;
}

.ve-file-info{
  flex: 1;
  min-width: 0;
}

.ve-file-name{
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ve-file-meta{
  font-size: 12px;
  opacity: .7;
  margin-top: 2px;
}


/* hide native input but keep it accessible */
.ve-file-input{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.ve-field--upload{
  position: relative;
}

/* dropzone */
.ve-dropzone{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px dashed #cfd6de;
  background: #fbfcfe;
  cursor: pointer;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
  user-select: none;
}

.ve-dropzone:hover{
  border-color: #b9c6d3;
  background: #f7faff;
}

.ve-dropzone.is-dragover{
  border-color: #1e66ff;
  background: #eef5ff;
  transform: scale(0.995);
}

.ve-dropzone__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e6e8eb;
  background: #fff;
  display: grid;
  place-items: center;
  color: #1e66ff;
  flex: 0 0 44px;
}

.ve-dropzone__text{
  flex: 1;
  min-width: 0;
}

.ve-dropzone__title{
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}

.ve-dropzone__sub{
  margin-top: 3px;
  font-size: 12px;
  opacity: .75;
  line-height: 1.2;
}

/* button-like CTA */
.ve-dropzone__cta{
  flex: 0 0 auto !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  border: 1px solid #d7e3ff !important;
  background: #1e66ff !important;
  color: #fff !important;
  line-height: 1 !important;
}

/* mobile stacking */
@media (max-width: 520px){
  .ve-dropzone{
    align-items: flex-start;
  }
  .ve-dropzone__cta{
    padding: 9px 10px;
  }
}


.ve-dropzone{
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:flex-start; /* avoid weird space-between stretching */
}

.ve-dropzone__text{
  flex: 1 1 auto;
  min-width: 0;
}

.ve-dropzone__cta{
  width: auto !important;
  max-width: max-content !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid #d7e3ff;
  background: #1e66ff;
  color: #fff;
  line-height: 1;
}

/* Mobile: stack nicely */
@media (max-width: 520px){
  .ve-dropzone{
    align-items:flex-start;
    flex-direction: column;
  }
  .ve-dropzone__cta{
    align-self: stretch;
    max-width: none !important;
    width: 100% !important;
  }
}


/* ==========================================================
   Step 1 – consultation pricing cards
   ========================================================== */

.ve-consultation-grid{
  align-items: stretch;
}

.ve-consultation-card{
  position: relative;
  min-height: 230px;
  padding: 18px 14px 16px;
  justify-content: flex-start;
  gap: 12px;
  overflow: hidden;
}

.ve-consultation-card--tick{
  border-color: rgba(16,185,129,.26);
  background:
    linear-gradient(180deg, rgba(16,185,129,.05) 0%, rgba(255,255,255,1) 56%);
}

.ve-consultation-card--tick:hover{
  box-shadow: 0 12px 28px rgba(16,185,129,.12);
}

.ve-consultation-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,.08);
}

.ve-consultation-badge--discount{
  background: rgba(31,106,225,.10);
  border-color: rgba(31,106,225,.18);
  color: #1f6ae1;
}

.ve-consultation-badge--tick{
  background: rgba(16,185,129,.12);
  border-color: rgba(16,185,129,.22);
  color: #0f9f6e;
}

.ve-consultation-card .ve-pet-svg{
  width: 62px;
  height: 62px;
  margin-top: 2px;
}

.ve-consultation-card .ve-pet-label{
  font-size: 16px;
  line-height: 1.25;
  min-height: 40px;
}

.ve-consultation-price-wrap{
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding-top: 6px;
}

.ve-consultation-price-row{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.ve-consultation-price{
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: #111827;
  letter-spacing: -0.5px;
}

.ve-consultation-subprice{
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(0,0,0,.62);
  min-height: 32px;
}

.ve-consultation-note{
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(0,0,0,.58);
}

.ve-consultation-card.is-active{
  border-color: #1f6ae1;
  box-shadow: 0 0 0 4px rgba(31,106,225,.14), 0 14px 30px rgba(0,0,0,.08);
}

.ve-consultation-card.ve-consultation-card--tick.is-active{
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,.16), 0 14px 30px rgba(0,0,0,.08);
}

@media (max-width: 640px){
  .ve-consultation-card{
    min-height: 210px;
    padding: 16px 12px 14px;
  }

  .ve-consultation-price{
    font-size: 26px;
  }

  .ve-consultation-subprice{
    font-size: 11px;
    min-height: 28px;
  }
}