/* ============================================================
   Vokemate — Frontend
   Palette: 60% #FFFFFF · 30% #0C014D · 10% #FF0D24 (+ tints/shades)
   Font: Libre Franklin
   Mobile-first responsive
   ============================================================ */

:root {
  --ink: #0C014D;            /* primary navy */
  --ink-900: #090138;
  --ink-800: #0A0240;
  --ink-600: #463C78;        /* tint */
  --ink-300: #8C84B8;        /* tint */
  --ink-200: #C0BCDC;        /* tint */
  --ink-100: #E7E4F5;        /* tint */
  --ink-50: #F3F1FA;         /* tint */

  --ink-700: #6B6490;        /* tint */
  --ink-400: #B0AAD0;        /* tint */

  --red: #FF0D24;            /* accent */
  --red-700: #CC0A1D;
  --red-500: #FF0D24;
  --red-300: #FF5C6A;        /* tint */
  --red-100: #FFD3D7;        /* tint */
  --red-50: #FFF0F1;         /* tint */

  --white: #FFFFFF;
  --gray-50: #FAFAFB;
  --gray-100: #F2F2F6;
  --gray-200: #E6E6EE;
  --gray-300: #D6D6E0;
  --gray-500: #8A8A9E;
  --gray-700: #55556A;

  --ok: #0F9D58;
  --ok-bg: #E6F6EE;
  --info: #2B7FFF;
  --info-bg: #EAF2FF;
  --warn: #FF7A00;
  --warn-bg: #FFF2E6;

  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(12, 1, 77, 0.10);
  --shadow-sm: 0 2px 8px rgba(12, 1, 77, 0.06);
  --shadow-md: 0 8px 20px rgba(12, 1, 77, 0.12);
  --shadow-lg: 0 24px 60px rgba(12, 1, 77, 0.18);
  --ring: 0 0 0 4px rgba(255, 13, 36, 0.16);
  --font: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

.vk-auth-page,
.vk-dash,
.vk-order-page,
.vk-suppliers-page,
.vk-hero,
.vk-features,
.vk-how,
.vk-calc,
.vk-contact {
  font-family: var(--font);
}

/* ---------- Buttons ---------- */
.vk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 14px 22px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.vk-btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }
.vk-btn-primary {
  background: var(--ink);
  color: var(--white);
}
.vk-btn-primary:hover:not(:disabled) {
  background: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.vk-btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.vk-btn-outline:hover:not(:disabled) {
  background: var(--ink);
  color: var(--white);
}
.vk-btn-ghost {
  background: var(--ink-50);
  color: var(--ink);
  padding: 10px 16px;
  font-size: 14px;
}
.vk-btn-ghost:hover { background: var(--ink-100); }
.vk-btn-danger-text { color: var(--red); }
.vk-btn-danger-text:hover { background: var(--red-50); }
.vk-btn-block { width: 100%; }

/* ---------- Fields ---------- */
.vk-field { margin-bottom: 18px; }
.vk-field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 14px;
}
.vk-input, .vk-field input[type="text"], .vk-field input[type="tel"], .vk-field input[type="search"], .vk-field input[type="number"] {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-800);
  background: var(--white);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.vk-field textarea, .vk-field select {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-800);
  background: var(--white);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.vk-field textarea { min-height: 80px; }
.vk-input:focus, .vk-field input:focus, .vk-field textarea:focus, .vk-field select:focus {
  border-color: var(--red);
  box-shadow: var(--ring);
}
.vk-input::placeholder, .vk-field input::placeholder, .vk-field textarea::placeholder { color: var(--gray-500); font-weight: 400; }

.vk-input-group {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--gray-300);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  height: 54px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.vk-input-group:focus-within { border-color: var(--red); box-shadow: var(--ring); }
.vk-input-group input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 16px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-800);
}
.vk-input-group input::placeholder { color: var(--gray-500); font-weight: 400; }
.vk-input-group input[type="number"]::-webkit-outer-spin-button,
.vk-input-group input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.vk-input-group input[type="number"] { -moz-appearance: textfield; }
.vk-input-group select {
  flex-shrink: 0;
  border: none;
  outline: none;
  background: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-800);
  cursor: pointer;
  padding: 0 30px 0 14px;
  min-width: 96px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235e6f7e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.vk-input-group select:hover { background-color: var(--gray-50); }
.vk-divider { width: 1.5px; background: var(--gray-300); flex-shrink: 0; }
.vk-input-group:focus-within .vk-divider { background: var(--red); }
.vk-cc {
  display: flex;
  align-items: center;
  padding: 0 6px 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--gray-50);
  border-right: 1.5px solid var(--gray-300);
  flex-shrink: 0;
}
.vk-hint { font-size: 12.5px; color: var(--gray-700); margin-top: 6px; }
.vk-optional { color: var(--gray-500); font-weight: 400; }

.vk-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.4;
}
.vk-check input { margin-top: 3px; accent-color: var(--red); width: 18px; height: 18px; flex-shrink: 0; }
.vk-check a { color: var(--red); font-weight: 600; }

.vk-error {
  color: var(--red);
  font-weight: 600;
  font-size: 13.5px;
  margin: 8px 0 4px;
}
.vk-error[hidden] { display: none; }

/* ---------- Auth pages ---------- */
.vk-auth-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--ink-100), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, var(--red-100), transparent 55%),
    var(--white);
}
.vk-auth-card {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  animation: vkUp .4s ease;
}
@keyframes vkUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.vk-auth-head { text-align: center; margin-bottom: 26px; }
.vk-auth-head .vk-logo { width: 96px; height: auto; margin-bottom: 10px; }
.vk-auth-head h1 { color: var(--ink); font-size: 26px; font-weight: 800; margin: 0 0 6px; }
.vk-auth-head p { color: var(--gray-700); margin: 0; font-size: 15px; }
.vk-auth-switch { text-align: center; margin-top: 20px; font-size: 14.5px; color: var(--gray-700); }
.vk-auth-switch a { color: var(--red); font-weight: 700; text-decoration: none; }

.vk-otp-section {
  margin-top: 6px;
  padding: 16px;
  background: var(--ink-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  animation: vkUp .3s ease;
}
.vk-otp-hint { margin: 0 0 12px; font-size: 14px; color: var(--ink-700); }
.vk-resend {
  width: 100%;
  background: none;
  border: none;
  color: var(--red);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 10px;
  margin-bottom: 10px;
}
.vk-resend:disabled { color: var(--gray-500); cursor: default; }

/* ---------- Dashboard ---------- */
.vk-dash {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 18px 60px;
}
.vk-dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.vk-greeting { color: var(--red); font-weight: 700; margin: 0; font-size: 15px; }
.vk-dash-header h1 { color: var(--ink); font-size: clamp(24px, 4vw, 34px); font-weight: 800; margin: 4px 0 2px; }
.vk-sub { color: var(--gray-700); margin: 0; font-size: 14px; }
.vk-dash-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Account dropdown ---------- */
.vk-dropdown { position: relative; }
.vk-dropdown .vk-caret { font-size: 11px; margin-left: 4px; opacity: .8; }
.vk-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  max-width: calc(100vw - 24px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 90;
}
@media (max-width: 760px) {
  .vk-dropdown { width: 100%; }
  .vk-dropdown-menu {
    left: 0;
    right: 0;
    min-width: 0;
    max-width: none;
  }
}
.vk-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: none;
  background: none;
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}
.vk-dropdown-item:hover { background: var(--ink-100); }
.vk-dropdown-icon { font-size: 16px; width: 20px; text-align: center; }
.vk-dropdown-danger { color: var(--red-700); }
.vk-dropdown-danger:hover { background: #ffebee; }

.vk-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.vk-quick-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.vk-quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vk-quick-pickup { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-600) 100%); }
.vk-quick-return { background: linear-gradient(135deg, var(--red) 0%, var(--red-700) 100%); }
.vk-quick-report { background: linear-gradient(135deg, #3858e9 0%, #2536b0 100%); }
.vk-quick-icon { font-size: 30px; }
.vk-quick-card strong { font-size: 19px; font-weight: 800; }
.vk-quick-card small { font-size: 13.5px; opacity: .92; line-height: 1.4; }

.vk-dash-section { margin-bottom: 40px; }
.vk-dash-section h2 {
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  border-left: 5px solid var(--red);
  padding-left: 12px;
  margin: 0 0 16px;
}
.vk-orders { display: flex; flex-direction: column; gap: 14px; }
.vk-empty {
  background: var(--gray-50);
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  color: var(--gray-700);
}

/* Order card */
.vk-order-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.vk-order-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
}
.vk-order-summary:hover { background: var(--ink-50); }
.vk-order-num { font-weight: 800; color: var(--ink); font-size: 16px; }
.vk-order-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 13px; color: var(--gray-700); grid-column: 1; }
.vk-order-status {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  text-align: right;
}
.vk-short-track { font-weight: 700; font-size: 13.5px; }
.vk-fee-figure { font-size: 18px; font-weight: 800; color: var(--ink); }
.vk-pay-here {
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 9px 18px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  margin-top: 3px;
}
.vk-pay-here:hover { background: var(--red); }
.vk-pay-here:disabled { background: var(--gray-300); cursor: default; }
.vk-pay-here:disabled:hover { background: var(--gray-300); }
.vk-paid-word {
  background: #e3f4e8;
  color: #177245;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 10px;
  margin-top: 3px;
}

.vk-order-details {
  border-top: 1.5px solid var(--gray-200);
  padding: 18px 20px;
  background: var(--gray-50);
  animation: vkUp .25s ease;
}
.vk-detail-row { font-size: 14px; margin-bottom: 10px; color: var(--ink-800); line-height: 1.5; }
.vk-detail-row strong { color: var(--ink); }
.vk-detail-sep { height: 1px; background: var(--gray-200); margin: 12px 0; }
.vk-detail-label { font-weight: 800; color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: .4px; margin: 14px 0 8px; }

/* Progress tracker — a line of dots with the current stage's label shown in a
   single fixed position (one label disappears, the next appears in its place). */
.vk-progress-track { margin: 16px 0 6px; }
.vk-progress-dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 8px;
  margin-bottom: 12px;
}
.vk-progress-dots::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 3px;
  background: var(--gray-200);
  transform: translateY(-50%);
  z-index: 1;
}
.vk-progress-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-300);
  position: relative;
  z-index: 2;
}
.vk-progress-dot.done { background: var(--ok); border-color: var(--ok); }
.vk-progress-dot.current { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 4px var(--red-100); }
.vk-progress-status {
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  min-height: 20px;
}

/* Unavailable control */
.vk-unavailable { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 12px; }
.vk-unavailable input[type="date"] {
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
}
.vk-unavailable .vk-btn { padding: 10px 16px; font-size: 14px; border-radius: 10px; }
.vk-unavailable-note { font-size: 13px; color: var(--warn); font-weight: 600; width: 100%; }

/* ---------- Order form ---------- */
.vk-order-page { max-width: 720px; margin: 0 auto; padding: 36px 16px 60px; }
.vk-order-head h1 { color: var(--ink); font-size: clamp(24px, 4vw, 32px); font-weight: 800; margin: 0 0 6px; }
.vk-order-head p { color: var(--gray-700); margin: 0 0 24px; }
.vk-supplier-block {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  position: relative;
}
.vk-supplier-block h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vk-remove-supplier {
  background: var(--red-50);
  color: var(--red);
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.vk-suggest {
  position: relative;
}
.vk-suggest-list {
  position: absolute;
  z-index: 30;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  max-height: 220px;
  overflow: auto;
  margin-top: -8px;
}
.vk-suggest-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.vk-suggest-item:hover { background: var(--ink-50); }
.vk-suggest-item small { color: var(--gray-500); }
.vk-suggest-empty { padding: 12px 16px; font-size: 13px; color: var(--gray-500); }

/* ---------- Suppliers ---------- */
.vk-suppliers-page { max-width: 980px; margin: 0 auto; padding: 32px 16px 60px; }
.vk-suppliers-toolbar { margin: 20px 0 18px; }
.vk-suppliers-toolbar .vk-input { max-width: 420px; }
.vk-supplier-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.vk-supplier-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vk-supplier-card h3 { margin: 0; color: var(--ink); font-size: 16px; font-weight: 800; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.vk-badge { font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: .3px; }
.vk-badge-verified { background: var(--ok-bg); color: var(--ok); }
.vk-badge-pending { background: var(--warn-bg); color: var(--warn); }
.vk-supplier-card p { margin: 0; font-size: 13.5px; color: var(--gray-700); word-break: break-word; }
.vk-supplier-card .vk-card-actions { display: flex; gap: 8px; margin-top: 10px; }
.vk-supplier-card .vk-card-actions .vk-btn { flex: 1; padding: 9px; font-size: 13px; }

/* Modal */
.vk-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12, 1, 77, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.vk-modal[hidden] { display: none; }
.vk-modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: vkUp .25s ease;
}
.vk-modal-card h3 { margin: 0 0 18px; color: var(--ink); }
.vk-modal-actions { display: flex; gap: 10px; margin-top: 6px; }
.vk-modal-actions .vk-btn { flex: 1; }

/* ---------- Home ---------- */
.vk-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 18px 20px;
}
.vk-eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 10px;
}
.vk-hero-copy h1 {
  color: var(--ink);
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 16px;
}
.vk-accent { color: var(--red); }
.vk-hero-sub { font-size: 17px; color: var(--gray-700); line-height: 1.6; max-width: 560px; margin: 0 0 26px; }
.vk-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.vk-hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(600px 400px at 50% 40%, var(--ink-100), var(--white));
  border-radius: var(--radius-lg);
  min-height: 260px;
}
.vk-hero-logo { width: min(260px, 70%); }

.vk-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 18px;
}
.vk-feature {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.vk-feature-icon { font-size: 30px; }
.vk-feature h3 { color: var(--ink); margin: 10px 0 6px; font-size: 18px; font-weight: 800; }
.vk-feature p { color: var(--gray-700); margin: 0; font-size: 14.5px; line-height: 1.55; }

.vk-how, .vk-calc, .vk-contact { max-width: 1120px; margin: 0 auto; padding: 40px 18px; }
.vk-how h2, .vk-calc h2, .vk-contact h2 {
  color: var(--ink);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 8px;
}
.vk-how-sub { text-align: center; color: var(--gray-700); margin: 0 0 24px; }
.vk-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 980px; margin: 0 auto; }
.vk-video { max-width: none; margin: 0; }
@media (max-width: 720px) { .vk-videos { grid-template-columns: 1fr; } }
.vk-video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-600) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  gap: 12px;
  overflow: hidden;
}
.vk-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.vk-play-btn:hover { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(255,255,255,.12); }
.vk-video-placeholder p { font-weight: 600; }

.vk-calc-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
}
.vk-calc-card .section { margin-bottom: 22px; }
.vk-calc-card .section > label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  font-size: 14px;
}
.vk-calc-card .section small { color: var(--gray-500); font-size: 12.5px; }
.vk-dimension { margin-bottom: 10px; }
.vk-dimension:last-child { margin-bottom: 0; }
.vk-delivery-options { display: flex; gap: 12px; flex-direction: column; }
.vk-radio-card {
  flex: 1;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.vk-radio-card:hover { border-color: var(--red); }
.vk-radio-card:has(input:checked) { border-color: var(--red); background: var(--red-50); }
.vk-radio-card input { accent-color: var(--red); }
.vk-result-card {
  margin-top: 10px;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--ink-50);
  border: 2px solid var(--ink-100);
  animation: vkUp .35s ease;
}
.vk-result-card h3 { color: var(--ink); margin: 0 0 10px; }
.vk-price { font-size: 46px; color: var(--red); font-weight: 800; margin-bottom: 6px; }
.vk-result-card p { color: var(--gray-700); font-size: 13.5px; margin: 0; }

.vk-contact-cards { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.vk-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 34px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.vk-contact-card:hover { transform: translateY(-3px); }
.vk-contact-icon { font-size: 28px; }
.vk-contact-card strong { color: var(--ink); font-size: 17px; }

/* ---------- App chrome (header / footer) ---------- */
/* Hide the theme's default template-part header & footer on this app site. */
.wp-site-blocks > header.wp-block-template-part,
.wp-site-blocks > footer.wp-block-template-part { display: none !important; }

.vk-app-header { position: sticky; top: 0; z-index: 50; background: var(--ink); box-shadow: 0 2px 14px rgba(9, 1, 56, .35); }
.vk-app-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.vk-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.vk-brand .vk-logo { width: 34px; height: 34px; }
.vk-brand-name { color: var(--white); font-weight: 700; font-size: 18px; letter-spacing: .2px; }
.vk-nav { display: flex; gap: 18px; margin-left: 8px; }
.vk-nav a { color: rgba(255, 255, 255, .82); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color .2s ease; }
.vk-nav a:hover { color: var(--white); }
.vk-nav-cta { margin-left: auto; display: flex; gap: 10px; }
.vk-btn-sm { padding: 9px 14px; font-size: 13.5px; border-radius: 11px; }

/* Hamburger (mobile only) */
.vk-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}
.vk-burger span { display: block; height: 2.5px; width: 100%; background: var(--white); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.vk-burger:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 8px; }
.vk-burger-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.vk-burger-open span:nth-child(2) { opacity: 0; }
.vk-burger-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.vk-mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 16px;
  background: var(--ink-800);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.vk-mobile-menu[hidden] { display: none; }
.vk-mobile-menu a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 10px;
  border-radius: 10px;
}
.vk-mobile-menu a:hover { background: rgba(255, 255, 255, .08); }
.vk-mobile-menu .vk-btn { margin-top: 10px; }

.vk-app-footer { background: var(--ink-900); color: var(--ink-200); margin-top: 60px; }
.vk-app-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 20px 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}
.vk-app-footer .vk-brand-name { color: var(--white); }
.vk-footer-brand p { margin: 12px 0 0; font-size: 14px; color: var(--ink-200); }
.vk-footer-links, .vk-footer-contact { display: flex; flex-direction: column; gap: 10px; }
.vk-footer-links strong, .vk-footer-contact strong { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .6px; }
.vk-footer-links a, .vk-footer-contact a { color: var(--ink-200); text-decoration: none; font-size: 14px; }
.vk-footer-links a:hover, .vk-footer-contact a:hover { color: var(--red-300); }
.vk-footer-bottom {
  text-align: center;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  color: var(--ink-300);
}

/* Google Places dropdown */
.pac-container { border-radius: 0 0 14px 14px; border: 1.5px solid var(--gray-200); border-top: none; box-shadow: var(--shadow-lg); font-family: var(--font); }
.pac-item { padding: 10px 14px; font-size: 14px; color: var(--ink-800); cursor: pointer; border-bottom: 1px solid var(--gray-100); }
.pac-item:hover { background: var(--ink-50); }
.pac-item-query { font-weight: 500; color: var(--ink-800); }
.pac-matched { font-weight: 700; color: var(--red); }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .vk-delivery-options { flex-direction: row; }
  .vk-features { grid-template-columns: repeat(3, 1fr); }
  .vk-quick { gap: 20px; }
}
@media (min-width: 900px) {
  .vk-hero { grid-template-columns: 1.1fr .9fr; padding-top: 60px; }
  .vk-hero-art { min-height: 380px; }
}
@media (max-width: 760px) {
  .vk-nav { display: none; }
  .vk-nav-cta { display: none; }
  .vk-burger { display: inline-flex; }
  .vk-app-header-inner { padding: 10px 14px; }
  .vk-app-footer-inner { grid-template-columns: 1fr; }
  .vk-dash { padding: 20px 14px 50px; }
  .vk-dash-header .vk-dash-actions { width: 100%; }
  .vk-dash-actions .vk-btn { flex: 1; justify-content: center; }
  .vk-supplier-block { padding: 16px 14px; }
  .vk-orders, .vk-suppliers-page, .vk-order-page { padding-left: 12px; padding-right: 12px; }
  .vk-modal { padding: 10px; }
  .vk-modal-card { padding: 20px 16px; max-height: calc(100vh - 20px); }
}
@media (max-width: 560px) {
  .vk-quick { grid-template-columns: 1fr; }
  .vk-auth-card { padding: 24px 16px; }
  .vk-auth-head .vk-logo { width: 76px; }
  .vk-order-summary { grid-template-columns: 1fr; }
  .vk-order-status { grid-column: 1; grid-row: auto; justify-self: start; text-align: left; align-items: flex-start; }
  .vk-progress-status { font-size: 12.5px; }
  .vk-price { font-size: 36px; }
  .vk-calc-card { padding: 22px 16px; }
  .vk-hero { padding: 32px 14px 12px; }
  .vk-contact-card { padding: 18px 22px; }
  h1 { overflow-wrap: break-word; }
}

/* ---------- In-page back link ---------- */
.vk-back { margin: 0 0 6px; font-size: 14px; }
.vk-back a { color: var(--info); text-decoration: none; font-weight: 600; }
.vk-back a:hover { text-decoration: underline; }

/* ---------- Package description (order form) ---------- */
.vk-desc-field label { display: flex; align-items: center; gap: 6px; }
.vk-desc-field label::before { content: '📝'; font-size: 15px; }
.vk-desc-wrap {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.vk-desc-wrap:focus-within {
  border-color: var(--red);
  background: var(--white);
  box-shadow: var(--ring);
}
.vk-desc-wrap .sup-desc {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px 14px 6px;
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--ink);
  resize: vertical;
  min-height: 72px;
  outline: none;
  box-shadow: none;
}
.vk-desc-wrap .sup-desc::placeholder { color: var(--gray-500); font-weight: 400; }
.vk-desc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 9px;
  border-top: 1px dashed var(--gray-200);
}
.vk-desc-tip { font-size: 12px; color: var(--gray-500); }
.vk-desc-count { font-size: 12px; font-weight: 600; color: var(--ink-300); font-variant-numeric: tabular-nums; }

/* ---------- Audio recording (order form) ---------- */
.vk-audio-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.vk-rec-preview { width: 100%; max-width: 340px; margin-top: 8px; border-radius: 10px; }
.vk-rec-status {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  animation: vkPulse 1.2s ease-in-out infinite;
}
.vk-rec-active {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: var(--white) !important;
}
.vk-rec-error { margin-top: 8px; }
@keyframes vkPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}
.vk-audio-note {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-600);
  margin: 4px 0 4px;
}
.vk-order-details audio { display: block; width: 100%; max-width: 320px; border-radius: 10px; }

/* ---------- Order manage buttons ---------- */
.vk-order-manage { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

/* ---------- My Locations ---------- */
.vk-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.vk-location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.vk-location-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--ink); }
.vk-location-card p { margin: 3px 0; font-size: 14px; color: var(--ink-700); }
.vk-location-card .vk-card-actions { display: flex; gap: 8px; margin-top: 12px; }

/* ---------- Wide auth card (profile settings) ---------- */
.vk-auth-card-wide { max-width: 620px; }

/* ---------- Profile locations ---------- */
.vk-profile-locations { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.vk-profile-locations h3 { margin: 0 0 4px; font-size: 19px; color: var(--ink); }

/* ---------- Video modal & players ---------- */
.vk-modal-video { max-width: 620px; }
.vk-video-frame {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  border: none;
  border-radius: inherit;
  background: var(--ink-900);
}
.vk-video-placeholder { cursor: pointer; }

/* ---------- Help list ---------- */
.vk-help-list { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.vk-help-list .vk-contact-card { justify-content: flex-start; }